/* lexend exa font */
body {
    font-family: 'Lexend Exa', sans-serif;
    font-weight: 300; /* Light */
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
  }
  
  /* Header Styling */
  #header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
  }

  #header.scrolled {

    background-color: rgba(237, 239, 241, 0.75); /* semi-transparent white */
    backdrop-filter: blur(12px); /* apply blur effect */
    -webkit-backdrop-filter: blur(12px); /* for Safari support */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* optional soft shadow */
    transition: all 0.3s ease-in-out; /* smooth transition */
  }

  @media (max-width: 768px) {
    #header {
      height: 70px;
    }
    
  }
  
/* logo css */
/* Container */
.logo {
  position: relative;
  width: 200px;
  height: 200px;
  display: block;
}

/* Shared style for all logos */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  display: none; /* hide all initially */
}

/* White logos are visible by default */
.logo-white {
  opacity: 1;
  z-index: 2;
}

/* Black logos are hidden initially */
.logo-black {
  opacity: 0;
  z-index: 1;
}

/* On scroll, switch opacity */
#header.scrolled .logo-white {
  opacity: 0;
}
#header.scrolled .logo-black {
  opacity: 1;
}

/* Desktop: show only desktop logos */
@media (min-width: 769px) {
  .desktop-logo {
    display: block;
  }
  .mobile-logo {
    display: none;
  }

  .logo {
    width: 200px;
    height: 200px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .logo {
    position: relative;
    width: 120px; /* adjust as needed */
    height: 70px;  /* match header height or slightly less */
  }
}



/* Phone */
@media (max-width: 480px) {
  .logo {
    width: 110px;
    height: 110px;
  }
}

  
  
  /* Left icons (menu + search) */
  .left-icons {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .contact-btn {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    padding: 10px 1px;
    background: transparent;
    color: #ffffff; /* or #fff if dark background */
    font-family: 'Lexend Exa', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    z-index: 999;
    overflow: hidden;
    display: inline-block;
    position: absolute;
  }
  
  .contact-btn::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 6px; /* Adjust to move underline closer/farther */
    left: 0;
    height: 1px;
    width: 0%;
    background-color: currentColor;
    transition: width 0.4s ease;
  }
  
  .contact-btn:hover::after {
    width: 100%;
  }
  
  /* When header becomes white on scroll */
#header.scrolled .contact-btn {
  color: black;
}

/* Keep underline color consistent */
#header.scrolled .contact-btn::after {
  background-color: black;
}
  
/* Call Icon (mobile-call-trigger) */
.mobile-call-trigger {
  display: none; /* hidden by default on desktop */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
}

.mobile-call-trigger img {
  width: 24px;
  height: 24px;
}

/* Show call icon only on mobile */
@media (max-width: 768px) {
    .contact-btn {
    display: none !important; 
  }
  .mobile-call-trigger {
    display: block;
  }

  /* Initially show only white icon */
  .call-white {
    display: block;
  }
  .call-black {
    display: none;
  }

  /* When scrolled, switch to black icon */
  #header.scrolled .call-white {
    display: none;
  }
  #header.scrolled .call-black {
    display: block;
  }
}


  
  /* Menu Button (Hamburger) */
  .menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 20px;
    height: 20px;
    z-index: 1100;
    transition: opacity 0.3s ease;
  }
  
  .menu-btn.faded {
    opacity: 0;
    pointer-events: none;
  }
  
  .menu-btn .bar {
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  

  .menu-btn.active .top-bar {
     transform: translateY(7px); /* move to center */
  }
  
  .menu-btn.active .middle-bar {
    opacity: 1;
  }
  
  .menu-btn.active .bottom-bar {
     transform: translateY(-7px); /* move to center */
  }
  
  #header.scrolled .menu-btn .bar {
    background-color: #000;
  }
  
  #header.scrolled .menu-btn.active .bottom-bar {
    background-color: #fff !important;
  }

  #header.scrolled .menu-btn.active .top-bar {
    background-color: #fff !important;
  }

  #header.scrolled .menu-btn.active .middle-bar {
    background-color: #fff !important;
  }

  /* Search icon */
  .search-icon {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
  }
  
  #header.scrolled .search-icon {
    color: #000;
  }
  
  /* Hero section 
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 0;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/hero-video.mp4");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 500;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin: 0;
  } */
  
 /* Hero Section Styling */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Black gradient overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),   /* darker at top (highlight header) */
      rgba(0, 0, 0, 0.2)    /* lighter towards bottom */
  );
  pointer-events: none; /* ensures clicks pass to video */
  z-index: 2;
}

/* Fullscreen Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Show desktop video by default */
.hero-video.desktop-video {
    display: block;
}
.hero-video.mobile-video {
    display: none; /* Hide the mobile video on desktop */
}

/* 3. Positioning the Text Overlay */
.video-overlay-text {
    position: absolute;
    /* Center Horizontally */
    left: 50%;
    /* Slightly Below Vertical Center (55% from top) */
    top: 55%; 
    /* Use transform to truly center the element relative to its own size */
    transform: translate(-50%, -50%); 

    /* Allow the text to span most of the screen width */
    max-width: 80%; 
    width: 100%;
    
    /* Ensure the text is on top of any video overlays */
    z-index: 10; 
    
    /* Reserve space for 3 lines of text to prevent upward shifting */
    min-height: 200px; /* Increased height due to larger font-size */
}

/* 1. New Styling for the Word Container */
#typewriter {
    /* STYLES FROM .info-title */
    font-size: 2.5rem; 
    font-weight: 400;
    letter-spacing: -2px;
    text-align: center;
    color: white; 
    line-height: 1.2; 
    white-space: pre-wrap;
    
    /* NEW: Reduced Shadow Intensity (from 0.9 to 0.5 opacity) */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); 
}

/* 2. Styling for the Individual Words (The Reveal/Fade-in Effect) */
#typewriter .word {
    /* CRUCIAL: Words start hidden */
    opacity: 0; 
    /* CRUCIAL: Smooth transition for the fade-in effect */
    transition: opacity 0.5s ease-in; 
    /* Essential for fade-in effect to work on the word while maintaining its place */
    display: inline-block; 
}

/* Mobile switch */
@media (max-width: 768px) {
.hero-video.desktop-video {
        display: none; /* Hide the desktop video on mobile */
    }
    .hero-video.mobile-video {
        display: block; /* SHOW the mobile video on mobile */
    }
  
  /* Reduce font size for small screens */
    #typewriter {
        font-size: 20px;
        line-height: 1.3;
    }
    
    /* Give the text more room horizontally on small devices */
    .video-overlay-text {
        padding: 20px;
        max-width: 80%; /* Takes up more of the screen width */
    }
  
}

/* Content Styling */
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff; /* White text for visibility */
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  font-family: 'Lexend Exa', sans-serif;
}

  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    #header {
      height: 60px;
      padding: 0 10px;
      align-items: center;
    }
  
    .logo {
      width: 50px;
      height: 50px;
    }
  
    .logo img {
      height: 30px;
    }
  }
  


  /* Mobile navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 40%;
    background-color: rgb(0, 0, 0);
    backdrop-filter: blur(8px);
    transition: left 0.4s ease;
    z-index: 1000;
    padding: 40px 20px;
  }
  
  .mobile-nav.active {
    left: 0;
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
  }
  
  .mobile-nav li {
    position: relative;
    margin: 0;
    padding: 15px 10px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle white-ish line */
    color: white;
    cursor: pointer;
  }
  
/* ✅ Swipe underline effect on links */
.mobile-nav a {
  color: white;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Lexend Exa', sans-serif;
  font-weight: 300;
}

/* ✅ Hover underline animation */
.mobile-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: currentColor;
  transition: width 0.4s ease;
}

.mobile-nav a:hover::after {
  width: 100%;
}
  
@media (max-width: 768px) {
  .contact-btn {
    display: none;
  }
}


  /* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* Ensures full height regardless of scroll */
  width: 100%;
  height: 100vh; /* Viewport height */
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 2000; /* ✅ Must be higher than header (which is 1000) */
  pointer-events: auto;
}

/* When activated */
.search-overlay.active {
  display: flex;
}

.search-box {
  background: #fff;
  width: 80%;
  max-width: 600px;
  padding: 40px 20px 30px;
  border-radius: 12px 12px 0 0;
  position: relative;
  font-family: 'Lexend Exa', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.search-box.slide-up {
  animation: slideUp 0.4s ease forwards;
}

.search-box.slide-down {
  animation: slideDown 0.4s ease forwards;
}


.search-box input {
  width: 60%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-radius: 999px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}


.suggestions {
  width: 100%;
}

.suggestions p {
  margin: 6px 0;
  color: #333;
  font-size: 0.95rem;
}

  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0%);
      opacity: 1;
    }
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(0%);
      opacity: 1;
    }
    to {
      transform: translateY(100%);
      opacity: 0;
    }
  }
  
  .search-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
    user-select: none;
    padding: 0;
    line-height: 1;
    opacity: 0.85;
  }
  
  .search-close-btn:hover {
    color: #000;
  }
  
/* Blur background when active (except header) */
.blur-background {
  filter: blur(8px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* Info Section */
.info-section {
  padding: 80px 20px;
  background: #ffffff;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-title {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #1d1b1b;
  font-weight: 500;
  letter-spacing: -2px;
  text-align: center;
}

.info-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

/* Divider line */
.info-divider {
  border: none;
  border-top: 3px solid #4280a8;
  width: 100px;
  margin-bottom: 40px;
}

/* Image Boxes */
.image-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.image-box {
  width: 350px; /* fixed width */
  text-align: left;
}

.image-container {
  width: 100%;
  height: 480px; /* fixed height for "smartphone" style */
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keep image nicely cropped */
}

.box-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0 8px;
  color: #000;
}

.box-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}
/* Universal fade-in animation */
.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
  .info-title {
    font-size: 2.5rem;
  }
  .image-boxes {
    gap: 20px;
  }
  .image-box {
    width: 100%;
    max-width: 320px;
  }
}


/* Slideshow Container */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Active Slide */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay Text */
.slide .overlay {
  color: rgb(0, 0, 0);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.404);
  padding: 0 20px;
}

.slide .overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: -4px;
}

.slide .overlay p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Text */
@media (max-width: 768px) {
  .slide .overlay h2 {
    font-size: 1.8rem;
  }
  .slide .overlay p {
    font-size: 1rem;
  }
}

.hero-slideshow {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.hero-slideshow.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slide-indicator .indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

/* Active = slightly wider rounded bar */
.slide-indicator .indicator.active {
  width: 20px;
  height: 12px;
  background: #fff;
  border-radius: 6px;
}

/*  Contact Slide Box Styling */
.contact-box {
  position: fixed;
  top: 0;
  right: -100%;
  width: 25%;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
  padding: 50px 30px;
  transition: right 0.5s ease;
  z-index: 9999;
  font-family: 'Lexend Exa', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-heading {
  font-size: 20px;
  font-weight: 400;
  color: #363535;
  margin-bottom: 20px;
  border-bottom: 1px solid #111;
  padding-bottom: 10px;
}

.contact-option h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #222;
}

.contact-option p {
  margin: 0;
}

.contact-option a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-option a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

/* ✅ When active */
.contact-box.active {
  right: 0;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .contact-box {
    width: 80%;
    padding: 40px 20px;
  }

  .contact-heading {
    font-size: 22px;
  }

  .contact-option h3 {
    font-size: 16px;
  }

  .contact-option a {
    font-size: 15px;
  }
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* === New Footer Styles === */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100;300;400;500;600&display=swap');

.new-footer {
  background: #000;
  color: #fff;
  font-family: 'Lexend Exa', sans-serif;
  padding: 50px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto 30px;
}
.footer-box {
  min-width: 200px;
  max-width: 300px;
}

.footer-box h4 {
  font-family: 'Lexend Exa', sans-serif;
  font-weight: 300;
  font-size: 13px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  font-size: 14px;
}

.footer-box a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-box p {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 100;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
  font-weight: 300;
}


/* === Responsive === */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-box {
    text-align: center;
  }
}

/* Base Style for Inner Hero Banner */
.inner-hero-banner {
  display: flex;
  align-items: center;         /* Vertically center content */
  justify-content: center;     /* Horizontally center content */
  text-align: center;
  height: 300px;               /* Desktop height */
  background-size: cover;
  background-position: center;
  padding: 0 15px;              /* Space on small screens */
}

.inner-hero-banner h1 {
  font-size: 48px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}

/* Page-specific Backgrounds */
.about-hero-banner {
  background-image: url('images/services.banner.png'); /* Change image path */
}

.services-hero-banner {
  background-image: url('images/services.banner.png'); /* Change image path */
}

.contact-hero-banner {
  background-image: url('images/services.banner.png'); /* Change image path */
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .inner-hero-banner {
    height: 220px;
  }
  .inner-hero-banner h1 {
    font-size: 36px;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .inner-hero-banner {
    height: 180px;
  }
  .inner-hero-banner h1 {
    font-size: 28px;
    word-break: break-word;
  }
}



/* Contact Options Section */
.contact-options-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-options-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background-color: #ffffff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none; /* Remove underline from links */
  color: inherit; /* Inherit text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-wrapper {
  background: linear-gradient(45deg, #007bff, #0056b3); /* Blue gradient */
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
  transition: background 0.3s ease;
}

.contact-card:nth-child(2) .icon-wrapper {
  background: linear-gradient(45deg, #25d366, #128c7e); /* WhatsApp green */
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-card:nth-child(3) .icon-wrapper {
  background: linear-gradient(45deg, #dc3545, #c82333); /* Red for email */
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.contact-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card p {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-card .cta-text {
  display: inline-block;
  background-color: #007bff; /* Default blue for CTA */
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-card:nth-child(2) .cta-text {
  background-color: #25d366; /* WhatsApp green for CTA */
}

.contact-card:nth-child(3) .cta-text {
  background-color: #dc3545; /* Red for CTA */
}

.contact-card .cta-text:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-options-section {
      padding: 60px 15px;
  }

  .section-title {
      font-size: 2.2rem;
  }

  .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
  }

  .contact-card {
      padding: 30px 20px;
  }

  .contact-card .icon-wrapper {
      width: 70px;
      height: 70px;
      font-size: 2rem;
      margin-bottom: 20px;
  }

  .contact-card h3 {
      font-size: 1.5rem;
  }

  .contact-card p {
      font-size: 1rem;
  }

  .contact-card .cta-text {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
      grid-template-columns: 1fr; /* Stack cards on very small screens */
  }
}


/* About Section */
.about-section {
  padding: 50px 20px;
  background: #fff;
  font-family: 'Lexend Exa', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-media {
  flex: 1;
}

.about-media img,
.about-media video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}


/* Mission Section */
.mission-section {
  padding: 50px 20px;
  background: #fff;
  font-family: 'Lexend Exa', sans-serif;
}

.mission-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Column: Text */
.mission-text {
  flex: 1;
  max-width: 600px;
  text-align: right; /* Align text to the right */
}

.mission-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Right Column: Image */
.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  /* About Section */
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-section {
    padding: 30px 20px; /* reduced padding for mobile */
  }

  /* Mission Section */
  .mission-section .container {
    flex-direction: column;
    text-align: center;
  }
  .mission-text {
    text-align: center;
    order: 2; /* text after image */
  }
  .mission-image {
    order: 1; /* image before text */
  }
  .mission-image img {
    max-width: 100%;
  }
  .mission-section {
    padding: 30px 20px; /* reduced padding for mobile */
  }
}
/* Our Vision Parallax Section */
.our-vision-section {
  position: relative;
  height: 70vh;
  background-image: url('images/services.banner.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-overlay {
  position: relative;
  background: rgba(0, 0, 0, 0); /* semi-transparent dark overlay */
  padding: 40px;
  max-width: 700px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  animation: fadeInUp 1.2s ease both;
}

.vision-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.vision-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .our-vision-section {
    height: 50vh;
    background-attachment: scroll; /* Disable parallax for mobile */
  }
  .vision-overlay {
    padding: 20px;
  }
  .vision-overlay h2 {
    font-size: 1.8rem;
  }
  .vision-overlay p {
    font-size: 1rem;
  }
}

.story-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.story-heading {
  text-align: center;
  padding: 40px 20px;
}
.story-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.story-image {
  width: 100%;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.story-image-large {
  height: 700px; /* Full height image */
}
.story-image-medium {
  height: 450px; /* Slightly smaller image */
}

.embroidery-description {
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  min-height: 400px;        /* adjust height as needed */
  text-align: center;
  padding: 20px;
  background-color: #000;
}

.embroidery-description p {
  max-width: 800px;
  font-size: 1.1rem;
  font-weight: 300; /* lighter text */
  line-height: 1.6;
  color: #ecececd2;      /* slightly softer than pure black */
}

/* Fade-in animation for story section */
.story-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.story-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 768px) {
  .story-heading h2 {
    font-size: 2rem;
  }
  .story-image-large {
    height: 450px;
  }
  .story-image-medium {
    height: 350px;
  }
  .embroidery-description {
    min-height: 500px; /* make text section taller too */
  }
}
