/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title-wrap h1,
.title-wrap h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1;   /* THIS removes hidden vertical space */
}

.title-wrap h2 {
  font-size: 18px;
  font-weight: 400;
  color: #e6e2e2;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;     /* set height */
  width: auto;      /* maintain aspect ratio */
  object-fit: contain;
  display: block;
}



:root {
    --primary: #0e79b5;
    --accent: #df8586;
    --secondary: #7c81ef;
    --dark: #05038b;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f8f9ff, #eef1ff);
    color: var(--dark);
    line-height: 1.7;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}
/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 55px rgba(0,0,0,0.4);
}

.why-choose-us h2 {
    font-size: 38px;
    margin: 14px 0 5px;   /* less space below heading */
    color: #05038b;
    text-align: left;
}

.why-choose-us ul {
    list-style-type: disc;
    padding-left: 25px;  /* indentation for bullets */
    margin-top: 0;        /* remove extra top margin */
    margin-bottom: 0;     /* optional: tighten below */
    text-align: left;
}

.why-choose-us ul li {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 10px;  /* space between points */
}



/* Mobile spacing */
@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}


/* ================== HEADER ================== */
.header {
  background-color: rgb(19,148,235);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;   /* allows dropdown nav below header */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 80px;             /* fixed height for toggle alignment */
}

/* Logo */
.logo {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Hamburger */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  display: block;
  z-index: 1000;
}

/* Nav dropdown */
nav {
  display: none;           /* hidden by default */
  flex-direction: column;
  background-color: rgb(19,148,235);
  text-align: center;
  width: 100%;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Active menu */
nav.active {
  display: flex;
}

/* MEDIA QUERIES */

/* Tablet and below */
@media (max-width: 1234px) {
  .logo {
    height: 95px;
 }

  .menu-toggle {
    font-size: 26px;
  }
}

@media (min-width: 975px) and (max-width: 1233px) {
  .logo {
    height: 95px;
    margin-top: 9px;
}
   .nav {
    height: 90px;
   }
}

/* Small Mobile <567px */
@media (max-width: 567px) {
  .logo {
    height: 85px;
  }

  .menu-toggle {
    font-size: 24px;
    margin-top: 20px;
    margin-left: 80px;
  }

  nav a {
    font-size: 13px;
    padding: 8px 0;
  }
}

/* Desktop: 1024px and above */
/* Desktop: 1024px and above */
@media (min-width: 1234px) {
  nav {
    display: flex;             /* show links horizontally */
    flex-direction: row;
    justify-content: flex-end; /* push links to right of logo */
    align-items: center;
    background-color: transparent; 
    text-align: left;
    margin-left: -120px;
    width: 100%;   
    margin-top: 20px;            /* take full width to allow right alignment */
    padding: 0;
  }

  nav a {
    padding: 0;
    margin-left: 30px;         /* space between links */
    border-bottom: none;
    font-size: 14px;
    margin-top: -80px;
  }

  .menu-toggle {
    display: none;             /* hide hamburger */
  }

  .logo {
    margin-top: 30px;
  }
}



/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    padding: 100px 0 130px;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    max-width: 480px;
    font-size: 15px;
    opacity: 0.92;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
}

.btn {
    padding: 14px 34px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
}

.hero-image img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(5, 3, 139, 0.35);
}

/* =========================
   FEATURES
========================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* smaller width cards */
    gap: 20px;  /* gap between cards */
    justify-content: center;
    margin-top: 50px; /* center cards if fewer on row */
}

.feature-card {
    background: linear-gradient(135deg,
            rgba(124, 129, 239, 0.1),
            rgba(14, 121, 181, 0.08));
    padding: 25px 20px;  /* reduced padding */
    border-radius: 20px;
    text-align: center;
    max-width: 250px;     /* limits horizontal size */
    margin: 0 auto;       /* centers card in column */
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    font-size: 17px;
    line-height: 1.4;
}

/* =========================
   ABOUT
========================= */
.about {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about span {
    font-size: 13px;
    color: #05038b;
    font-weight: 500;
}

.about h2 {
    font-size: 38px;
    margin: 14px 0 20px;
}

.about p {
    font-size: 15px;
    opacity: 0.9;
}

.about-boxes {
    display: flex;
    gap: 22px;
    margin-top: 35px;
}

.box {
    flex: 1;
    background: linear-gradient(135deg,
            rgba(223, 133, 134, 0.18),
            rgba(124, 129, 239, 0.15));
    padding: 26px;
    border-radius: 18px;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
}

.experience {
    position: absolute;
    bottom: 25px;
    left: -90px;
    background: linear-gradient(135deg,
            var(--dark),
            var(--secondary));
    color: var(--white);
    padding: 22px 30px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
}

.experience span {
    display: block;
    font-size: 19px;
    color: #eef1ff;
    font-weight: 400;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .experience {
        position: absolute;          /* still absolute over the image */
        bottom: -15px;               /* half below image */
        left: 50%;                   /* center horizontally */
        transform: translateX(-50%); /* center exactly */
        padding: 15px 25px;          /* smaller padding for mobile */
        font-size: 18px;             /* smaller font */
        border-radius: 15px;
        max-width: 80%;              /* don’t overflow on small screens */
        text-align: center;
    }

    /* make sure the image container is relative */
    .hero-image {
        position: relative;
    }
}

.gallery-points li {
    font-size: 22px;
    margin-bottom: 8px;         /* space between points */
    color: #020203;
    padding-left: 20px;         /* indent the content inside the bullet */
    margin-left: 20px;          /* move the whole bullet to the right */
}

@media (max-width: 404px) {
    .experience {
        position: absolute;          /* still over the image */
        bottom: -40px;                /* slightly below the image */
        left: 50%;                   /* center horizontally */
        transform: translateX(-50%); /* center exactly */
        padding: 8px 16px;          /* smaller padding */
        font-size: 15px;             /* smaller font */
        border-radius: 12px;         /* smaller radius */
        max-width: 90%;              /* fit tiny screens */
        text-align: center;
    }

    /* make sure the image container is relative */
    .hero-image {
        position: relative;
    }
}




/* =========================
   STATS
========================= */
.stats {
    background: linear-gradient(135deg,
            rgba(14, 121, 181, 0.08),
            rgba(124, 129, 239, 0.08));
    padding: 55px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stats-grid div {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
}

.stats-grid span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

/* =========================
   OUR EXPERTISE – FABRIC COLLECTION
========================= */

.services {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    rgba(223, 133, 134, 0.16),
    rgba(124, 129, 239, 0.16)
  );
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-header span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.4px;
}

.section-header h2 {
  font-size: 38px;
  margin: 12px 0 14px;
  color: var(--dark);
}

.section-header p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   FABRIC GRID
========================= */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =========================
   FABRIC CARD
========================= */
.fabric-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(5, 3, 139, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fabric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 90px rgba(5, 3, 139, 0.25);
}

/* IMAGE */
.fabric-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.fabric-content {
  padding: 22px 22px 26px;
}

.fabric-tag {
  display: inline-block;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(124, 129, 239, 0.15);
  color: var(--dark);
  margin-bottom: 10px;
}

.fabric-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.fabric-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* BUTTON */
.fabric-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}

.fabric-link:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

@media (max-width: 1200px) {
  .fabric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .fabric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 576px) {
  .services {
    padding: 80px 0;
  }

  .fabric-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .fabric-card img {
    height: 200px;
  }
}

/* =========================
   MODAL – FABRIC DETAILS
========================= */


.process-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.process-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Backdrop */
.process-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 139, 0.45);
  backdrop-filter: blur(3px);
}

/* Panel */
.process-panel {
  position: relative;
  width: 90%;
  max-width: 820px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 45px;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

/* Close */
.process-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* Modal Content */
.process-panel h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--dark);
}

.process-panel h4 {
  margin-top: 24px;
  font-size: 18px;
  color: var(--dark);
}

.process-panel ul {
  padding-left: 20px;
}

.process-panel li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   MODAL GALLERY
========================= */
.process-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f5ff;
}

.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}





.process-gallery1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.gallery1-item {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f5ff;
}

.gallery1-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery1-item:hover img {
  transform: scale(1.08);
}

/* Make all videos responsive */
video {
  width: 100%;
  max-width: 400px;       /* optional max width for large screens */
  height: auto;
  border-radius: 12px;
  margin: 10px;
  object-fit: cover;
  display: inline-block;   /* allows multiple videos side by side */
}

/* Media Queries */

/* Tablet */
@media (max-width: 1024px) {
  video {
    max-width: 300px;
    margin: 8px;
    border-radius: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  video {
    max-width: 100%;       /* full width on mobile */
    margin: 5px 0;
    border-radius: 8px;
    display: block;        /* stack vertically on mobile */
  }
}




.projects h3 {
    color: #030405;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 780px;
    margin: 8px 0;        /* remove auto centering */
    text-align: left;    /* left align text */
}


/* =========================
   MODAL ACTION
========================= */
.process-actions {
  margin-top: 30px;
  text-align: right;
}

.inquire-btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* Responsive modal */
@media (max-width: 768px) {
  .process-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-panel {
    padding: 30px;
  }

  .process-panel h2 {
    font-size: 28px;
  }
}

/* Gallery */
.process-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 15px;
}

.gallery-item {
    height: 110px;
    border-radius: 16px;
    background: rgba(124, 129, 239, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actions */
.process-actions {
    text-align: right;
    margin-top: 30px;
}

.inquire-btn {
    background: var(--accent);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .process-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-panel {
        padding: 30px;
    }
}

/* =========================
   PROJECTS
========================= */
/* General section styling */
.projects {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.projects h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0e79b5;
}

.projects h3 {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* List points styling */
.gallery-points {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.gallery-points li {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-weight: 500;
}

/* Swiper styling */
.project-swiper {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #0e79b5;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .gallery-points {
        flex-direction: column;
        gap: 15px;
    }

    .projects h1 {
        font-size: 2rem;
    }

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


/* Box styling for the section */
/* Box styling for the section */
/* Background for the whole section (like testimonial style) */

/* Box inside the section */
/* Section background (like testimonials) */
.sustain-section {
    background: linear-gradient(135deg,
            rgba(14, 121, 181, 0.08),
            rgba(124, 129, 239, 0.08));
    padding: 110px 20px;
    display: flex;
    justify-content: center;
}

/* Horizontal box styling */
.sustain-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    max-width: 1200px;       /* limit max width to look elegant */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-sizing: border-box;   /* include padding in width */
}

/* Heading */
.sustain-box h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0e79b5;
    text-align: center;
}

/* Paragraph */
.sustain-box p {
    font-size: 1rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

/* List */
.sustain-box ul {
    list-style: disc inside;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* center list items */
}

.sustain-box li {
    font-size: 0.95rem;
    color: #555;
    min-width: 180px;        /* consistent size for each item */
    text-align: center;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    background: linear-gradient(135deg,
            rgba(223, 133, 134, 0.18),
            rgba(124, 129, 239, 0.18));
    padding: 110px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* =========================
   CONTACT CANVAS – PREMIUM
========================= */
.contact-canvas {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

/* MAP AS BACKGROUND */
.map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-bg iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* filter: grayscale(1) brightness(0.9); */
}

/* FLOATING GLASS CARD */
.contact-float {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 60px 70px;
    box-shadow: 0 60px 140px rgba(5, 3, 139, 0.35);
}

/* HEADER */
.contact-header span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.contact-header h2 {
    font-size: 40px;
    margin: 10px 0 12px;
    color: var(--dark);
}

.contact-header p {
    max-width: 520px;
    font-size: 15px;
    opacity: 0.9;
}

/* INFO GRID */
.contact-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

/* BLOCK */
.info-block {
    background: linear-gradient(135deg,
            rgba(124, 129, 239, 0.12),
            rgba(14, 121, 181, 0.1));
    padding: 28px;
    border-radius: 22px;
}

.info-block.wide {
    grid-column: span 2;
}

.info-block h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--dark);
}

.info-block a {
    display: block;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 6px;
}

.info-block a:hover {
    text-decoration: underline;
}
/* -------- Tablets: 992px - 768px -------- */
@media (max-width: 991px) {

    .contact-canvas {
        padding: 120px 20px;
    }

    .contact-float {
        padding: 50px 40px;
        width: 95%;
        margin: 0 auto;
    }

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

    .contact-header p {
        max-width: 100%;
        font-size: 14px;
    }

    .contact-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-block.wide {
        grid-column: span 2;
    }
    
    .map-bg iframe {
        height: 400px;
    }
}

/* -------- Large Mobiles: 767px - 576px -------- */
@media (max-width: 767px) {

    .contact-canvas {
        padding: 100px 15px;
    }

    .contact-float {
        padding: 35px 25px;
        width: 90%;
        transform: translateY(-20px);
    }

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

    .contact-header p {
        font-size: 13px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-block.wide {
        grid-column: span 1;
    }

    .map-bg iframe {
        height: 300px;
    }

    .info-block h4 {
        font-size: 14px;
    }

    .info-block p,
    .info-block a,
    .info-block span {
        font-size: 13px;
    }
}

/* -------- Small Mobiles: 575px and below -------- */
@media (max-width: 575px) {

    .contact-canvas {
        padding: 80px 10px;
    }

    .contact-float {
        padding: 25px 20px;
        width: 95%;
        transform: translateY(-10px);
    }

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

    .contact-header p {
        font-size: 12px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-block h4 {
        font-size: 13px;
    }

    .info-block p,
    .info-block a,
    .info-block span {
        font-size: 12px;
    }

    .map-bg iframe {
        height: 250px;
    }
}
/* -------- Ultra Small Mobiles: 365px and below -------- */
@media (max-width: 365px) {

    .contact-canvas {
        padding: 50px 8px; /* tighter padding top & sides */
    }

    .contact-float {
        padding: 15px 12px; /* compact card padding */
        width: 95%;
        transform: translateY(-3px); /* slight lift for balance */
    }

    .contact-header h2 {
        font-size: 18px; /* smaller heading */
        line-height: 1.2;
        margin-bottom: 5px; /* reduce gap below heading */
    }

    .contact-header p {
        font-size: 10px; /* smaller, readable */
        line-height: 1.3;
        margin-bottom: 8px; /* less space below paragraph */
        max-width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr; /* always single column */
        gap: 6px; /* minimal spacing between blocks */
    }

    .info-block.wide {
        grid-column: span 1; /* single column */
    }

    .info-block h4 {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .info-block p,
    .info-block a,
    .info-block span {
        font-size: 10px;
        line-height: 1.2;
    }

    .map-bg iframe {
        height: 180px; /* smaller map for ultra-small devices */
    }
}


.muted {
    font-size: 14px;
    opacity: 0.85;
}

/* PILL */
.pill {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 14px;
    font-size: 11px;
    border-radius: 30px;
    background: var(--accent);
    color: #fff;
}

/* RESPONSIVE */


/* =========================
   FOOTER
========================= */
.footer {
    width: 100%;
    color: var(--white);
}

.footer-bg {
    width: 100%;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    padding: 80px 20px 30px; /* horizontal padding for small screens */
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px; /* content stays centered */
    margin: 0 auto;
}

.footer h3, .footer h2, .footer h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 6px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer .copyright {
    text-align: center;
    margin-top: 45px;
    background-color: #0e79b5;
    font-size: 13px;
    opacity: 0.6;
}



/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* ---------- Large Tablets & Small Laptops ---------- */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 40px;
    }

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

/* ---------- Tablets ---------- */
@media (max-width: 992px) {

    /* NAV */
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav a {
        margin-left: 18px;
    }

    /* HERO */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    /* FEATURES */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-boxes {
        justify-content: center;
    }

    .about-image {
        margin-top: 50px;
    }

    .experience {
        left: 50%;
        transform: translateX(-50%);
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* PROJECTS */
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* TESTIMONIALS */
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Mobile Devices ---------- */
@media (max-width: 576px) {

    /* GLOBAL */
    body {
        font-size: 14px;
    }

    section {
        padding: 70px 0 !important;
    }

    /* NAV */
    .nav {
        flex-direction: column;
        text-align: center;
    }

    .nav a {
        margin: 8px 0;
    }

    /* HERO */
    .hero {
        padding: 80px 0 90px;
    }

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

    .badge {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .play {
        width: 44px;
        height: 44px;
    }

    /* FEATURES */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT */
    .about h2 {
        font-size: 30px;
    }

    .about-boxes {
        flex-direction: column;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid div {
        font-size: 24px;
    }

    /* SERVICES */
    .services h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* PROJECTS */
    .project-grid {
        grid-template-columns: 1fr;
    }

    /* TESTIMONIALS */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* NEWSLETTER */
    .newsletter-box {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll to Top Button */
