@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  }


/* Mini Navbar styling */
.mini-navbar {
  width: 100%;
  background: linear-gradient(to bottom right, #2f4f6d, #14233c);
  color: #fff;
  text-align: end;
  padding: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 11;
  top: 0;
  left: 0;
}

.contact-info span {
  margin-right: 20px;
}

/* Navbar styling */
.navbar {
  position: sticky;
  width: 100%;
  top: 40px; /* Position it below the mini navbar */
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: white;
  color: #009688;
  transition: all 0.3s ease;
  z-index: 10;
}

.navbar-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #009688;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #163b6d;
}

.shrink .nav-link:hover {
  color: #ffffff;
}

/* Shrink effect */
.sky-whitelogo{
  display: none;
}

.shrink .skylogo {
    display: none;
}

.shrink .sky-whitelogo{
  display: flex;
}

.shrink .nav-links a {
    font-size: 16px;
}



.navbar.shrink {
  padding: 10px 40px;
  background: linear-gradient(to bottom right, #2f4f6d, #14233c);
  top: 0; /* Move navbar to the top when mini navbar is hidden */
}


/* Hamburger styling */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #009688;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive and dropdown */
@media (max-width: 768px) {
  .navbar-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      justify-content: center; /* Center vertically */
      align-items: center; /* Center horizontally */
      gap: 30px;
      background-color: rgba(0, 0, 0, 0.9);
      transition: all 0.3s ease;
  }

  .navbar-links.show {
      right: 0;
  }

  .hamburger {
      display: flex;
  }
}



/* progress bar */
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #001a2e;
}

/* whatsapp widget */

.whatsapp-widget {
  position: fixed;
  bottom: 100px; /* Adjust the distance from the bottom */
  right: 20px;  /* Adjust the distance from the right */
  z-index: 1000; /* Ensure it is above other content */
  animation: pump 1s infinite;
}

.whatsapp-widget img {
  width: 50px;  /* Adjust the size of the icon */
  height: 50px; /* Adjust the size of the icon */
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes pump {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}

@media only screen and (max-width: 480px) {
  #progress{
      z-index: 1;
  }
}

 /* Loading screen styling */
 #loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

/* Bottle container */
.bottle-container {
  position: relative;
  width: 100px;
  height: 280px; /* Adjusted height to fit the bottle cap */
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Bottle styling */
.bottle {
  width: 60px;
  height: 100px;
  border:  black;
  border-radius: 10px;
  background-color: #d1d1d1;
  position: relative;
  overflow: hidden;
}

/* Water inside the bottle */
.water {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: rgb(47, 142, 220);
  animation: fillWater 1s linear forwards;
}

/* Bottle cap styling */
.bottle-cap {
  width: 30px;
  height: 20px;
  background-color: black;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  position: absolute;
  top: 150px; /* Adjust to position it above the bottle */
  left: 34px; /* Center the cap */
}

/* Loading text */
p {
  margin-top: 20px;
font-size: 17px;
  color: #555;
}

/* Water filling animation */
@keyframes fillWater {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.body-container {
  color: #fff;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(to bottom right, #2f4f6d, #14233c);
}

@media (max-width: 1200px) {
  .body-container { 
    height: 100%;
  }
}

@media (max-width: 768px) {
  .body-container { 
    height: 90vh;
  }
}

@media (max-width: 480px) {
  .body-container { 
    height: 90vh;
  }
}




/* Unique Container Class */
.freeaqua-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  transition: all 0.5s ease;
  margin-bottom: 50px;
  margin-top: 50px;
}

/* Unique Text Section Class */
.freeaqua-text {
  flex: 1;
  padding: 20px;
  animation: freeaquaFadeInLeft 1s ease-out;
}

.freeaqua-text h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 100;
  margin-bottom: 1rem;
}


.freeaqua-text .freeaqua-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.freeaqua-text .freeaqua-button:hover {
  background-color: #444;
}

/* Unique Image Section Class */
.freeaqua-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: freeaquaFadeInRight 1s ease-out;
}

.freeaqua-image img {
    max-width: 100%;
    width: 300px;
}

/* Animations */
@keyframes freeaquaFadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes freeaquaFadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .freeaqua-image img {
    width: 245px;
}}


@media (max-width: 768px) {
  .freeaqua-container {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
      margin-bottom: 143px;
  }

  .freeaqua-text h1 {
      font-size: 2.5rem;
  }

  .freeaqua-text p {
      font-size: 1rem;
  }

  .freeaqua-image img {
      width: 250px;
  }
}

@media (max-width: 480px) {
  .freeaqua-text h1 {
      font-size: 2rem;
  }

  .freeaqua-image img {
      width: 200px;
  }
}


/* Container styling */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  position: relative;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);*/
}

/* Text content styling */
.about-content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.about-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 1.5em;
  color: #555;
  margin-bottom: 20px;
}

.highlight {
  color: #3a6186;
  font-weight: bold;
}

/* Paragraph styling */
.description,
.mission {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

/* Background image styling */
.about-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.2;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content h1,
.about-content h3,
.description,
.mission {
  opacity: 0;
  animation: fadeInUp 1.5s forwards;
}

.about-content h1 {
  animation-delay: 0.3s;
}

.about-content h3 {
  animation-delay: 0.6s;
}

.description {
  animation-delay: 0.9s;
}

.mission {
  animation-delay: 1.2s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2em;
  }

  .about-content h3 {
    font-size: 1.3em;
  }

  .description, .mission {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .about-content h1 {
    font-size: 1.8em;
  }

  .about-content h3 {
    font-size: 1.2em;
  }

  .description, .mission {
    font-size: 0.9em;
  }
}




.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 1rem;
}
.gallary__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.image__gallary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallary__col {
  display: grid;
  place-content: center;
  gap: 1rem;
}

.gallary__col img {
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.gallary__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallary__content > div {
  max-width: 400px;
}

.gallary__content .section__subtitle {
  margin-bottom: 2rem;
  line-height: 28px;
}


@media (width < 600px) {
  
  .gallary__container {
    grid-template-columns: repeat(1, 1fr);
  }

}


a{
  text-decoration: none;
}

.arav-service-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.arav-service-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.arav-service-header p {
  color: rgb(14, 176, 168);
  font-weight: 600;
  font-size: 40px;
  margin: 0;
}

.arav-service-header h1 {
  font-size: 32px;
  margin-top: 10px;
  color: black;
  font-weight: 300;
}

.arav-service-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.arav-service-card {
  background-color: #009688;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.arav-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}

.arav-service-title {
  font-size: 24px;
  background-color: #00695c;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.arav-service-description {
  font-size: 16px;
  margin: 0 0 20px;
  color: #e0f7fa;
}

.arav-learn-more-button {
  border-radius: 8px;
  border: none;
  background: #004d40;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.arav-learn-more-button:hover {
  background-color: #00332e;
}

.arav-size-info h2 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
}

/* Responsive Design */

/* Large screens (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .arav-service-container .col-lg-6 {
      max-width: 50%;
      flex: 0 0 50%;
  }
}

/* Medium screens (tablets, 992px and up) */
@media (max-width: 992px) {
  .arav-service-header p {
      font-size: 32px;
  }

  .arav-service-header h1 {
      font-size: 24px;
  }

  .arav-service-container {
      flex-direction: column;
  }

  .arav-service-card {
      padding: 30px;
  }
}

/* Small screens (phones, 768px and below) */
@media (max-width: 768px) {
  .arav-service-header p {
      font-size: 28px;
  }

  .arav-service-header h1 {
      font-size: 22px;
  }

  .arav-service-title {
      font-size: 20px;
  }

  .arav-service-description {
      font-size: 14px;
  }

  .arav-size-info h2 {
      font-size: 20px;
  }
}

/* Extra-small screens (phones, below 576px) */
@media (max-width: 576px) {
  .arav-service-header p {
      font-size: 24px;
  }

  .arav-service-header h1 {
      font-size: 20px;
  }

  .arav-service-title {
      font-size: 18px;
  }

  .arav-service-description {
      font-size: 13px;
  }

  .arav-learn-more-button {
      padding: 8px 16px;
  }

  .arav-size-info h2 {
      font-size: 18px;
  }
}


/* Feature Card Styling */
/* Basic Section Styling */
/* Basic Section Styling */
.feature-section {
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.feature-container {
  max-width: 1200px;
  margin: auto;
}

.feature-header {
  margin-bottom: 40px;
}

.subheading {
  font-size: 1rem;
  color: #0eb0a8;
  font-weight: 500;
}

.kan-main-title {
  font-size: 2.5rem;
  color: white;
  font-weight: 300;
  margin-bottom: 20px;
}

.feature-items {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: nowrap; /* No wrap by default */
}

/* Feature Card Styling */
.feature-card {
  flex: 1 1 23%; /* Each item takes up about 1/4 of the container */
  min-width: 220px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-title {
  font-size: 1.1rem;
  color: #0eb0a8;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */

/* Medium Screens (Tablets and Small Laptops) */
@media (max-width: 992px) {
  .kan-main-title {
    font-size: 2rem;
  }

  .feature-items {
    flex-wrap: wrap; /* Enable wrapping on medium screens */
  }

  .feature-card {
    flex: 1 1 45%; /* Two items per row */
    max-width: 48%;
  }
}

/* Small Screens (Large Phones) */
@media (max-width: 768px) {
  .kan-main-title {
    font-size: 1.8rem;
  }

  .feature-card {
    flex: 1 1 100%; /* One item per row */
    max-width: 100%;
  }
}

/* Extra Small Screens (Small Phones) */
@media (max-width: 576px) {
  .kan-main-title {
    font-size: 1.5rem;
  }

  .feature-container {
    padding: 20px 10px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.85rem;
  }
}


.skyit-footer {
  background-color: #2c3e50;
  padding: 20px;
  color: #fff;
  text-align: center;
  margin-top: 37px;
}

.skyit-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skyit-footer-social {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.skyit-social-icon {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.skyit-social-icon:hover {
  color: #3498db;
}

.skyit-facebook:hover { color: #3b5998; }
.skyit-instagram:hover { color: #e4405f; }
.skyit-youtube:hover { color: #ff0000; }
.skyit-twitter:hover { color: #1da1f2; }
.skyit-linkedin:hover { color: #0077b5; }

.skyit-footer-copyright {
  margin-top: 15px;
  font-size: 14px;
}


/* Main Section Styling */
        
      .box-wrapper1 {
            position: relative;
            display: flex;
            width: 768px;
            margin: auto;
            margin-top: 35px;
            border-radius: 30px;
        }
        /* Contact Information Styling */
        .info-wrap1 {
            width: 50%;
            height: 410px;
            padding: 40px;
            float: left;
            display: block;
            border-radius: 30px 0px 0px 30px;
            background: linear-gradient(144deg, rgba(206,215,222,1) 0%, rgba(76,156,173,1) 100%, rgba(220,222,233,1) 49%);
            color: #fff;
        }
        .info-title1 {
            text-align: left;
            font-size: 28px;
            letter-spacing: 0.5px;
        }
        .info-sub-title1 {
            font-size: 18px;
            font-weight: 300;
            margin-top: 17px;
            letter-spacing: 0.5px;
            line-height: 26px;
        }
        .info-details1 {
            list-style: none;
            margin: 60px 0px;
        }
        .info-details1 li {
            margin-top: 25px;
            font-size: 13.5px;
            color: #fff;
        }
        .info-details1 li i {
            background: #09617c;
            padding: 12px;
            border-radius: 50%;
            margin-right: 5px;
        }
        .info-details1 li a {
            color: #fff;
            text-decoration: none;
        }
        .info-details1 li a:hover {
            color: #09617c;
        }
        .social-icons6 {
            list-style: none;
            text-align: center;
            margin: 20px 0px;
            margin-right: 30px;
        }
        .social-icons6 li {
            display: inline-block;
        }
        .social-icons6 li i {
            background: #09617c;
            color: #fff;
            padding: 15px;
            font-size: 20px;
            border-radius: 22%;
            margin: 0px 5px;
            cursor: pointer;
            transition: all .5s;
        }
        .social-icons6 li i:hover {
            background: #fff;
            color: #000000;
        }
        /* Form Section Styling */
        .form-wrap5 {
            width: 65%;
            float: right;
            border-radius: 0px 30px 30px 0px;
            background: #ecf0f3;
            height: 410px;
        }
        .form-title3 {
            text-align: left;
            margin-left: 23px;
            font-size: 17px;
            letter-spacing: 0.5px;
            margin-top: 20px;
        }
        .form-fields1 {
            display: table;
            width: 100%;
            padding: 7px 5px;
        }
        .form-fields1 input,
        .form-fields1 select,
        .form-fields1 textarea {
            border: none;
            outline: none;
            background: none;
            font-size: 18px;
            color: #555;
            padding: 15px 15px 15px 15px;
            width: 100%;
        }
        .form-group1 {
            height: 44px;
            width: 90%;
            padding: 0px 30px;
            margin: 14px 12px;
            border-radius: 10px;
            box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
        }
        .submit-button1 {
          width: 46%;
          height: 40px;
          margin: 0px 12px;
          border-radius: 10px;
          font-size: 20px;
          font-weight: 500;
          outline: none;
          border: none;
          cursor: pointer;
          color: #fff;
          text-align: center;
          background: #277ebc;
          box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
          transition: .5s;
          margin-left: 90px;
        }
        .submit-button1:hover {
            background: #000000;
        }
       
   

    @media (max-width: 768px) {
      .box-wrapper1 {
        flex-direction: column;
        width: 90%;
      }
      .info-wrap1,
      .form-wrap5 {
          width: 100%;
          padding: 20px;
          text-align: center;
          border-radius: 8px;
          height: 100%;
      }
      .info-title1, .form-title3 {
          text-align: center;
      }
      .info-details1, .social-icons6 {
          justify-content: center;
          text-align: center;
      }
      .info-details1 li {
          text-align: center;
      }
  }
   

  /* Container Styling */
    .sky-section {
        display: flex;
        justify-content: center;
        padding: 40px 20px;
        background-color: #f9f9f9;
    }

    /* Inner Container with Max Width */
    .sky-content {
        display: flex;
        max-width: 1200px;
        width: 100%;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .sky-image {
        width: 300px;
      }
    }

    /* Image Styling */
    .sky-image {
        flex: 1 1 400px;
        max-width: 500px;
        height: auto;
    }

    /* Text Container */
    .sky-text {
        flex: 1 1 400px;
        max-width: 600px;
    }

    /* Heading Styling */
    .sky-heading {
        color: #0eb0a8;
        font-size: 40px;
        margin-bottom: 20px;
    }

    /* Paragraph Styling */
    .sky-description {
        font-size: 19px;
        color: #333;
        margin-bottom: 10px;
        text-align: justify;
    }

    /* Quote Button */
    .getquote-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #0eb0a8;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 20px;
        cursor: pointer;
    }

    .getquote-btn:hover{
      background-color:black;
    }

    /* Contact Text */
    .contact-text {
        margin-top: 20px;
        color: #333;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .sky-heading {
            font-size: 30px;
        }
        .sky-description {
            font-size: 17px;
        }
    }


    /* Popup form container */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease;
  z-index: 22;
}

.form-container {
  background: #f0faff;
  padding: 1.5rem;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  max-width: 100%;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4d4d;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background: #e63946;
}

/* Form header */
.form-header {
  width: 100%;
  text-align: center;
  color: #0077b6;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Flex row container */
.form-row {
  
  gap: 1rem;
  flex-wrap: wrap;
}

/* Form inputs and select */
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.3rem;
  color: #333;
  font-size: 0.9rem;
}

input, select {
  padding: 0.7rem;
  border: 1px solid #b3dff7;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

/* Phone input with prefix */
.phone-input-container {
  display: flex;
  align-items: center;
}

.phone-prefix {
  padding: 0.7rem;
  background-color: #e6f5ff;
  border: 1px solid #b3dff7;
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  color: #333;
  min-width: 50px;
  text-align: center;
}

.phone-input {
  border-radius: 0 5px 5px 0;
  border-left: none;
  width: 100%;
}

/* Get Quote button */
.get-quote-btn {
  padding: 0.8rem 2rem;
  background: #0077b6;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-left: 310px;
  margin-top: 20px;
}

.get-quote-btn:hover {
  background: #005f8a;
  box-shadow: 0 4px 12px rgba(0, 95, 138, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .get-quote-btn {
    margin-left: 10px;
  }
}

/* Show popup */
.popup-overlay.show {
  display: flex;
}

.aqua-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 25;
}

.aqua-popup-content {
  background-color: white;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.aqua-popup-icon {
  background-color: #4CAF50; /* Green */
  color: white;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.aqua-popup-icon-check {
  font-size: 24px;
}

.aqua-popup-heading {
  color: #333;
  margin: 0 0 10px;
}

.aqua-popup-message {
  color: #666;
  font-size: 14px;
}

.aqua-popup-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.aqua-popup-button:hover {
  background-color: #45a049;
}

.aqua-hidden {
  visibility: hidden;
  opacity: 0;
}

.aqua-popup.aqua-visible {
  visibility: visible;
  opacity: 1;
}