 /* Custom Styles */
 body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .sticky-header.scrolled {
    background-color: rgba(241, 247, 232, 0.75);
    backdrop-filter: blur(10px);
  }
  
  h1 {
      font-size: 4rem;
      color:#0F2125;
      font-family: 'Blacker', serif;
  }

  h2 {
    font-size: 50px;
    line-height: 1.1;
    color:#0F2125;
    font-family: 'Blacker', serif;
    font-weight: 600;
    text-wrap: balance;
    text-rendering: geometricPrecision;
    }

    h4 {
    font-size: 30px;
    color:#0F2125;
    font-family: 'Blacker', serif;
    }
    
  .banner {
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .banner-content {
    max-width: 600px;
  }

  .banner-image {
    z-index: -1;
    transition: transform 0.3s ease;
  }
 
  .banner-image img {
    width: 100%;
    border-radius: 20px;
    height: auto;
  }

  /* Parallax Effect */
  .banner.scrolled .banner-image {
    transform: scale(1.03) translateY(-50px);
  }

  /* Button Styling */
  .btn-lg {
    font-size: 1.25rem; /* Increased font size for prominence */
    padding: 15px 30px;
    border-radius: 50px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .btn-danger:hover {
   
    transform: scale(1.05); 
  }

  .btn-danger:hover {
   
    color: #fff;
    transform: scale(1.05); 
  }
  .banner-content p {
    font-size: 1.1rem;
    line-height: 1.6; 
    color: #333; 
    font-family: 'Glano', serif;
  }

  .contact-info i {
    font-size: 1.3rem; 
    color: #333;
    transform: rotate(88deg);
  }

  .btn-danger {
   transition: background-color 0.3s ease, transform 0.3s ease;
  }
   .section-title {
     text-align: center;
     margin-bottom: 40px;
     font-family: 'Blacker Serif', serif;
    }


    /*second section css */
  .box {
    background-color: #f1f7e8;
    border-radius: 40px; /* Box radius */
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .box:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .box i {
    font-size: 3rem;
    color: #0F5BAA;
    margin-bottom: 20px;
  }

  .box h4 {
    font-size: 30px;
    font-family: 'Blacker Serif', serif;
    margin-bottom: 15px;
  }

   p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: Galano, sans-serif;
  }
     .section-class-banner {
    padding: 10px 10vw 0 170px;
  }
  .section-class {
    padding: 70px 10vw 0 170px;
  }
  .section-slider-class {
    padding: 100px 0px 5vw 170px;
  
  }

  /*third section*/
.faq-section .accordion-button {
    background: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .faq-section .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
  }
  
  .faq-section .accordion-body {
    background: #fdfdfd;
  }

  .faq-section img {
    border-radius: 40px;
    height: 33vw;
    width: 40vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
  }

  .accordion-item {
    border: none; /* Remove all borders first */
    border-top: 1px solid #ddd; /* Add only top border */
    border-bottom: 1px solid #ddd; /* Add only bottom border */
    border-radius: 0; /* No corner rounding */
}

.accordion-button {
    background: #fff; /* Clean background */
    box-shadow: none; /* Remove Bootstrap's inner shadow */
}

  .arrow-icon {
    transition: transform 0.3s ease;
    padding-left: 5px;
  }
  
  /* Rotate arrow when open */
  .accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
  }
  
  /* Remove Bootstrap's default accordion arrow */
    .accordion-button::after {
        display: none;
    }


 /*fourth section*/
/* General Styles */
.slider-container {
    position: relative;
    background-color: #f1f7e8;
    margin-bottom: 3vw;
    
  }
  
  .slider-heading {
    color: #0f2125;
    margin-bottom: 20px;
  }
  
  .slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .slider {
    display: flex;
    transition: transform 0.3s ease;
  }
  
  .slider-item {
    flex: 0 0 27.33%; /* Show 3 full items */
    margin-right: 20px;
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    text-align: left;
  }
  
  .slider-item i {
    font-size: 5rem;
    color: #0F5BAA;
  }
  
  .slider-item h4 {
    margin: 15px 0;
  }
  
  /* Navigation Arrow Styles - Positioned Below the Slider */
  .slider-nav {
    text-align: center;
    margin-top: 20px;
  }
  
  .slider-button {
    background: #0F5BAA;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 15%;
    cursor: pointer;
    margin: 0 10px;
    font-size: 20px;
  }
  
  .slider-button:hover {
    background-color: #004085; /* Dark blue for hover effect */
  }
  
  /*contact*/
  .contact-action {
    background-color: #11452c;
    padding: 2vw 5vw 7vw;
    position: relative;
  } 

  .contact-action:before {
    border-bottom: 1px solid transparent;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(images/green-curve.svg);
    background-repeat: no-repeat;
    content: "";
    background-size: cover;
    position: absolute;
    left: 0;
    top: -6vw;
    height: 6vw;
    width: 100%;
    z-index: 1;
}


  .titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .line-one, .line-two {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .contact-image.eye {
    width: 200px;
    height: 130px;
    position: relative;
  }
  
  .contact-image.eye img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: url("images/eye-mask.svg");
    mask-image: url("images/eye-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  h1.super, h2.super {
    font-size: 100px;
    line-height: 1.1;
}
  .text-light {
      color: #fafcf4;
  }
  
  .contact-action .contact-wysiwyg p {
    color: #fafcf4;
}
  p.large {
      font-size: 18px;
      line-height: 24px;
  }

  .footer-section{
    position: relative;
  }
  .footer-section {
    padding: 0px 10vw 0 170px;
  }
  
  .footer-section:before {
    border-bottom: 1px solid transparent;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(images/transparent-green-curve.svg);
    background-repeat: no-repeat;
    content: "";
    background-size: cover;
    position: absolute;
    left: 0;
    top: -6vw;
    height: 6vw;
    width: 100%;
    z-index: 1;
}


/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 33, 37, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 999;
}

.popup-overlay.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  pointer-events: all;
}


.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
}


.popup-content h2 {
  margin-bottom: 20px;
  color: #0f2125;
  font-size: 28px;
  font-family: 'Blacker', serif;
  text-align: center;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #000;
}

/* Form Styling */
#popupForm input,
#popupForm textarea {
  background-color: #f1f7e8;
  width: 100%;
  padding: 7px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: #dc4c64;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #dc4c64;
}

.features-img img {
  height: 350px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner {
    padding: 50px 8vw 20px;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    text-align: center;
  }

  .banner-content {
    max-width: 90%;
  }
  .footer-section {
        padding: 0px 8vw 0 98px;
    }
    
    .contact-action {
    padding: 3vw 10vw 10vw;
    }

  .btn-lg {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
  
  .section-class {
    padding: 62px 3vw 0 33px;
}
.section-class-banner {
    padding: 62px 3vw 0 33px;
}

.features-img img {
    height: 21vh;
}
h1.super, h2.super {
    font-size: 54px;
    line-height: 1.1;
}
.slider-item {
    flex: 0 0 47.33%;
}

.section-slider-class {
    padding: 99px 0px 5vw 60px;
}
}


  
  @media (max-width: 768px) {
    .box {
      margin-bottom: 20px;
    }
    
    .banner-content p {
    font-size: 0.9rem;
    }
     .banner.scrolled .banner-image {
   transform: scale(1.02); /* Zoom in only */
    transition: transform 0.5s ease;/* Zoomed out effect */
  }
    .contact-info,
    .btn-header {
      display: none !important;
    }
  
    .mobile-icons {
      display: flex !important;
      gap: 1rem;
    }
    .section-class-banner {
      padding: 65px 3vw 0 19px;
    }
    .section-class {
      padding: 65px 3vw 0 19px;
    }
    .section-slider-class {
      padding: 65px 6vw 20px 29px;
  }

  .slider-item {
    flex: 0 0 100%;   
    padding: 20px;    
    border-radius: 20px; 
  }

  .eye1 {
    display: none;
  }

  h1.super, h2.super {
    font-size: 40px;
 }

  h4{
    font-size: 24px;
  }
  p {
    font-size: 14px;
  }
  

  .faq-section img {
    height: 69vw;
    width: 78vw;
    margin-bottom: 6px;
  }

  h2 {
    font-size: 30px;
    }
    
    .footer-section {
    padding: 0px 10vw 0 37px;
  }
  }

  