:root {
  --bg: #f5f5f5;            /* Light Steel Gray Background */
  --card: #e7e7e7;          /* Dark Graphite Card */
  --accent: #ffb800;        /* Hardware Yellow (Bold & Industrial) */
  --accent-strong: #e6a600; /* Strong Engineering Yellow */
  --text: #58595e;          /* Soft Ice Gray Text */
  --muted: #7d8895;         /* Muted Slate Gray */
  --border: #d5d7db;        /* Hard Edge Metal Border */
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --transition: all 0.25s ease;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
  body {
        font-family: 'Open Sans', sans-serif;
        color: var(--darkgrey);
        overflow-x: hidden;      /* Removes horizontal scroll bar */
        margin: 0 auto;          /* Centers layout */
        max-width: 0 auto;       /* Keeps content width standard */
        padding: 0 px;         /* Adds small left-right space */
        background-color: #f8f9fa;  /* Optional: clean light background */
        line-height: 1.6;
    }
    
    
    .nav__links a {
  color:#e5e7eb;
  font-weight: 200;
    }

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  position: sticky;
  top: 0;
  /* backdrop-filter: blur(10px); */
  background:#202a41;
  border-bottom: none;
  z-index: 10;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.logo {
  margin-right: auto;
}

.logo img:hover {
  transform: scale(1.05);
}


.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  padding: 0;

}

.nav__links {
  margin-left: 0;
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  background: rgba(90, 230, 193, 0.12);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
/* =========================
   FORCE MOBILE NAV TOGGLE
========================= */

.nav__toggle {
  display: none;
}

/* @media (max-width: 768px) {
  .nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
  }

  .nav__toggle {
    display: block !important;  
    margin-left: auto;  
    font-size: 28px;
    background: #202a41;
    border: none;
    color:#ffffff;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 1001;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color:#202a41;
    background:#202a41;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1000;
  }

  .nav__links.active {
    display: flex;
    background: #202a41; 
  }

  .nav__links li {
    text-align: center;
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .nav {
    padding: 0 0.5rem;
  }

  .nav__toggle {
    font-size: 24px;
    padding: 6px 10px;
  }

  .nav__links a {
    font-size: 14px;
    padding: 12px 0;
  }
} */
/* main secction */
main {
  padding: 0 0 64px;
  width: 100%;
  max-width: none;
  margin: 0;
}

 .hero-section {
        position: relative;
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(17, 24, 39, 0.8)),
                    url('https://images.pexels.com/photos/17536002/pexels-photo-17536002.jpeg') center/cover;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
      }

      .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease;
      }

      .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1.2s ease;
      }

      .hero-buttons {
        animation: fadeInUp 1.4s ease;
      }


.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.about-hero__image {
  position: absolute;
  inset: 0;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.about-hero__content {
  position: relative;
  z-index: 1;
  color: var(--text);
  padding: 32px;
  max-width: 720px;
}

.about-hero__content h2 {
  margin: 8px 0 0;
  line-height: 1.3;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.page-hero__image {
  position: absolute;
  inset: 0;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  color: var(--text);
  padding: 32px;
  max-width: 760px;
}

.page-hero__content h2 {
  margin: 8px 0 0;
  line-height: 1.25;
}

.hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease;
      }

 .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1.2s ease;
      }
/* ===============================
   TABLET RESPONSIVE (≤1024px)
================================ */
@media (max-width: 1024px) {

  .hero-section {
    min-height: 80vh;
    padding: 0 24px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }

  .about-hero,
  .page-hero {
    min-height: 45vh;
  }

  .about-hero__content,
  .page-hero__content {
    padding: 28px;
    max-width: 640px;
  }

  .about-hero__content h2,
  .page-hero__content h2 {
    font-size: 2rem;
  }
}


/* ===============================
   MOBILE RESPONSIVE (≤768px)
================================ */
@media (max-width: 768px) {

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 120px 16px 80px; /* space for sticky header */
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .about-hero,
  .page-hero {
    min-height: 40vh;
    border-radius: 14px;
  }

  .about-hero__content,
  .page-hero__content {
    padding: 20px;
    max-width: 100%;
  }

  .about-hero__content h2,
  .page-hero__content h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}


/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .about-hero,
  .page-hero {
    min-height: 36vh;
  }

  .about-hero__content,
  .page-hero__content {
    padding: 16px;
  }
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 18, 32, 0.8);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: somke white;
}

.badge--inline {
  margin-bottom: 10px;
}

.eyebrow {
  color: whitesmoke;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0;
}

.about-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0b1c2d, #1f344d);
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9fb6d1;
  font-size: 14px;
}

.about-header h2 {
  font-size: 40px;
  margin: 10px 0;
}

.about-header h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #00b4ff;
  display: block;
  margin: 12px auto;
  border-radius: 5px;
}

.subtitle {
  color: #d2e1f0;
  max-width: 600px;
  margin: auto;
}

/* CONTENT */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  height: 620px;   
}

.about-image img {
  width: 100%;
  height: 920px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.image-overlay h3 {
  margin: 0;
  font-size: 22px;
  color: #00b4ff;
}

.image-overlay p {
  font-size: 14px;
  margin-top: 5px;
  color: #ffffff;
}

/* TEXT */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #eef5ff;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-points li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #d7e6f7;
}
/* tablet responsive */
@media (max-width: 1024px) {

  .about-section {
    padding: 80px 20px;
  }

  .about-header h2 {
    font-size: 34px;
  }

  .about-content {
    gap: 40px;
  }

  .about-text p {
    font-size: 15.5px;
  }

  .about-points li {
    font-size: 14.5px;
  }

  .about-image img {
    height: 340px;
    width: 340px;
  }

  .video-wrap {
    background: linear-gradient(135deg, #0b1f4d, #0f2e6f);
    padding: 60px 20px;
  }

  .video-box {
    margin: 45px auto;
    box-shadow: 0 0 65px 16px rgba(255, 255, 255, 0.45);
  }

  .heading-cursive {
    font-size: 2.6rem;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  /* Badge */
  .badge {
    padding: 6px 12px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  /* About Section */
  .about-section {
    padding: 120px 16px 70px; /* extra top space for sticky header */
    width: 100%;
    max-width: 100%;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-header h2 {
    font-size: 26px;
  }

  .about-header h2::after {
    width: 60px;
  }

  .subtitle {
    font-size: 14px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-image {
    width:100%
    max-width:320px;
    height: 260px;        /* reduce height */
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-image img {
    width: 100%;
    height: 100%; 
    max-width: 260px;
    object-fit: contain;     /* no crop */
    object-position: center;
    display: block;
  }

  .image-overlay {
    padding: 18px;
  }

  .image-overlay h3 {
    font-size: 18px;
  }

  .image-overlay p {
    font-size: 13px;
  }

  .about-text p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .about-points li {
    font-size: 14px;
  }

  /* Video */
  .video-wrap {
    background: linear-gradient(135deg, #0b1f4d, #0f2e6f);
    padding: 60px 16px;
  }

  .video-box {
    margin: 30px auto;
    box-shadow: 0 0 45px 12px rgba(255, 255, 255, 0.35);
  }

  .heading-cursive {
    font-size: 2.1rem;
    text-align: center;
  }
}
/* small mobile */
@media (max-width: 480px) {
  .about-image {
    height: 220px;  
    width:260px;/* compact for small screens */
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  }
  .about-header h2 {
    font-size: 22px;
  }

  .about-image img {
    height: 220px;
    width:100%;
  }

  .about-text p {
    font-size: 14px;
  }

  .heading-cursive {
    font-size: 1.9rem;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 300px; 
    width:300px;/* slightly reduced */
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  }
  .about-image img {
    height: 300px;
    width:300px;
  }

  .about-header h2 {
    font-size: 32px;
  }
}

.video-wrap {
  background: linear-gradient(135deg, #0b1f4d, #0f2e6f); /* dark blue gradient */
  padding: 70px 20px;
  color: #ffffff; /* text readable on dark bg */

}

.video-box {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  padding: none;
  box-shadow: 0 0 90px 20px rgba(255, 255, 255, 0.55);


}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  
}

/* Tablet */
@media (max-width: 768px) {
  .video-box {
    margin: 40px auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .video-box {
    margin: 30px auto;
  }

  .video-box video {
    border-radius: 10px;
  }
}
/* why choose us */


/* testimonial section */

.unibox-theme {
  padding: 90px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  position: relative;
}

.testimonials-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.testimonials-header h5 {
  color: #0ea5e9;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.testimonials-header h2 {
  font-size: 36px;
  margin: 12px 0;
}

.testimonials-header p {
  font-size: 16px;
  color: #cbd5f5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1150px;
  margin: auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #0ea5e9;
  box-shadow: 0 35px 70px rgba(14,165,233,0.35);
}

.testimonial-card.featured {
  background: linear-gradient(
    145deg,
    rgba(14,165,233,0.25),
    rgba(30,64,175,0.25)
  );
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.testimonial-footer span {
  font-size: 13px;
  color: #cbd5f5;
}

.stars {
  color: #facc15;
  font-size: 18px;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 42px 0 32px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(90, 230, 193, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.card__img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card--accent {
  background: linear-gradient(135deg, rgba(90, 230, 193, 0.12), rgba(90, 230, 193, 0.05));
}

.split {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.list-check {
  padding: 0;
  margin: 20px;
  list-style: none;
  text-shadow: darkblue;
}

.list-check li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product {
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:#0f42aa ;
  color: #0f42aa;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(43, 4, 160, 0.25);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(90, 230, 193, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* ===== Split Section Layout ===== */
.split.reveal {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* ===== Left Content ===== */
.split.reveal h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.split.reveal .list-check {
  padding-left: 0;
  list-style: none;
}

.split.reveal .list-check li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.split.reveal .list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2a6df4;
  font-weight: bold;
}
/* tablet responsive */
@media (max-width: 1024px) {

  .unibox-theme {
    padding: 80px 20px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-header p {
    font-size: 15px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .cards {
    gap: 14px;
  }

  .card__img {
    height: 130px;
  }

  /* Split Section */
  .split.reveal {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 20px;
  }

  .split.reveal h2 {
    font-size: 28px;
  }

  .split.reveal .list-check li {
    font-size: 15px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .unibox-theme {
    padding: 120px 16px 70px; /* extra top space for sticky header */
  }

  /* Header */
  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h5 {
    font-size: 12px;
  }

  .testimonials-header h2 {
    font-size: 26px;
  }

  .testimonials-header p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 14.5px;
    margin-bottom: 22px;
  }

  .testimonial-footer h4 {
    font-size: 16px;
  }

  .stars {
    font-size: 16px;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 32px 0;
  }

  .card__img {
    height: 200px;
  }

  /* Buttons */
  .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* Split Section */
  .split.reveal {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px;
  }

  .split.reveal h2 {
    font-size: 24px;
    text-align: center;
  }

  .split.reveal .list-check li {
    font-size: 14.5px;
  }
}
/* small responsive */
@media (max-width: 480px) {

  .testimonials-header h2 {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .card__img {
    height: 170px;
  }

  .split.reveal h2 {
    font-size: 21px;
  }
}

/* ===== Right Card ===== */
.split.reveal .card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.split.reveal .card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.split.reveal .card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.split.reveal .card .btn {
 display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:#0f42aa ;
  color:whitesmoke;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(43, 4, 160, 0.25);
}
.split.reveal .card .btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(212, 157, 48, 0.32);
}

/* ===== Tablet ===== */
@media (max-width: 768px) {
  .split.reveal {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 18px;
  }

  .split.reveal h2 {
    font-size: 26px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .split.reveal {
    padding: 40px 16px;
  }

  .split.reveal h2 {
    font-size: 22px;
  }

  .split.reveal .card {
    padding: 24px;
  }

  .split.reveal .card h3 {
    font-size: 20px;
  }

  .split.reveal .card .btn {
    width: 100%;
    text-align: center;
  }
}

/* footer */

.page {
  width: 100%;
  max-width: none;
}

.page__header h1 {
  margin: 0 0 8px;
}

.page__header p {
  color: var(--muted);
  margin: 0 0 22px;
}

.grid--services .card {
  min-height: 150px;
}

.cta {
  margin-top: 30px;
  text-align: center;
}


.social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-color: var(--steel-blue);
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
      }

      .social-icons a:hover {
        background-color: var(--safety-orange);
        transform: translateY(-3px);
      }

.map {
  margin-top: 20px;
}

.map__frame {
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
} */

.map__frame iframe {
  width: 60%;
  height: 320px;
  border: 0;
}
/* tablet responsive */
@media (max-width: 1024px) {

  .page {
    padding: 0 20px;
  }

  .page__header h1 {
    font-size: 32px;
  }

  .page__header p {
    font-size: 15px;
  }

  .grid--services {
    gap: 20px;
  }

  .grid--services .card {
    min-height: 140px;
  }

  .cta {
    margin-top: 24px;
  }

  /* Social Icons */
  .social-icons a {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }

  /* Map */
  .map__frame iframe {
    width: 100%;
    height: 300px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .page {
    padding: 0 16px;
  }

  .page__header h1 {
    font-size: 26px;
    text-align: center;
  }

  .page__header p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 18px;
  }

  /* Grid */
  .grid--services {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .grid--services .card {
    min-height: auto;
    padding: 18px;
  }

  .cta {
    margin-top: 20px;
    text-align: center;
  }

  /* Social Icons */
  .social-icons {
    text-align: center;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-right: 0.4rem;
  }

  /* Map */
  .map {
    margin-top: 16px;
  }

  .map__frame iframe {
    width: 100%;
    height: 260px;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .page__header h1 {
    font-size: 22px;
  }

  .page__header p {
    font-size: 13.5px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .map__frame iframe {
    height: 220px;
  }
}

/* card element */


.card--service {
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service__img {
  height: 150px;
  object-fit: cover;
}

.card--service:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.icons {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.icon_head {
font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  color: #203794;
  text-align: center;
}

.icon_head::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #e6a600;
  position: absolute;
  bottom: -6px;

  left: 50%;                  /* move underline to horizontal center */
  transform: translateX(-50%);/* adjust underline to be perfectly centered */

  border-radius: 3px;
}


.icon-card {
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* subtle glow layer */
.icon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 170, 0, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 48px; /* BIG icon */
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: #111;

  box-shadow:
    0 12px 30px rgba(255, 152, 0, 0.35),
    inset 0 0 0 2px rgba(255,255,255,0.2);

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    box-shadow 0.45s ease;
}

/* Text */
.icon-card h3 {
  margin: 10px 0 6px;
  font-size: 22px;
  color:#203794 ;
}

.icon-card p {
  font-size: 16px;
  color: #282828;
  line-height: 1.6;
}

/* 🔥 Hover effects */
.icon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.icon-card:hover::before {
  opacity: 1;
}

.icon-card:hover .icon {
  transform: scale(1.15) rotate(6deg);
  box-shadow:
    0 18px 45px rgba(255, 152, 0, 0.55),
    inset 0 0 0 2px rgba(255,255,255,0.35);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.icon-card .icon {
  animation: float 4s ease-in-out infinite;
}

.icon-card:hover .icon {
  animation: none;
}
/* tablet responsive */
@media (max-width: 1024px) {

  /* Service Card */
  .card--service {
    gap: 10px;
  }

  .service__img {
    height: 140px;
  }

  /* Icons Section */
  .icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
  }

  .icon_head {
    font-size: 34px;
  }

  .icon {
    width: 80px;
    height: 80px;
    font-size: 42px;
  }

  .icon-card h3 {
    font-size: 20px;
  }

  .icon-card p {
    font-size: 15px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  /* Service Cards */
  .card--service {
    gap: 8px;
  }

  .service__img {
    height: 130px;
  }

  .card--service:hover {
    transform: none; /* better UX on touch */
    box-shadow: 0 16px 32px rgba(0,0,0,0.3);
  }

  /* Icons Section */
  .icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 28px 0;
  }

  .icon_head {
    font-size: 30px;
  }

  .icon_head::after {
    width: 60px;
  }

  .icon-card {
    padding: 24px 20px;
  }

  .icon {
    width: 72px;
    height: 72px;
    font-size: 38px;
  }

  .icon-card h3 {
    font-size: 19px;
  }

  .icon-card p {
    font-size: 14.5px;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .service__img {
    height: 120px;
  }

  .icon_head {
    font-size: 26px;
  }

  .icon {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }

  .icon-card {
    padding: 22px 18px;
  }

  .icon-card h3 {
    font-size: 18px;
  }

  .icon-card p {
    font-size: 14px;
  }
}



/* partners section */
.partners {
  padding: 30px 20px;
  background: #ffffff;       /* white background */
  overflow: hidden;
  position: relative;
  text-align: center;
}

.partners-heading {
  font-size: 35px;
  color: #203794;            /* dark text for contrast */
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}

.partners-heading::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #e6a600;       /* blue underline */
  display: block;
  margin: 8px auto 0;
  border-radius: 4px;
}

/* Wrapper for scroll effect with fade edges */
.partners__track-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Track containing all logos */
.partners__track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
}

/* Individual logo container */
.partners__logo {
  flex: 0 0 auto;
  width: 120px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Logo image */
.partners__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1);     /* brighter logos for white background */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect on logos */
.partners__logo img:hover {
  transform: scale(1.2);
  filter: brightness(1.1);   /* slightly brighter on hover */
  cursor: pointer;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause scroll on hover */
.partners__track-wrapper:hover .partners__track {
  animation-play-state: paused;
}

/* ----------------------- Responsive Breakpoints ----------------------- */

/* Tablets */
@media (max-width: 1024px) {
  .partners__logo {
    width: 100px;
    height: 50px;
  }
  .partners__track {
    gap: 20px;
    animation-duration: 30s;
  }
  .partners-heading {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .partners__logo {
    width: 80px;
    height: 40px;
  }
  .partners__track {
    gap: 15px;
    animation-duration: 35s;
  }
  .partners-heading {
    font-size: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .partners__logo {
    width: 60px;
    height: 30px;
  }
  .partners__track {
    gap: 10px;
    animation-duration: 40s;
  }
  .partners-heading {
    font-size: 18px;
  }
}


/* Animation keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* move half track width, repeat */
  }
}
/* images Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0 10px;
}

.gallery img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow);
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.services-form {
  margin-top: 28px;
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* tablet responsive */
@media (max-width: 1024px) {

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 18px 0;
  }

  .gallery img {
    height: 160px;
  }

  .services-form {
    margin-top: 24px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
  }

  .gallery img {
    height: 140px;
  }

  /* Disable heavy hover on touch devices */
  .gallery img:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .services-form {
    margin-top: 22px;
  }

  /* Faster reveal animation for mobile */
  .reveal {
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 14px 0;
  }

  .gallery img {
    height: 200px;
  }

  .services-form {
    margin-top: 20px;
  }
}

/* --- Wrapper --- */
.split {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
  flex-wrap: wrap; /* Makes it mobile-friendly */
}
.page__header {
  min-height: 50vh;                  /* header height */
  display: flex;
  flex-direction: column;
  justify-content: center;           /* vertical center */
  align-items: center;               /* horizontal center */
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    #f8fafc,
    #eef2f7
  );
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Heading */
.page__header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Subtext */
.page__header p {
  max-width: 720px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Soft animated glow background */
.page__header::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle at center,
    rgba(0, 153, 255, 0.12),
    transparent 60%
  );
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 0;
}

.page__header * {
  position: relative;
  z-index: 1;
}

/* Subtle animation */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
/* tablet responsive */
@media (max-width: 1024px) {

  .split {
    gap: 24px;
    padding: 40px 20px;
  }

  .page__header {
    min-height: 45vh;
    padding: 50px 20px;
    border-radius: 20px;
  }

  .page__header h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page__header p {
    font-size: 1.05rem;
    max-width: 640px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .split {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 36px 16px;
  }

  .page__header {
    min-height: auto;
    padding: 44px 18px;
    border-radius: 18px;
  }

  .page__header h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .page__header p {
    font-size: 1rem;
    line-height: 1.65;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .split {
    padding: 30px 14px;
    gap: 18px;
  }

  .page__header {
    padding: 36px 14px;
    border-radius: 16px;
  }

  .page__header h1 {
    font-size: 1.9rem;
  }

  .page__header p {
    font-size: 0.95rem;
  }
}


/* --- Cards --- */
.card {
  background: #fcfcfc;
  padding: 35px 30px;
  border-radius: 20px;
  align-items: center;
  justify-content:center;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Lift */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* --- Card Headings With Underline --- */
.card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  color: #203794;
  text-align: center;
}

.card h3::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #e6a600;
  position: absolute;
  bottom: -6px;

  left: 50%;                  /* move underline to horizontal center */
  transform: translateX(-50%);/* adjust underline to be perfectly centered */

  border-radius: 3px;
}

/* --- Form Styles --- */
.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #faf6f8;
  outline: none;
  transition: 0.3s ease;
}

/* Focus Style */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0,123,255,0.2);
}

/* Floating Label */
.form-group label {
  position: absolute;
  left: 16px;
  top: -10px;
  font-size: 13px;
  padding: 0 6px;
  background: #fff;
  color: #007bff;
  pointer-events: none;
}

/* --- Button --- */
.btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #0f42aa;
  color: #fff;
  cursor: pointer;
  transition: 0.35s ease;
}

.btn:hover {
  box-shadow: 0 8px 22px rgba(223, 223, 21, 0.35);
  transform: translateY(-3px);
}

/* --- Status Message Output --- */
.form__status {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}
/* conatact form */
/* Full width map section */
.map {
  width: 100%;
  max-width: 1780px;     /* controls total width */
  margin: 48px auto 0;       /* center with space on left & right */
  padding: 40px 24px;   /* light inner space */
  border-radius: 3;
}



/* Center text content */
.map h3{
  font-weight:500px;
}
.map p {
  max-width: 1200px;
  margin: 0 auto 12px;
  padding: 0 20px;
  text-align:center;
}

/* Map frame */
.map__frame {
  width: 100%;
  height: 420px; /* control height here */
}

/* Full width iframe */
.map__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
}

/* Hover effect */
.map__frame iframe:hover {
  transform: scale(1.01);
  box-shadow: 0 0 35px rgba(0, 153, 255, 0.6);
}
@media (max-width: 768px) {
  .map__frame {
    height: 300px;
  }
}
/* tablet responsive */
@media (max-width: 1024px) {

  /* Card */
  .card {
    max-width: 420px;
    padding: 32px 26px;
  }

  .card h3 {
    font-size: 22px;
  }

  /* Form */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14.5px;
    padding: 13px 14px;
  }

  /* Map */
  .map {
    margin-top: 40px;
    padding: 32px 20px;
  }

  .map__frame {
    height: 360px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  /* Card */
  .card {
    max-width: 100%;
    padding: 28px 20px;
    border-radius: 16px;
  }

  .card:hover {
    transform: none; /* better UX on touch */
  }

  .card h3 {
    font-size: 20px;
  }

  .card h3::after {
    width: 54px;
  }

  /* Form */
  .form-group {
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  /* Button */
  .btn {
    font-size: 15px;
    padding: 13px;
  }

  /* Map */
  .map {
    margin-top: 32px;
    padding: 28px 16px;
  }

  .map__frame {
    height: 280px;
  }

  .map p {
    font-size: 14px;
    padding: 0 12px;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .card {
    padding: 24px 16px;
  }

  .card h3 {
    font-size: 19px;
  }

  .form-group label {
    font-size: 12px;
    left: 12px;
  }

  .btn {
    font-size: 14.5px;
  }

  .map__frame {
    height: 240px;
  }
}
/* Site footer */


.site-footer {
  background-color: #1F2937;
  color: #e7e7e7;
  padding: 3rem 0 1rem;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
/* Footer Brand Wrapper */
.footer-brand {
  display: flex;
  flex-direction: column;      /* logo above text */
  align-items: center;          /* center alignment */
  text-align: center;
  gap: 10px;
  padding: 10px 0;
}

/* Footer Logo */
.footer-logo {
  width: 50px;                  /* adjust as needed */
  height: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover effect on logo */
.footer-brand a:hover .footer-logo {
  transform: scale(1.08);       /* smooth zoom */
  opacity: 0.9;
}

/* Brand Name */
.footer-text strong {
  font-size: 20px;
  color:  #e6a600;               /* white heading (change if needed) */
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-bottom: 4px;
  position: relative;
}

/* Blue underline before/above brand name */
.footer-text strong::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #007bff;          /* your theme blue */
  display: block;
  margin: 6px auto 0;
  border-radius: 6px;
}

/* Tagline */
.footer-text p {
  margin: 0;
  font-size: 14px;
  color: #d6d6d6;               /* soft grey for tagline */
}


.quick_section,
.products_section {
  text-align: center;         /* center heading + links */
  min-width: 180px;           /* keeps column consistent */
  margin: 0 auto;             /* center columns */
}

/* Heading style */
.quick_section strong,
.products_section strong {
  font-size: 20px;
  color:  #e6a600;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
}

/* Heading underline */
.quick_section strong::after,
.products_section strong::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 6px auto 0;
  border-radius: 6px;
}
/* Vertical links */
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;        /* center align items */
  gap: 10px;
}

/* Link design */
.footer__links a {
  color: #e5e5e5;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  transition: 0.3s ease;
}
/* Animated left bar */
.footer__links a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 0%;
  width: 3px;
  background: #007bff;
  border-radius: 4px;
  transition: height 0.3s ease;
}

/* Hover effect */
.footer__links a:hover {
  color:  #e6a600;
  padding-left: 8px;     /* small slide right */
}

.footer__links a:hover::before {
  height: 100%;          /* bar reveals vertically */
}

/* Contact Section Wrapper */
.footer__contact {
  text-align: center;         /* center everything */
  display: flex;
  flex-direction: column;     /* stack items vertically */
  gap: 8px;                   /* spacing between lines */
  min-width: 200px;
}

/* Heading Style */
.footer__contact strong {
  font-size: 20px;
  color:  #e6a600;             /* white text (change if your footer is light) */
  margin-bottom: 10px;
  position: relative;
}
/* Underline Bar for Heading */
.footer__contact strong::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #007bff;        /* theme blue */
  display: block;
  margin: 6px auto 0;
  border-radius: 6px;
}
/* Contact Details */
.footer__contact span {
  font-size: 15px;
  color: #d7d7d7;             /* soft gray for details */
  line-height: 1.4;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.contact-info a {
  color:  whitesmoke; /* Link color */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
  .social_section strong {
  font-size: 20px;
  color:  #e6a600;             /* white text (change if your footer is light) */
  margin-bottom: 10px;
  position: relative;
  }

.social_links {
  display: flex;
  gap: 14px;                 /* space between icons */
  align-items: center;
}

.social_links a {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2a2a2a;       /* circle background */
  border-radius: 50%;        /* make icons circular */
  font-size: 18px;
  color: #ffffff;            /* icon color */
  transition: 0.3s ease;     /* smooth hover */
}

/* Hover effect */
.social_links a:hover {
  background: #ff6600;       /* highlight color */
  color: #ffffff;
  transform: translateY(-3px); /* small lift effect */
}
.footer-heading {
  font-size: 20px;
  font-weight: 600;
  color: #e6a600;
  display: inline-block;
  margin-bottom: 14px;
  position: relative;
}

/* Centered underline */
.footer-heading::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #007bff;        /* theme blue */
  display: block;
  margin: 6px auto 0;
  border-radius: 6px;   /* centers the underline */
}

/* tablet responsive */
@media (max-width: 1024px) {

  .site-footer {
    padding: 32px 20px;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Center all footer blocks */
  .footer-brand,
  .quick_section,
  .products_section,
  .footer__contact,
  .social_section {
    align-items: center;
    text-align: center;
  }

  .footer-text strong,
  .quick_section strong,
  .products_section strong,
  .footer__contact strong,
  .footer-heading {
    font-size: 18px;
  }

  .footer__links a {
    font-size: 15px;
  }

  .contact-info {
    font-size: 15px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .site-footer {
    padding: 28px 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Logo */
  .footer-logo {
    width: 44px;
  }

  .footer-text strong {
    font-size: 18px;
  }

  .footer-text p {
    font-size: 13.5px;
  }

  /* Headings */
  .quick_section strong,
  .products_section strong,
  .footer__contact strong,
  .footer-heading {
    font-size: 18px;
  }

  /* Links */
  .footer__links {
    gap: 8px;
  }

  .footer__links a {
    font-size: 15px;
  }

  .footer__links a::before {
    display: none; /* cleaner on mobile */
  }

  /* Contact */
  .contact-info {
    font-size: 14.5px;
  }

  /* Social icons */
  .social_links {
    justify-content: center;
  }

  .social_links a {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .site-footer {
    padding: 24px 14px;
  }

  .footer-text strong,
  .quick_section strong,
  .products_section strong,
  .footer__contact strong,
  .footer-heading {
    font-size: 17px;
  }

  .footer-text p {
    font-size: 13px;
  }

  .footer__links a {
    font-size: 14px;
  }

  .contact-info {
    font-size: 14px;
  }

  .social_links a {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
/* whatsapp icon */
.whatsapp {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
        transition: all 0.3s ease;
      }

      .whatsapp:hover {
        transform: scale(1.1);
        color: rgb(190, 253, 101);
      }
/* whatsapp */
/* Tablet: up to 1024px */
@media (max-width: 1024px) {
  .whatsapp {
    bottom: 80px;   /* slightly higher from bottom */
    right: 25px;    /* slightly closer to edge */
    width: 55px;    /* slightly smaller */
    height: 55px;
    font-size: 1.8rem;
  }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
  .whatsapp {
    bottom: 70px;   /* more room for mobile UI */
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .whatsapp {
    bottom: 60px;   /* keep away from nav bars */
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}


@media (max-width: 720px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    position: absolute;
    right: 0;
    top: 120%;
    background:#202a41;
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-direction: column;
    min-width: 180px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }
  .copy {
  text-align: center;          /* center the text */
  font-size: 14px;             /* clean readable size */
  color: #d7d7d7;              /* soft gray text */
  margin-top: 20px;            /* spacing from above content */
  padding: 10px 0;             /* vertical breathing space */
  letter-spacing: 0.3px;       /* subtle spacing for premium look */
}

.copy span {
  font-weight: 600;            /* make the year slightly bold */
  color: #f1f1f1;              /* highlight the year in white */
}


}
.services-detailed {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fafc, #eef2f7);
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
 font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  color: #203794;
  text-align: center;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #e6a600;
  position: absolute;
  bottom: -6px;

  left: 50%;                  /* move underline to horizontal center */
  transform: translateX(-50%);/* adjust underline to be perfectly centered */

  border-radius: 3px;
}


.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  color: #555;
}
/* tablet */
/* =========================
   TABLET (up to 1024px)
========================= */
@media (max-width: 1024px) {

  /* Mobile Nav Dropdown */
  .nav__links {
    top: 110%;
    min-width: 200px;
    padding: 12px;
  }

  /* Services Section */
  .services-detailed {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    margin-bottom: 50px;
    font-size: 16px;
  }

  /* Footer copyright */
  .copy {
    font-size: 13px;
    margin-top: 16px;
  }
}


/* =========================
   MOBILE (up to 768px)
========================= */
@media (max-width: 768px) {

  /* Mobile Nav Dropdown */
    .nav__toggle {
    display: block !important;   /* 🔥 FORCE SHOW */
    margin-left: auto;  
    font-size: 28px;
    background: #202a41;
    border: none;
    color:#ffffff;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 1001;
  }
  .nav__links {
     display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background:#202a41;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1000;
  }
.nav__links.active {
    display: flex;
    background: #202a41; 
  }

  .nav__links li {
    text-align: center;
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  /* Services Section */
  .services-detailed {
    padding: 60px 16px;
  }

  .container {
    padding: 0 10px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-title::after {
    width: 60px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  /* Footer copyright */
  .copy {
    font-size: 12px;
    padding: 8px 0;
  }
}


/* =========================
   SMALL MOBILE (up to 480px)
========================= */
@media (max-width: 480px) {

  .section-title {
    font-size: 24px;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .nav__links {
    min-width: 95%;
    right: 2.5%;
  }

  .copy {
    font-size: 11px;
    letter-spacing: 0.2px;
  }
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* GRID LAYOUT */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.service-image img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.service-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-block {
  margin-bottom: 18px;
}

.service-block h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f4cff;
}

.service-block ul {
  padding-left: 20px;
}

.service-block li {
  margin-bottom: 6px;
  color: #444;
}

/* TOGGLE */
.service-toggle {
  margin-top: 15px;
  background: linear-gradient(135deg, #1f4cff, #00c6ff);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.service-toggle:hover {
  transform: scale(1.08);
}

/* EXTRA CONTENT */
.service-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: #555;
}

.service-extra.active {
  max-height: 200px;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}




/* GRID */
.grid--services-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
/* service section */
/* CARD */
.card--service-icon {
  position: relative;
  padding: 48px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* FLOWING GRADIENT */
.card--service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(31, 76, 255, 0.15),
    rgba(0, 198, 255, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.card--service-icon:hover::before {
  transform: translateX(100%);
}

.card--service-icon:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* ICON */
.service-icon {
  font-size: 68px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4cff, #00c6ff);
  color: #fff;
  box-shadow: 0 15px 30px rgba(31, 76, 255, 0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.card--service-icon:hover .service-icon {
  transform: rotate(8deg) scale(1.15);
  box-shadow: 0 25px 50px rgba(0, 198, 255, 0.6);
}

/* TEXT */
.card--service-icon h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card--service-icon p {
  color: #555;
  line-height: 1.6;
}
/* =========================
   TABLET (up to 1024px)
========================= */
@media (max-width: 1024px) {

  /* Service Card */
  .service-card {
    padding: 32px;
    margin-bottom: 50px;
  }

  .service-grid {
    gap: 36px;
  }

  .service-content h2 {
    font-size: 26px;
  }

  .service-block h4 {
    font-size: 17px;
  }

  /* Toggle Button */
  .service-toggle {
    padding: 11px 24px;
    font-size: 15px;
  }

  /* Icons Grid */
  .grid--services-icons {
    gap: 24px;
  }

  .card--service-icon {
    padding: 40px 24px;
  }

  .service-icon {
    width: 95px;
    height: 95px;
    font-size: 58px;
  }

  .card--service-icon h3 {
    font-size: 20px;
  }
}


/* =========================
   MOBILE (up to 768px)
========================= */
@media (max-width: 768px) {

  /* Service Card */
  .service-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-image img {
    border-radius: 16px;
  }

  .service-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .service-block h4 {
    font-size: 16px;
    text-align: center;
  }

  .service-block ul {
    padding-left: 18px;
  }

  .service-toggle {
    display: block;
    margin: 20px auto 0;
    font-size: 15px;
  }

  /* Extra Content */
  .service-extra.active {
    max-height: 320px; /* allow more text */
  }

  /* Icons Grid */
  .grid--services-icons {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card--service-icon {
    padding: 36px 22px;
    border-radius: 20px;
  }

  .service-icon {
    width: 85px;
    height: 85px;
    font-size: 50px;
  }

  .card--service-icon h3 {
    font-size: 19px;
  }

  .card--service-icon p {
    font-size: 15px;
  }
}


/* =========================
   SMALL MOBILE (up to 480px)
========================= */
@media (max-width: 480px) {

  .service-card {
    padding: 22px 18px;
  }

  .service-content h2 {
    font-size: 22px;
  }

  .service-block h4 {
    font-size: 15px;
  }

  .service-block li {
    font-size: 14px;
  }

  .service-toggle {
    padding: 10px 22px;
    font-size: 14px;
  }

  .service-extra {
    font-size: 14px;
  }

  .service-icon {
    width: 78px;
    height: 78px;
    font-size: 46px;
  }

  .card--service-icon h3 {
    font-size: 18px;
  }

  .card--service-icon p {
    font-size: 14px;
  }
}


/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.mvv-section {
  padding: 80px 20px;
  color: var(--light);
}

.mvv-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.mvv-header h5 {
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 500;
}

.mvv-header h2 {
  font-size: 2.6rem;
  margin: 10px 0;
}

.mvv-header p {
  opacity: 0.85;
}

.mvv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.mvv-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.mvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), #4facfe);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
}

.mvv-card ul li {
  margin: 10px 0;
  opacity: 0.9;
  position: relative;
}

.mvv-card ul li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 8px;
}

.mvv-card.highlight {
  background: linear-gradient(135deg, rgba(0,198,255,0.25), rgba(79,172,254,0.15));
}
/* ===============================
   TABLET (up to 1024px)
================================ */
@media (max-width: 1024px) {

  .mvv-section {
    padding: 70px 18px;
  }

  .mvv-header {
    margin-bottom: 50px;
  }

  .mvv-header h2 {
    font-size: 2.2rem;
  }

  .mvv-container {
    gap: 24px;
  }

  .mvv-card {
    padding: 34px 26px;
  }

  .icon-circle {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .mvv-card h3 {
    font-size: 1.4rem;
  }

  .mvv-card ul li {
    font-size: 15px;
  }
}


/* ===============================
   MOBILE (up to 768px)
================================ */
@media (max-width: 768px) {

  .mvv-section {
    padding: 60px 16px;
  }

  .mvv-header h5 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .mvv-header h2 {
    font-size: 2rem;
  }

  .mvv-header p {
    font-size: 15px;
  }

  .mvv-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mvv-card {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .mvv-card h3 {
    font-size: 1.3rem;
  }

  .mvv-card ul li {
    font-size: 14px;
  }

  /* Reduce hover jump on mobile */
  .mvv-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}


/* ===============================
   SMALL MOBILE (up to 480px)
================================ */
@media (max-width: 480px) {

  .mvv-section {
    padding: 50px 14px;
  }

  .mvv-header {
    margin-bottom: 40px;
  }

  .mvv-header h2 {
    font-size: 1.7rem;
  }

  .mvv-header p {
    font-size: 14px;
  }

  .mvv-card {
    padding: 26px 18px;
  }

  .icon-circle {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .mvv-card h3 {
    font-size: 1.2rem;
  }

  .mvv-card ul li {
    font-size: 13.5px;
  }
}

 /* ===== Consumables Section ===== */
.consumables {
  padding: 70px 20px;
  background: linear-gradient(135deg, #4a4e8b, #1d505e);
  font-family: "Poppins", sans-serif;
}

.consumables-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.consumables-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.consumables-header p {
  color: #bdcdee;
  font-size: 1rem;
}

/* ===== Grid ===== */
.consumables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* ===== Card ===== */
.consumable-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.consumable-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6281c5, #38bdf8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.consumable-card:hover::before {
  opacity: 1;
}

.consumable-card * {
  position: relative;
  z-index: 1;
}

.consumable-card:hover {
  transform: translateY(-12px);
}

/* ===== Image ===== */
.consumable-img {
  width: 230px;
  height: 200px;
  border-radius: px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
  
}

.consumable-card:hover .consumable-img {
  transform: scale(1.15);
}

/* ===== Text ===== */
.consumable-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
  transition: color 0.35s ease;
}

.consumable-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  transition: color 0.35s ease;
}

.consumable-card:hover h3,
.consumable-card:hover p {
  color: #ffffff;
}

/* story */
.story {
background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  padding: 20px 20px;        /* Space inside section */
  border-radius: 2px;       /* Optional: rounded corners */
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  color: #363030;   
  justify-content: center;
  justify-items: center;
  align-items: start;       /* White text for readability */
}
.story-card{
 background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  max-width: 400px;
  gap:10px;
}
.story-card:hover {
  transform: translateY(-10px);
  border-color: #0ea5e9;
  box-shadow: 0 35px 70px rgba(14,165,233,0.35);
}

.story-card.featured {
  background: linear-gradient(
    145deg,
    rgba(14,165,233,0.25),
    rgba(30,64,175,0.25)
  );
}
.story-card h3{
   color: #0ea5e9;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}
.story-card p{
  font-size: 16px;
  line-height: 1.7;
  color: #818285;
  margin-bottom: 28px;
  margin: 0;
}
/* tablet */
@media (max-width: 1024px) {

  /* ===== Consumables ===== */
  .consumables {
    padding: 60px 18px;
  }

  .consumables-header h2 {
    font-size: 2.1rem;
  }

  .consumables-grid {
    gap: 22px;
  }

  .consumable-card {
    padding: 26px 22px;
  }

  .consumable-img {
    width: 200px;
    height: 180px;
  }

  /* ===== Story ===== */
  .story {
    padding: 30px 18px;
    gap: 18px;
  }

  .story-card {
    max-width: 360px;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  /* ===== Consumables ===== */
  .consumables {
    padding: 50px 16px;
  }

  .consumables-header {
    margin-bottom: 40px;
  }

  .consumables-header h2 {
    font-size: 1.9rem;
  }

  .consumables-header p {
    font-size: 0.95rem;
  }

  .consumables-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consumable-card {
    padding: 24px 20px;
  }

  .consumable-img {
    width: 180px;
    height: 160px;
    display: block;                 /* required */
    margin: 0 auto 16px auto !important; /* 🔥 center horizontally */
    object-fit: contain;
    margin-bottom: 16px;
  }

  /* Reduce hover jump for touch */
  .consumable-card:hover {
    transform: translateY(-6px);
  }

  /* ===== Story ===== */
  .story {
    grid-template-columns: 1fr;
    padding: 28px 16px;
  }

  .story-card {
    max-width: 100%;
    padding: 18px 16px;
  }

  .story-card h3 {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .story-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .story-card:hover {
    transform: translateY(-6px);
  }
}
/* small mobile */
@media (max-width: 480px) {

  .consumables {
    padding: 45px 14px;
  }

  .consumables-header h2 {
    font-size: 1.7rem;
  }

  .consumables-header p {
    font-size: 0.9rem;
  }

  .consumable-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .consumable-img {
    width: 160px;
    height: 140px;
  }

  .consumable-card h3 {
    font-size: 1.1rem;
  }

  .consumable-card p {
    font-size: 0.9rem;
  }

  .story {
    padding: 24px 14px;
  }

  .story-card {
    padding: 16px 14px;
  }

  .story-card p {
    font-size: 13.5px;
  }
}

/* ===== PRODUCT CAROUSEL ===== */
.product-carousel {
  padding: 4rem 0;
  background:  #202a41;
  overflow: hidden;
 
}

.carousel-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: whitesmoke;
}

/* Wrapper with fade edges */
.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track-wrapper::before,
.carousel-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
/* 
/* Track */
.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 45s linear infinite;
}

/* Pause on hover */
.carousel-track-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* Auto scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* tablet responsive */
@media (max-width: 1024px) {

  .product-carousel {
    padding: 3.5rem 0;
  }

  .carousel-title {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }

  .carousel-track {
    gap: 1.2rem;
    animation-duration: 55s; /* slower for tablets */
  }

  .carousel-track-wrapper::before,
  .carousel-track-wrapper::after {
    width: 60px;
  }
}
/* tablet */
@media (max-width: 768px) {

  .product-carousel {
    padding: 3rem 0;
  }

  .carousel-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .carousel-track-wrapper {
    padding: 0.75rem 0;
  }

  .carousel-track {
    gap: 1rem;
    animation-duration: 65s; /* slower = smoother on mobile */
  }

  .carousel-track-wrapper::before,
  .carousel-track-wrapper::after {
    width: 40px;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .product-carousel {
    padding: 2.5rem 0;
  }

  .carousel-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .carousel-track {
    gap: 0.75rem;
    animation-duration: 75s;
  }

  .carousel-track-wrapper::before,
  .carousel-track-wrapper::after {
    width: 24px;
  }
}
@media (hover: none) {
  .carousel-track {
    animation-play-state: running;
  }
}

/* Product Card */
.card.product {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border-radius: 18px;
  height: 650px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.card.product:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card.product img {
  width: 100%;
  height: 40px;
  object-fit: cover;
}

.card.product div {
  padding: 1.2rem;
}

.carousel_head h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
  color:#203794 ;
}

.card.product p {
  font-size: .9rem;
  color: #475569;
  line-height: 1.5;
}

/* Button */
.btn--ghost {
  margin-top: .8rem;
  padding: .5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #0f172a;
  background: transparent;
  cursor: pointer;
  font-size: .85rem;
  transition: all .3s ease;
}

.btn--ghost:hover {
  color: #fff;
}
/* tablet responsive */
@media (max-width: 1024px) {

  .card.product {
    min-width: 250px;
    max-width: 250px;
    height: 600px;
  }

  .card.product img {
    height: 180px;
  }

  .carousel_head h3 {
    font-size: 1rem;
  }

  .card.product p {
    font-size: 0.88rem;
  }

  .btn--ghost {
    font-size: 0.82rem;
    padding: 0.45rem 1.1rem;
  }
}
/* mobile responsiove */
@media (max-width: 768px) {

  .card.product {
    min-width: 300px;
    max-width: 3000px;
    height: auto;              /* let content decide height */
    border-radius: 16px;
  }

  .card.product img {
    height: 160px;
  }

  .card.product div {
    padding: 1rem;
  }

  .carousel_head h3 {
    font-size: 0.95rem;
  }

  .card.product p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .btn--ghost {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .card.product {
    min-width: 190px;
    max-width: 190px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  }

  .card.product img {
    height: 140px;
  }

  .carousel_head h3 {
    font-size: 0.9rem;
  }

  .card.product p {
    font-size: 0.82rem;
  }

  .btn--ghost {
    width: 100%;
    text-align: center;
  }
}




/* ===== Product Card – Advanced Dealership Style ===== */

.card.product {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  position: relative;
}

/* Subtle accent line */
.card.product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(37, 99, 235, 0.4),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.card.product:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:card product
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Image */
.card.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card.product:hover img {
  transform: scale(1.08);
}

/* Content */
.card.product > div {
  padding: 6px 20px 20px;
  text-align: center;
}

.card.product h3 {
  font-size: 1.40rem;
  font-weight: 700;
  color: darkblue;
  margin-bottom: 0px;
  margin-top: 0px;
}

.card.product p {
  font-size: 0.95rem;
  color: #232f40;
  line-height: 1.6;
  margin-bottom: 22px;
  justify-content:space-between;
}
.specs {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: grid;
  grid-template-columns: 1fr; /* single column */
  row-gap: 6px;
}

.specs li {
  font-size: 0.85rem;
  color: black;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}



/* Button */
.btn--ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 30px;
  border: 1.5px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn--ghost::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #2563eb,
    #1e40af
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn--ghost:hover {
  color: #ffffff;
  border-color: transparent;
}

.btn--ghost:hover::before {
  transform: scaleX(1);
}

.btn--ghost:hover::after {
  transform: translateX(6px);
}
/* mobile responsive */
@media (max-width: 768px) {

  .card.product {
    border-radius: 16px;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.08),
      0 18px 36px rgba(0, 0, 0, 0.06);
    transform: none;
  }

  .card.product:hover {
    transform: none; /* disable lift on touch devices */
  }

  /* Image */
  .card.product img {
    height: 180px;
  }

  /* Content spacing */
  .card.product > div {
    padding: 10px 16px 18px;
  }

  .card.product h3 {
    font-size: 1.15rem;
  }

  .card.product p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* Specs list */
  .specs li {
    font-size: 0.8rem;
    gap: 5px;
  }

  /* Button */
  .btn--ghost {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .btn--ghost::after {
    font-size: 1rem;
  }
}
/* small mobile */
@media (max-width: 480px) {

  .card.product {
    border-radius: 14px;
  }

  .card.product img {
    height: 150px;
  }

  .card.product h3 {
    font-size: 1.05rem;
  }

  .card.product p {
    font-size: 0.82rem;
  }

  .specs li {
    font-size: 0.78rem;
  }
}


/* experience */
/* Section Background & Title */
.stats-section {
background: #020617; 
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.stats-title {
  color: #f8fafc;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
}

/* Container Grid */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
}

/* Glassmorphism Cards */
.stat-card {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
}

/* Trending Gradient Count Numbers */
.count {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.2s;
}

/* Count Animation Pop */
.count.animate {
  transform: scale(1.2);
}

/* Card Text */
.stat-card p {
  color: #e5e7eb;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* Section Scroll Fade-In */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:768px){
  .stats-title {
    font-size: 2rem;
  }
  .count {
    font-size: 2rem;
  }
}
/* mobile responsive */
@media (max-width: 768px) {

  .stats-section {
    padding: 4rem 1.2rem;
  }

  .stats-title {
    font-size: 1.9rem;
    margin-bottom: 2.2rem;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.6rem 1rem;
    border-radius: 14px;
  }

  /* Disable hover lift on touch devices */
  .stat-card:hover {
    transform: none;
    box-shadow: none;
  }

  .count {
    font-size: 2.2rem;
  }

  .stat-card p {
    font-size: 1.1rem;
  }
}
/* mobile responsive */
@media (max-width: 480px) {

  .stats-section {
    padding: 3.5rem 1rem;
  }

  .stats-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .stats-container {
    grid-template-columns: 1fr; /* one stat per row */
    gap: 1.2rem;
  }

  .stat-card {
    padding: 1.4rem 0.8rem;
  }

  .count {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 1rem;
  }
}
/* small responsive */
@media (min-width: 769px) and (max-width: 1024px) {

  .stats-section {
    padding: 5rem 2rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stats-title {
    font-size: 2.2rem;
  }

  .count {
    font-size: 2.6rem;
  }
}



/* ===== Container ===== */
.kproducts {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #e0e7ff, #f5f6fa);
  perspective: 1500px; /* Needed for 3D tilt */
}

/* ===== Card ===== */
.kc {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d; /* Enables 3D tilt */
  cursor: pointer;
}

/* ===== Card hover shadow ===== */
.kc.hovered {
  box-shadow: 0 20px 35px rgba(32, 42, 65, 0.4);
}

/* ===== Product image ===== */
.kc img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #eee;
}

/* ===== Card content ===== */
.kp {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kp h3 {
  font-size: 1rem;
  color:darkblue;
  margin-bottom: 5px;
  font-weight: 700;
}



/* ===== Specs list ===== */
.ks {
  max-height: 0;       /* hidden initially */
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  padding-left: 20px;
  list-style: none;
}


.ks li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  transition: color 0.3s;
}

.ks li:hover {
  color: #6366f1;
}
 .btn.view-btn {
    background-color: #202a41;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }

  .btn.view-btn:hover {
    background-color: #3b4a6b;
  }
/* ===== Button ===== */
.kb {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.4s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 10px rgba(99, 102, 241, 0.3);
}

.kb:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .kc {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .kproducts {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 15px;
  }

  .kc {
    width: 90%;
  }

  .kc img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .kc img {
    height: 150px;
  }

  .kp {
    padding: 15px;
  }

  .kb {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}
