 /* Base Styles & Color Theme */
 :root {
    --black: #000000;
    --navy: #14213D;
    --gold: #7cb7d1;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    background-color: var(--black);
    color: var(--white);
    padding: 0.3rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 80px;
    
}

.logo img{
    width: 80px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
    position: relative;
}

.nav-link {
    color: var(--light-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero/5.jpg') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content{
    display: flex;
}

/* About us */
.about-images {
    position: relative;
    width: 420px; /* adjust as needed */
    height: 250px; /* adjust as needed */
    margin-right: 2rem;
  }

  .text-blue-400{
    color:var(--gold);
  }
  
  .about-images .car {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* hidden initially */
    transform: scale(0.9); /* slightly smaller before animation */
  }

  
  .car-1 { z-index: 1; }
  .car-2 { z-index: 2; left: 20px; top: 20px; }
  .car-3 { z-index: 3; left: 60px !important; top: 40px; }


/* Products Section */
.product-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
  }
  
  .product-image img {
    width: 220px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .product-details {
    flex: 1;
  }
  
  .product-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  
  .product-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
  }
  
  .product-price {
    font-size: 1.1rem;
    color: #e67e22;
    font-weight: bold;
  }
  
  .product-price span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
  }
  
  .product-meta {
    margin: 0.5rem 0;
  }
  
  .product-rating {
    font-size: 0.9rem;
    color: #2ecc71;
  }
  
  .product-min {
    font-size: 0.9rem;
    color: #27ae60;
  }
  
  .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #555;
  }
  
  .product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .btn.call {
    background: #f0f0f0;
    color: #222;
  }
  
  .btn.call:hover {
    background: #d4ac0d;
  }
  
  .btn.whatsapp {
    background: #2ecc71;
    color: white;
    display: inline-flex;          /* places svg + text side by side */
    align-items: center; 
    gap: 8px;
    justify-content: center;
  }
  
  .btn.whatsapp:hover {
    background: #27ae60;
  }
  

/* Testimonials Section */
.testimonials {
    background-color: var(--navy);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    color: var(--gold);
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
}

.form-input, .form-textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: var(--white);
    font-size: 1rem;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links h3, .footer-subscribe h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscribe-input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .product-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
    
      .product-image img {
        width: 100%;
        max-width: 350px;
      }
    
      .product-header {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
      }
    
      .product-features {
        justify-content: center;
      }
    
      .product-actions {
        flex-direction: column;
        width: 100%;
      }
    
      .btn {
        width: 100%;
      }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem auto;
        border-bottom: 3px solid #196560;
        width: 80%;
        border-radius: 10px;
        text-align: center;
        background: #0e1212;
      }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)), url('/images/hero/6.jpg') no-repeat center center/cover;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content{
        display: block;
    }
    
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }

    .about-images {
        width:320px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  
  .call-btn {
    border: 2px solid rgb(11, 128, 73); /* Blue for call */
  }

  .call-btn i{
    color:rgb(11, 128, 73);
  }
  
  .whatsapp-btn {
    background: #25D366; /* WhatsApp green */
  }