* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #E8E9EB;
}

/* Navbar */
.navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    color: #1E4ED8;   /* Professional Blue */
    font-size: 26px; /* Bigger brand text */
}


.logo img {
    height: 70px;

}
.nav-links {
    display: flex;
    gap: 30px;
}

/* Hamburger hidden on desktop */


.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #313638;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;           /* rounded square */
    transition: all 0.25s ease;
}

/* Hover effect */
.nav-links a:hover {
    background: rgba(239, 102, 67, 0.55);
}

/* Active page */
.nav-links a.active {
    background: rgba(239, 102, 67, 0.55);
    color: white;
}


.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero */
.badge {
    display: inline-block;
    background: #F09D51;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}
.buttons {
    margin-top: 30px;

   }

.primary {
    background: #313638;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.secondary {
    background: transparent;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: white;
}
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #E0DFD5;
}

/* Slider */
.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slider .slide.active {
    opacity: 2;   /* Full image quality */
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
   background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */ 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}


/* Content on top */
.hero-content {
    position: relative;
    z-index: 2;
    color: #f1f1f1;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 span {
    color: #F09D51;
}



/* Mobile */
@media(max-width: 768px){
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px;
    }

    .hamburger {
        display: block;
    }
     .buttons {
        display: flex;
        flex-direction: column; /* stack buttons */
        gap: 15px; /* space between buttons */
        align-items: center;
        margin-top: 25px;
    }

    .buttons a,
    .buttons button {
        width: 100%;        /* full width buttons */
        max-width: 280px;   /* not too wide */
        text-align: center;
    }

}
}

/* Dealer Card */
.dealer-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}
.dealer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(240, 157, 81, 0.25); /* brand soft orange */
    color: #F09D51;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-card {
    position: relative;
    z-index: 2;          /* Above overlay */
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 0 20px;
}



.dealer-section {
    position: relative;
    padding: 140px 20px;
    background-image: url("https://res.cloudinary.com/dao4z2faq/image/upload/v1772978793/dealer-bg_avrxru.jpg"); /* 👈 your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* FIXED IMAGE */
    display: flex;
    justify-content: center;
    align-items: center;
}
.dealer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);  /* dark overlay */
    backdrop-filter: blur(6px);      /* blur effect */
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}
.dealer-card h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #F09D51;
}

.dealer-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #E8E9EB;
    max-width: 800px;
    margin: auto;
}



/* Why Us */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        padding: 50px 25px;
    }
}
@import "https://unpkg.com/open-props";
@import "https://unpkg.com/open-props/normalize.min.css";

/* General Reset */
* {
  box-sizing: border-box;
}

/* Variables */
:root {
  --magnifier: 6;
  --gap: 1vmin;
  --transition: 0.5s;
}

/* Why Us Section Only */
.why-us {
  padding: 80px 20px;
  background: var(--gradient-9);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image Container inside Why Us */
.why-us .container {
  width: 80vw;
  height: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  margin-bottom: 60px;
}

/* Images inside Why Us */
.why-us .container img {
  --brightness: 0.75;
  --grayscale: 1;

  transition: flex var(--transition), filter var(--transition);

  height: 100%;
  width: 100%;
  object-fit: cover;

  filter: grayscale(var(--grayscale)) brightness(var(--brightness));

  overflow: hidden;
  flex: 1;
  border-radius: 12px;
  cursor: pointer;
}

/* Hover Effect */
.why-us .container img:hover {
  --brightness: 1.15;
  --grayscale: 0;
  flex: var(--magnifier);
}

/* Keep Why Cards Layout Safe */
.why-us .why-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}



/* Certifications Section Layout */

.certifications {
  padding: 80px 20px;
  background: #f2f4f8;
  font-family: "Open Sans";
}

.cert-title {
  text-align: center;
  margin-bottom: 60px;
}

.cert-card-layout {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap:30px;
  border-radius: 20px;
}


/* Card Theme Colors */

.education {
  --bg-color: #ffd861;
  --bg-color-light: #ffeeba;
  --text-color-hover: #4C5656;
  --box-shadow-color: rgba(255, 215, 97, 0.48);
  border-radius: 12px;
}

.credentialing {
  --bg-color: #B8F9D3;
  --bg-color-light: #e2fced;
  --text-color-hover: #4C5656;
  --box-shadow-color: rgba(184, 249, 211, 0.48);
  border-radius: 12px;
}

.wallet {
  --bg-color: #CEB2FC;
  --bg-color-light: #F0E7FF;
  --text-color-hover: #fff;
  --box-shadow-color: rgba(206, 178, 252, 0.48);
  border-radius: 12px;
}

.human-resources {
  --bg-color: #DCE9FF;
  --bg-color-light: #f1f7ff;
  --text-color-hover: #4C5656;
  --box-shadow-color: rgba(220, 233, 255, 0.48);
    border-radius: 12px;
}


/* Card Styles */

.card {
  width: 220px;
  height: 321px;
  background: #fff;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0,0,0,0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: 0 24px 36px rgba(0,0,0,0.11),
              0 24px 46px var(--box-shadow-color);
}

.card:active {
  transform: scale(1);
}

.card p {
  font-size: 17px;
  color: #4C5656;
  margin-top: 30px;
  z-index: 2;
  transition: color 0.3s ease-out;
}

.card:hover p {
  color: var(--text-color-hover);
}


/* Circle + SVG */

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle:after {
  content: "";
  width: 118px;
  height: 118px;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  top: 7px;
  left: 7px;
  transition: opacity 0.3s ease-out;
}

.card:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.card:hover .circle:after {
  background: var(--bg-color-light);
}

.circle svg {
  z-index: 3;
}
.circle-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  z-index: 3;
}


/* Overlay Effect */

.overlay {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.card:hover .overlay {
  transform: translateX(-50%) scale(4);
}



/* Footer */
.footer {
    background: #313638;
    color: #E8E9EB;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-box h3 {
    color: #F09D51;
    margin-bottom: 15px;
}

.footer-box h4 {
    color: #F06543;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-box a {
    display: block;
    text-decoration: none;
    color: #E8E9EB;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #F09D51;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #F06543;
    font-size: 14px;
    color: #E0DFD5;
}

/* Mobile Footer */
@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.product-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #313638;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    background: #F09D51;
    color: white;
}
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
}
.primary, .secondary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Primary Button Animation */
.primary:hover {
    background: #F06543;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 101, 67, 0.4);
}

/* Secondary Button Animation */
.secondary:hover {
    background: #313638;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(49, 54, 56, 0.4);
}

.stats {
    background: #E8E9EB;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;

    display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 15px;
}

.stat-box h2 {
    font-size: 36px;
    color: #1E4ED8; /* Your brand blue */
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 16px;
    color: #313638;
    font-family: 'Poppins', sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 30px;
    }
}

/*product grid*/
/* Products Hero */
.products-hero {
    background: #E0DFD5;
    padding: 100px 20px 70px;
    text-align: center;
}

.products-hero h1 {
    font-size: 42px;
    color: #313638;
}

.products-hero p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 18px;
    color: #555;
}

/* Wrapper */
.products-wrapper {
    padding: 90px 20px 130px;
    background: #E8E9EB;
}

/* Grid */
.products-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
}

/* Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Image placeholder */
.product-image {
    height: 180px;
    background: linear-gradient(
        135deg,
        #E8E9EB,
        #E0DFD5
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 600;
}

/* Content */
.product-content {
    padding: 25px 22px 30px;
    text-align: center;
}

.product-content h3 {
    font-size: 18px;
    color: #313638;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 14px;
    color: #666;
}

.inquiry-btn{
display:inline-block;
margin-top:10px;
padding:8px 18px;
background:#0d6efd;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
transition:0.3s;
}

.inquiry-btn:hover{
background:#084298;
}

/* Mobile */
@media (max-width: 600px) {
    .products-hero h1 {
        font-size: 34px;
    }
}
.product-image{
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Search & Filters */
.products-controls {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

#productSearch {
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.filter-buttons {
    display: flex;
    gap: 12px;
}

.filter-btn {
    padding: 12px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: #E8E9EB;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F06543;
    color: white;
}


 /*about us*/
 
/* ===============================
   KEY ARCH CARDS
================================ */

.key-arch-section {
 
  padding: 80px 20px 120px;
  text-align: center;
  color: #111;
}

/* Title */
.arch-title {
  font-size: 36px;
  color: #000;
  margin-bottom: 70px;
}

/* Layout */
.arch-container {
  max-width: 900px;
  margin: auto;

  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* Card */
.arch-card {
  width: 190px;
  height: 260px;

  background: #fffaf3;
  border: 2px solid #f3c6a6;

  border-radius: 100px 100px 20px 20px;

  padding: 25px 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  transition: all 0.35s ease;

  cursor: pointer;
}

/* Icon */
.arch-icon {
  font-size: 26px;
  margin-bottom: 15px;
  color: #000;
}

/* Text */
.arch-card h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}

/* Hover Effect */
.arch-card:hover {
  background: #ffffff;

  transform: translateY(-12px) scale(1.03);

  box-shadow:
    0 15px 35px rgba(255,255,255,0.9),
    0 25px 60px rgba(0,0,0,0.35);

  border-color: #ffffff;
}

/* Text Glow */
.arch-card:hover h3 {
  color: #000;
}

/* Icon Glow */
.arch-card:hover .arch-icon {
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 768px) {

  .arch-card {
    width: 160px;
    height: 230px;
  }

  .arch-card h3 {
    font-size: 16px;
  }

}


 /* ================= ABOUT PAGE ONLY ================= */
.about-page {
    --charcoal: #313638;
    --light-grey: #E8E9EB;
    --white: #ffffff;
    --accent: #F09D51;
    --soft-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.about-page .about-hero {
    background: var(--charcoal);
    color: var(--white);
    padding: 110px 8%;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
    height: 500px;
}


.about-page .about-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;

}

.about-page .about-hero h1 span {
    color: var(--accent);
}

.about-page .about-hero p {
    margin-top: 22px;
    font-size: 17px;
    max-width: 520px;
    color: var(--light-grey);
    margin-bottom: 100px;
}

.about-page .hero-img img {
    border-radius: 28px;
}
.about-page .about-section {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-page .about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-page .about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #4a4d50;
}

.about-page .about-img img {
    border-radius: 24px;
}
.about-page .stats-section {
    background: var(--charcoal);
    color: var(--white);
    padding: 90px 8%;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.about-page .stat-box h3 {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 6px;
}

.about-page .stat-box p {
    font-size: 15px;
    color: var(--light-grey);
}
.about-page .about-cta a:hover {
    transform: translateY(-4px);
}
@media (max-width: 900px) {

    .about-page .about-img-main,
    .about-page .hero-img img,
    .about-page .about-img img {
        width: 100%;
        height: auto; /* ✅ prevents compression */
        max-height: none;
    }

    .about-page .about-hero {
        height: auto; /* ✅ remove fixed hero height */
        padding: 80px 20px;
    }

}
.about-page .about-img-main {
    width: 100%;
    max-width: 520px;
    height: auto; /* ✅ important */
    object-fit: cover;
    margin-bottom: 40px;
}
.aboutus-section {
    position: relative;
    padding: 140px 20px;
    background-image: url("https://res.cloudinary.com/dao4z2faq/image/upload/v1772978793/about4_fgw9zz.jpg"); /* 👈 your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* FIXED IMAGE */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ================= DEALER TWO COLUMN TEXT ================= */

.dealer-text-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 50px 60px;
    border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .dealer-columns {
        grid-template-columns: 1fr;
    }

    .dealer-text-section {
        padding: 35px 25px;
    }
}
/* ================= DEALER TEXT BOXES ================= */

.dealer-box-section {
    max-width: 1100px;
    margin: 100px auto;
    text-align: center;
}

.dealer-box-section h2 {
    font-size: 32px;
    margin-bottom: 45px;
    color: #ffffff;
}

/* Box layout */
.dealer-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

/* Individual box */
.dealer-box {
    background: rgba(0, 0, 0, 0.55);
    padding: 35px 40px;
    border-radius: 18px;

    color: #eaeaea;
    line-height: 1.8;
    font-size: 15.5px;

    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect (optional but nice) */
.dealer-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .dealer-box-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ================= STRENGTHS ================= */

.strengths-section {
    max-width: 1200px;
    margin: 120px auto;
    text-align: center;
}

.strengths-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: #ffffff;
    color: darkblue;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 30px;

    justify-content: center;
    margin: 0 auto;
}
.strength-card {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    padding: 30px 25px;
    border-radius: 18px;

    color: #e8e8e8;
    font-size: 15px;
    line-height: 1.6;

    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Move the 7th card to the center column */
.strengths-grid .strength-card:nth-child(7) {
    grid-column: 2;
}
@media (max-width: 900px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 260px);
    }

    .strengths-grid .strength-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= CTA ================= */
.cta-minimal {
    margin: 140px auto 120px;
    padding: 90px 20px;
    text-align: center;
    background: #1e1e1e;
}

.cta-minimal h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-minimal a {
    padding: 15px 46px;
    border-radius: 40px;
    background: #F09D51;
    color: #1e1e1e;
    font-weight: 600;
    text-decoration: none;
}



/*contact page*/
.contact-hero {
    background: #E0DFD5;
    text-align: center;
    padding: 100px 20px;
}

.contact-hero h1 {
    font-size: 42px;
    color: #313638;
}

.contact-hero span {
    color: #EF6643;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #1E4ED8;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #E8E9EB;
    padding: 20px;
    border-radius: 10px;
}

.info-box span {
    font-size: 22px;
}

.contact-form-box {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
    color: #EF6643;
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #E8E9EB;
}

.contact-form-box textarea {
    height: 120px;
}

/* Mobile */
@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* ================= MOBILE FIX (SAFE) ================= */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 12px 20px;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* Buttons */
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .buttons a,
    .buttons button {
        width: 100%;
        max-width: 260px;
    }

    /* Dealer Section */
    .dealer-section {
        padding: 80px 20px;
        background-attachment: scroll; /* IMPORTANT FIX */
    }

    .dealer-card h2 {
        font-size: 26px;
    }

    .dealer-card p {
        font-size: 15px;
    }

    /* Why Us images */
    .why-us .container {
        flex-direction: column;
        height: auto;
    }

    .why-us .container img {
        height: 200px;
    }

    /* Certifications */
    .cert-card-layout {
        justify-content: center;
    }

    /* Stats */
    .stats {
        flex-direction: column;
        gap: 25px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Products */
    .products-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Contact */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    /* About */
    .about-page .about-hero,
    .about-page .about-section {
        grid-template-columns: 1fr;
    }

    .about-page .about-hero {
        height: auto;
        padding: 70px 20px;
    }

    /* Strengths */
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    /* Dealer Boxes */
    .dealer-box-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;   /* smaller text */
        white-space: nowrap; /* prevent breaking */
    }

    .logo img {
        height: 40px; /* reduce logo size */
    }

    .hamburger {
        display: block;
        font-size: 26px;
    }

}
/* ===== MOBILE FIX FOR STATS-SECTION ===== */
@media (max-width: 768px) {

    .stats-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 15px;
    }

    .stat-box {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .stat-box h3 {
        font-size: 28px;
        line-height: 1.3;
    }

    .stat-box p {
        font-size: 14px;
    }

}