@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'lora';
  src: url('./fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

.container {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
/* Full-screen sections that the page will snap to */
section {
  scroll-snap-align: start;  /* Snap each section to the top */
  margin-top: 130px !important;
  margin-bottom: 130px !important;
}
@media (max-width: 768px) {
  section {
    scroll-snap-align: start;  /* Snap each section to the top */
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
.dashed-border-yellow-corners {
  position: relative;
  border: 2px dashed rgba(0, 0, 0, 0.4);
  padding: 10px;
}

.dashed-border-yellow-corners::before,
.dashed-border-yellow-corners::after,
.dashed-border-yellow-corners .corner-top-left,
.dashed-border-yellow-corners .corner-top-right,
.dashed-border-yellow-corners .corner-bottom-left,
.dashed-border-yellow-corners .corner-bottom-right {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: #FFC20E;
  border: 2px solid black;
}

.dashed-border-yellow-corners::before {
  top: -5px;
  left: -5px;
}

.dashed-border-yellow-corners::after {
  bottom: -5px;
  right: -5px;
}

.dashed-border-yellow-corners .corner-top-left {
  top: -5px;
  left: -5px;
}

.dashed-border-yellow-corners .corner-top-right {
  top: -5px;
  right: -5px;
}

.dashed-border-yellow-corners .corner-bottom-left {
  bottom: -5px;
  left: -5px;
}

.dashed-border-yellow-corners .corner-bottom-right {
  bottom: -5px;
  right: -5px;
}

/* Body style */
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Poppins';
  overflow-x: hidden;
}
/* Navbar Custom Styling */
.navbar {
  margin: 25px auto;
  border: 2px dashed rgba(0, 0, 0, 0.4);
  background-color: #fff;
  position: relative;
}

.navbar-nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #453f3f;
  padding: 15px 25px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #008ccf !important;
  transform: translateX(5px);
}

/* Hamburger Menu */
.hamburger-checkbox {
  display: none;
}
.navbar-brand img{
  margin-top: 5px;
  margin-bottom: 5px;
}
.hamburger-lines {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 20px;
  margin-top:5px;
}

.hamburger-lines span {
  background-color: #453f3f;
  height: 2px;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Transformations for Hamburger Menu Animation to form X */
.hamburger-checkbox:checked + .hamburger-lines .line1 {
  transform: rotate(45deg) translateY(6px) translateX(4px);
}

.hamburger-checkbox:checked + .hamburger-lines .line2 {
  opacity: 0;
}

.hamburger-checkbox:checked + .hamburger-lines .line3 {
  transform: rotate(-45deg) translateY(-8px) translateX(5px);
}

/* Navbar on small screens */
@media (max-width: 991px) {
  .hamburger-lines {
    display: flex;
  }

  /* Custom Navbar Collapse */
  .custom-navbar-collapse {
    background-color: #fff;
    margin-top: 0;
    padding: 0;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  /* When checkbox is checked, slide navbar from top */
  .hamburger-checkbox:checked ~ .custom-navbar-collapse {
    max-height: 400px; /* Adjust this based on your navbar content height */
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 12px 25px;
    font-size: 20px;
    text-align: center;
  }

  /* Ensure the next section moves down */
  .hamburger-checkbox:checked ~ .custom-navbar-collapse ~ section {
    margin-top: 400px; /* Adjust based on the navbar height */
    transition: margin-top 0.4s ease-out;
  }

  /* Adjusting the transition speed */
  .navbar-nav .nav-item .nav-link {
    transition: color 0.2s ease, transform 0.2s ease;
  }
}

/* For larger screens */
@media (min-width: 992px) {
  .custom-navbar-collapse {
    display: flex !important;
    max-height: none;
    padding: 0;
  }
  .navbar-nav {
    flex-direction: row;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
  padding: 30px 0;
}

.text-content {
  width: 50%;
}

.text-content h1 {
  font-family: 'lora', sans-serif;
  font-size: 50px;
  color: #008ccf !important;
  margin-bottom: 20px;
  font-weight: 500 !important;
}

.text-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.cta-button {
  position: relative;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: black !important;
  padding: 0; 
  width: 170.8px;
  height: 49.1px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #008ccf !important;
  color: white !important;
  transform: scale(1.05);
}

.video-frame {
  position: relative;
  width: 50%;
  height: 350px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(0, 0, 0, 0.4);
}

.video-frame video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border: none;
}
/* Media Queries */
@media (max-width: 1200px) {
  .container {
      padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 60px 0;
      gap: 30px;
  }

  .text-content {
      max-width: 100%;
      margin-top: 20px;
  }

  .video-frame {
      width: 100%;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 20px;
  }

  .hero-section {
      padding: 40px 0;
  }

  .cta-button {
      padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero-section {
      padding: 30px 0;
      min-height: auto;
  }

  .text-content h1 {
      margin-bottom: 1rem;
  }

  .text-content p {
      margin-bottom: 1.5rem;
  }

  .video-frame {
      aspect-ratio: 16/12;
  }
}
/* Basic Styles for Layout */
.brand-logos {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}F

.logo-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  animation: scroll-logos 20s linear infinite;
  flex-wrap: nowrap;
}

.logo-item {
  flex-shrink: 0;
  margin: 0 15px;
}

.logo-item img {
  height: 85px;
}

/* Cloudy Effect */
.cloud-left, .cloud-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.cloud-left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.cloud-right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

/* Animation for logo scrolling */
@keyframes scroll-logos {
  0% {
    transform: translateX(100%);  /* Start from right */
  }
  100% {
    transform: translateX(-100%); /* Move logos to the left */
  }
}
/* Media Queries */
@media (max-width: 1200px) {
  .brand-logos {
      padding: 1.5rem 0;
  }

  .logo-slider {
      animation-duration: 20s;
  }
}

@media (max-width: 992px) {
  .section-title {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
  }

  .logo-slider {
      animation-duration: 20s;
  }

  .cloud-left,
  .cloud-right {
      width: 35%;
  }
}

@media (max-width: 768px) {
  .brand-logos {
      padding: 1.25rem 0;
      margin: 2rem 0;
  }

  .logo-item {
      margin: 0 0.75rem;
  }

  .logo-slider {
      animation-duration: 20s;
  }

  .cloud-left,
  .cloud-right {
      width: 30%;
  }
}

@media (max-width: 576px) {
  .brand-logos {
      padding: 1rem 0;
      margin: 1.5rem 0;
  }

  .section-title {
      font-size: 1.125rem;
      margin-bottom: 1.875rem;
  }

  .logo-item {
      margin: 0 0.5rem;
  }

  .logo-slider {
      animation-duration: 20s;
  }

  .cloud-left,
  .cloud-right {
      width: 25%;
  }
}

/* Pause animation on hover */
@media (hover: hover) {
  .logo-slider:hover {
      animation-play-state: paused;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .logo-slider {
      animation: none;
  }
}

/* about Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
  padding: 30px 0;
}

.text-content {
  width: 50%;
}

.text-content h1 {
  font-family: 'lora', sans-serif;
  font-size: 50px;
  color: #008ccf !important;
  margin-bottom: 20px;
  font-weight: 500 !important;
}

.text-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  padding: 1px;
}

.cta-button {
  position: relative;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: black !important;
  padding: 0; 
  width: 170.8px;
  height: 49.1px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #008ccf !important;
  color: white !important;
  transform: scale(1.05);
}

.video-frame {
  position: relative;
  width: 50%;
  height: 350px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(0, 0, 0, 0.4);
}

.video-frame video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border: none;
}

@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 20px 0;
  }

  .text-content {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .text-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .text-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .cta-button {
    width: auto;
    padding: 12px 30px;
    font-size: 20px;
  }

  .video-frame {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 10px 0;
  }

  .text-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .text-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cta-button {
    width: auto;
    padding: 10px 25px;
    font-size: 18px;
  }

  .video-frame {
    height: 100px;
  }
}

/* services  */
.scroll-container {
  overflow-x: auto;
  cursor: default;
  -webkit-overflow-scrolling: touch;
  will-change: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  width: 100%;
  padding-left: 5.5rem; /* Ensure the first card is not touching the edge */
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.card-container {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
  min-width: max-content;
  transform-origin: left center;
}

.card-title {
  color: #2b8bc0;
  font-family: 'lora', sans-serif;
  font-weight: 600;
  font-size: 30px;
}

.custom-card {
  flex: none;
  transition: transform 0.2s ease;
  margin: 5px;
  width: 400px;
}

.grabbing {
  cursor: grabbing !important;
}
.card-body {
  overflow: hidden;
  padding: 15px;
}

.elastic {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

#services .text-content {
  font-family: 'lora', sans-serif;
  font-size: 50px;
  color: #008ccf !important;
  margin-bottom: 20px;
  font-weight: 500 !important;
  text-align: center;
}
 /* Media Queries */
        @media (max-width: 1200px) {
            .scroll-container {
                padding-left: 4rem;
            }
        }
        @media (max-width: 992px) {
            .services {
                padding: 4rem 1.5rem;
            }

            .scroll-container {
                padding-left: 3rem;
            }

            .custom-card {
                width: 320px;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 3rem 1rem;
            }

            .scroll-container {
                padding-left: 2rem;
            }

            .text-center {
                margin-bottom: 2rem;
            }

            .custom-card {
                width: 280px;
            }
        }

        @media (max-width: 480px) {
            .services {
                padding: 2rem 1rem;
            }
            #services .text-content {
              font-size: 37px;
            }
            .lead{
              font-size: 16px;
            }
            .scroll-container {
                padding-left: 1rem;
            }

            .card-container {
                gap: 0.75rem;
            }

            .custom-card {
                width: 260px;
            }
        }
/* Testimonials Section */
#testimonial{
  margin-top: 50px;
  margin-bottom: 50px;
}
.testimonials h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'lora';
  color: #008ccf !important;
}
.testimonial-carousel {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.testimonial-cards {
  display: inline-flex;
  gap: 20px;
  animation: scrollCarousel 20s linear infinite;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel {
  scrollbar-width: none;
}

.testimonial {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
  margin: 10px;
  border-radius: 10px;
  flex: 0 0 300px;
  display: inline-block;
  white-space: normal; /* Allow text wrapping inside cards */
}

.testimonial-rating {
  margin-bottom: 15px;
  color: #ff9800;
  font-size: 1.2rem;
}

.testimonial p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
      max-width: 960px;
  }

  .testimonial {
      flex: 0 0 280px;
  }
}

@media (max-width: 992px) {
  .container {
      max-width: 720px;
  }

  #testimonial {
      padding: 3rem 0.5rem;
  }

  .testimonial-cards {
      gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
      max-width: 540px;
      padding: 0 0.5rem;
  }

  #testimonial {
      padding: 2.5rem 0;
  }

  .testimonial {
      flex: 0 0 270px;
      padding: 1.5rem 1rem;
  }

  /* Keep the animation for auto-scrolling on mobile */
  .testimonial-cards {
      animation: scrollCarousel 20s linear infinite;
  }
}

@media (max-width: 576px) {
  .container {
      padding: 0 0.5rem;
  }

  #testimonial {
      padding: 2rem 0;
      margin: 1.5rem 0;
  }

  .testimonial {
      flex: 0 0 260px;
      padding: 1.25rem 1rem;
  }

  .testimonial-cards {
      gap: 0.75rem;
  }

  /* Keep the animation for auto-scrolling on small mobile screens */
  .testimonial-cards {
      animation: scrollCarousel 20s linear infinite;
  }
}

/* Pause animation on hover */
.testimonial-carousel:hover .testimonial-cards {
  animation-play-state: paused;
}

/* Touch device optimization */
@media (hover: none) {
  .testimonial-carousel {
      overflow-x: auto;
  }

  .testimonial-cards {
      animation: scrollCarousel 20s linear infinite;
  }
}

/* Carousel Animation */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Call-to-Action Section */
.cta {
  color: #fff;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.125rem);
  background-color: #2b8bc0;
  text-align: left;
  font-family: 'lora';
}

.cta h2 {
  margin-bottom: clamp(1rem, 3vw, 1.25rem);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.cta .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 1.875rem);
  border-radius: 0.75rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.cta .form-container,
.cta .map-container {
  flex: 1 1 400px;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.cta p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #fff;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  text-align:center;
}

.cta .cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.input-wrapper {
  position: relative;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  background: #fff;
  border-radius: 0.5rem;
}

.cta .cta-form input,
.cta .cta-form textarea {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 0.9375rem);
  border: none;
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #333;
  transition: all 0.3s ease;
}

.cta_btns {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.cta .cta-form button {
  padding: clamp(0.75rem, 2vw, 0.9375rem);
  min-width: 120px;
  background-color: #fff;
  color: #1b1515 !important;
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cta .cta-or {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #fff;
  margin: 0 clamp(0.5rem, 1.5vw, 1.25rem);
  margin-top: 20px;
}
/* Map Container */
.cta .map {
  width: 100%;
  height: 517px;
  position: relative;
}

.cta .map iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.input-wrapper {
  position: relative;
  margin-bottom: 20px;
  background:#fff;
}

/* Media Queries */
@media (max-width: 1200px) {
  .cta .container {
      max-width: 960px;
  }

  .cta .form-container,
  .cta .map-container {
      flex: 1 1 350px;
  }
}

@media (max-width: 992px) {
  .cta .container {
      max-width: 720px;
  }

  .cta .form-container,
  .cta .map-container {
      flex: 1 1 300px;
  }

  .cta .map {
      height: 400px;
  }
}

@media (max-width: 768px) {
  .cta {
      padding: 2rem 1rem;
  }

  .cta .container {
      flex-direction: column;
      max-width: 540px;
  }

  .cta .form-container,
  .cta .map-container {
      flex: 1 1 100%;
  }

  .cta .map {
      height: 350px;
  }

  .cta .cta-form input,
  .cta .cta-form textarea {
      padding-right: 1rem;
  }

  .cta_btns {
      flex-direction: column;
      width: 100%;
  }

  .cta .cta-or {
     margin-top: 20px;
  }

  .cta .cta-form button {
      width: 100%;
  }
}

@media (max-width: 576px) {
  .cta {
      padding: 1.5rem 0.75rem;
  }

  .cta h2 {
    font-size: 2.5rem;
    text-align:center;
  }

  .cta .map {
      height: 300px;
  }

  .input-wrapper {
      margin-bottom: 0.75rem;
  }
}

/* Hover effects */
@media (hover: hover) {
  .cta .form-container:hover,
  .cta .map-container:hover {
      transform: translateY(-5px);
  }

  .cta .cta-form button:hover {
      transform: scale(1.05);
      background-color: #ffc20e !important;
      color: black !important;
  }
}

/* Focus styles for accessibility */
.cta .cta-form input:focus,
.cta .cta-form textarea:focus {
  outline: 2px solid #ffd700;
  outline-offset: -2px;
}

/* Touch device optimization */
@media (hover: none) {
  .cta .form-container,
  .cta .map-container {
      transform: none !important;
  }
}
/* WhatsApp Floater */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  position: relative;
}

/* Icon */
.whatsapp-float svg {
  width: 50px;
  height: 50px;
}

/* Message Text */
.whatsapp-content p {
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #2b8bc0;
  border-radius: 20px;
  position: absolute;
  right: 70px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover Effect */
.whatsapp-float:hover .whatsapp-content p {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .whatsapp-float {
      bottom: 10px;
      right: 10px;
      width: 50px;
      height: 50px;
  }

  .whatsapp-float svg {
      width: 40px;
      height: 40px;
  }

  .whatsapp-content p {
      font-size: 12px;
      padding: 6px 10px;
      right: 55px;
  }
}

.footer {
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  text-decoration: none;
  scroll-snap-align: start; 
  margin-bottom: 100px !important;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1rem;
  position: relative;
  height: 100%;
}

.footer-section:not(:nth-child(3))::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10%;
  height: 80%;
  width: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 2px dashed rgba(0, 0, 0, 0.2);
}
.footer-logo {
  width: 150px;
  height: auto;
  max-height: 50px;
  margin-bottom: 1.5rem;
}

.footer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 300px;
}

.footer-section.links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 1rem 0;
}

.footer-section.links ul li {
  list-style: none;
  position: relative;
}

.footer-section.links ul li a{
  text-decoration: none;
  color: black;
}

.footer-section.links ul li:not(:last-child)::after {
  content: '|';
  margin-left: 1rem;
  color: rgba(0, 0, 0, 0.4);
}

.footer-section .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin-top: auto;
}

.footer-section .social-links li {
  list-style: none;
}

.footer-section .social-links a {
  color: #000;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.footer-section .social-links a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
}

.corner-top-right,
.corner-bottom-left {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #ffd700;
}

.corner-top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

.corner-bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

@media (max-width: 1024px) {
  .footer .container {
      gap: 1.5rem;
      padding: 1.5rem;
  }
  
  .footer-section {
      min-height: 250px;
  }
}

@media (max-width: 768px) {
  .footer .container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .footer-section {
      min-height: auto;
      padding-bottom: 2rem;
  }

  .footer-section:not(:last-child)::after {
      display: none;
  }

  .footer-section:not(:nth-child(3)) {
      border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
  }

  .footer-section .social-links {
      margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-section.links ul {
      flex-direction: column;
      gap: 0.75rem;
  }

  .footer-section.links ul li:not(:last-child)::after {
      display: none;
  }
}

/* Cookie Consent Popup Styles */
.cookie-consent-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: none; /* Hide by default */
  z-index: 9999;
  width: 80%;
  max-width: 600px;
  text-align: center;
}

.cookie-consent-popup .cookie-content p {
  margin: 0 0 15px;
  font-size: 1rem;
}

.cookie-consent-popup .cookie-content a {
  color: #ffc20e;
  text-decoration: none;
}

.cookie-consent-popup .accept-btn {
  background-color: #008ccf;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-consent-popup .accept-btn:hover {
  background-color: #006fa4;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .cookie-consent-popup {
    width: 90%;
    padding: 15px;
  }
  .cookie-consent-popup .cookie-content p {
    font-size: 0.9rem;
  }
  .cookie-consent-popup .accept-btn {
    font-size: 0.9rem;
  }
}


/* Modal Box */
.custom-modal {
  display: none;  /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.modal-content {
  text-align: center;
  color: #000;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #000;
}

.modal-content p {
  color: #000 !important;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

.custom-modal button {
  padding: 10px 20px;
  background: #008ccf !important;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.custom-modal button:hover {
  background: #008ccf !important;
}

.service-video {
  width: 100%;
  height: auto; /* keeps aspect ratio */
  object-fit: cover;
  max-height: 295px; /* mobile height limit */
}

@media (min-width: 768px) {
  .service-video {
    max-height: 472px; /* desktop height */
  }
}