    html {
  scroll-behavior: smooth;
}
.whatsapp-float {
  text-decoration: none;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float:hover {
    background-color: #1ebea5;
    text-decoration: none;
    color: #fff;
  }
  .scroll-down-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.scroll-down-btn {
  width: 40px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
  animation: bounce 2s infinite;
}

.scroll-down-btn span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-top: 10px;
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(15px);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

.scroll-down-btn:hover span {
  box-shadow: 0 0 10px #fff, 0 0 20px #0ff;
}

.indust img{
  width: 80px;
    height: 80px;
}
.indust h1 {
    font-size: 15px;
    padding-top: 10px;
    font-weight: 600;
    color: #fff;
}
.less {
    padding-left: 0px;
    padding-right: 0px;
    border:1px solid #fff;
    padding: 20px;
    text-align: center;
}
body {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  background-color: #fff !important;
}
h1,h2,h3,h4,h5,h6,a,p,li,label{
    font-family: Poppins, sans-serif !important;
}
a{
  text-decoration: none;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /*padding: 20px;*/
  box-sizing: border-box;
  transition: all 0.3s ease;;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 16px 24px;
  /*border-radius: 50px;*/
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Right-to-left animation overlay */
/*.header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateX(100%) scale(0.85);
  opacity: 0;
  color: #000;
  transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
  z-index: -1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}*/

/*.promo-banner::before {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .promo-banner::after {
            content: "";
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }*/

        .promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black with 0.3 opacity */
    z-index: 1;
}

.promo-banner > * {
    position: relative;
    z-index: 2; /* Ensures content stays above the overlay */
}

.header.scrolled .header-container::before {
/*  transform: translateX(0) scale(1);
  opacity: 1;*/
}

.logo {
height:48px !important;
width: 100%;
  transition: color 0.3s ease;
  z-index: 1;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size:18px;
  transition: color 0.3s ease;
  z-index: 1;
  transition: 0.3s ease-in-out;

}
.desktop-nav a:hover{
  color: #00c6ff;
  transform: scale(1.1);
}

.button-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-button {
  background-color: #000;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 500;
}

.mobile-menu.open {
  right: 0;
}

.mobile-cta-button {
  background-color: white;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
}

.top-banner {
    background: linear-gradient(135deg, #0f0f0f69, #292929);
    color: #fff;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    box-shadow: 0px 4px 10px rgba(0, 247, 255, 0.2);
    backdrop-filter: blur(100px);
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.info {
    font-size: 14px;
    color: #fff;
}
.contact {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.contact:hover {
    text-shadow: 0px 0px 8px #00f7ff;
}
.social-icons2 {
    display: flex;
    gap: 10px;
}
.social-icons2 .social-hover {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.social-icons2 .social-hover i {
    color: #fff;
    transition: 0.3s;
}
.social-icons2 .social-hover:hover {
    background: #00f7ff;
    box-shadow: 0px 0px 10px #00f7ff;
}
.social-icons2 .social-hover:hover i {
    color: #1c1c1c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info {
        display: none;
    }
    .social-icons2{
      display: none;
    }
    .banner-content {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    .social-icons2 {
        order: 3;
    }
}


/* Scrolled state styles */
/*.header.scrolled .logo {
  color: white;
}

.header.scrolled .desktop-nav a {
  color: white;
}

.header.scrolled .cta-button {
  background-color: white;
  color: black;
}

.header.scrolled .hamburger span {
  background-color: white;
}*/

/* Mobile responsiveness */

.cth{
    font-size: 30px;
  font-weight: 700;
  color: #00c6ff;
  border-left:6px solid #00c6ff;
  border-radius: 30px;
  padding-left: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
  .imc{
    margin-top:50px !important;
  }
@media (max-width: 768px) {
  .imc{
    margin-top: 0 !important;
  }
  .contact{
      font-size:12px!important;
  }
	.indust h1 {
    font-size: 13px;
}
  .ctth{
    font-size: 24px !important;
      font-weight: 500 !important;
  }
    .cth{
    font-size: 24px !important;
    font-weight: 500 !important;
  }
  .desktop-nav {
    display: none;
  }
  .header-container{
      padding:3px 24px;
  }
  .lst{
    font-size: 11px !important;
  }

  .hamburger {
    display: block;
  }

  .cta-button {
    display: none;
  }


  /* Hamburger animation when open */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
/*header end*/



/*banner css*/
 .promo-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 5%;
    margin-top: 132px;
      background: url(../img/banner.jpg);
  }

  .promo-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 3rem!important;
    z-index: 2;
    max-width: 500px;
    color: #fff;
  }
#form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            opacity: 0;
            animation: fadeIn 1.5s ease forwards 1.6s;
            color: #fff;
            max-width: 500px;
        }

        #form input,#form textarea {
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            border: none;
  outline: none;
  border-radius: 15px !important;
        }
#form input:focus,
#form textarea:focus {
  box-shadow: none !important;
}
#form input::placeholder,
#form textarea::placeholder {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-left: 50px !important;
}


  .promo-content h1 {
    font-size:31px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    opacity: 0;
    animation: slideLeft 1.5s ease forwards 1s;
  }

  .promo-content h1 span {
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
  }

  .promo-content ul li {
    font-size: 1.2rem;
    opacity: 0;
    animation: slideRight 1.5s ease forwards 1.3s;
  }

  .promo-btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    background: linear-gradient(to right, #00f7ff, #0077ff);
    color: #000000;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 10px #00f7ff80;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.3s ease forwards 1.6s;
  }

  .promo-btn:hover {
    box-shadow: 0 0 20px #00f7ff;
    transform: scale(1.05);
    background: linear-gradient(to right, #00f7ff, #00c2ff);
    color: #000;
  }
.promo-btn:hover i {
  transform: translateX(5px); /* right shift animation on hover */
}
.angled-arrow {
  transform: rotate(-40deg); /* Arrow will tilt upward-right */
  margin-left:5px;
  transition: transform 0.3s ease;
}

.promo-btn:hover .angled-arrow {
  transform: rotate(-30deg) translateX(5px); /* optional hover movement */
}


.logo-carousel .owl-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

  /* Animations */
  @keyframes zoomOutImage {
    to {
      transform: scale(1);
    }
  }

  @keyframes slideLeft {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideRight {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .promo-banner {
      height: auto;
      padding:20px 10px;
      margin-top: 85px;
      /*border-radius: 20px;*/
    }
.promo-content{
  padding:25px !important;
}
    .promo-content h1 {
      font-size: 1.3rem !important;
    }
 .promo-content ul li{
     font-size: 0.84rem;
 }
 .mnh{
  font-size: 20px !important;
 }
    .promo-content p {
      font-size: 1rem !important;
    }

    .promo-btn {
      padding: 10px 24px;
      font-size: 0.7rem;
    }
    #form{
      margin-top: 30px;
    }
    .section-title{
     font-size: 20px !important;
     margin: 0 0 20px 0 !important;
    }
    .promo-btn2 {
        display: block !important; 
        text-align: left !important; 
        margin-left: 0 !important;
        width: fit-content !important;
    }
}

  /*why choose us*/
  #why-us {
    background: url('../img/Why choose us 03.jpg') no-repeat center center/cover !important;
    /*position: relative;*/
    z-index: 1;
    padding: 50px 20px;
}

.why-choose-us {
    color: white;
    text-align: center;
}

/*.why-choose-us .overlaye {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}*/

/*.why-choose-us .container-fluid2 {
    position: relative;
    z-index: 2;
}*/


.box {
  cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.why-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #00c6ff, #0072ff); /* 🟠 Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.why-item span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #003366; /* 🔵 Dark Blue */
}

p.lead {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: #0ff; /* 🟠 Orange */
}
    .about{
      padding:20px;
    }
    .whh{
      display: none;
    }
    .whm{
      margin-top: 90px !important;
    }

    @media (max-width: 768px) {
         .about{
      padding:0 10px !important;
    }
    .whm{
      margin-top: 20px !important;
    }
    .whh{
   display: block !important;
   font-size:35px;
   font-weight: bold;
    }
    #why-us {
background: linear-gradient(to right, #55addb, #5dbcdc)!important;
    }
    .why-choose-us{
      height: 100% !important;
    }
     .about img{
      margin-top: 20px;
     }
      .swiper-slide {
        display: flex;
        justify-content: center;
      }
    }

.animated-bg-shapes::before{
  content: '';
  position: absolute;
  border-radius: 50%;
}

.animated-bg-shapes::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(#00c6ff66, transparent);
  top: -100px;
  left: -100px;
  animation: pulse 6s infinite;
}

/*.animated-bg-shapes::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(#0072ff44, transparent);
  bottom: -80px;
  right: -80px;
  animation: pulse 5s infinite alternate;
}*/

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

@media (max-width: 768px) {
  .grand-product-intro {
    height: auto;
    padding: 80px 20px;
    text-align: center;
  }

  .grand-product-intro .container {
    flex-direction: column-reverse;
  }

  .intro-heading {
    font-size:1.2rem;
    text-align: left;
  }
  .intro-subheading{
        text-align: left !important;
        font-size: 1rem;
        margin-top: -10px;
        margin-bottom: 10px;
  }

  .intro-image img {
    width: 200px;
    margin-bottom: -40!important;
  }
  .benefits-grid {
    gap: 15px !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-heading h2{
    font-size: 26px !important;
  }
  .testimonial-heading p{
    font-size: 13px !important;
    font-weight: normal !important;
  }
}




/*contact*/
#contact-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f1f5ff, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Balloons */
.balloon {
  position: absolute;
  width: 100px;
  height: 140px;
  background: radial-gradient(#ffe0ec, #ffbad6);
  border-radius: 50% 50% 45% 45%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
  opacity: 0.5;
}

.balloon-left {
  top: -40px;
  left: -30px;
}

.balloon-right {
  bottom: -50px;
  right: -30px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Gradient Circles */
.circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #a4c8ff, #ffffff);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.3;
}

.circle-top-left    { top: 20px; left: 10px; }
.circle-top-right   { top: 20px; right: 10px; }
.circle-bottom-left { bottom: 20px; left: 10px; }
.circle-bottom-right{ bottom: 20px; right: 10px; }

/* Container */
#contact-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f1f5ff, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Balloons - Updated Soft Design */
.balloon {
  position: absolute;
  width: 120px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, #ffd2e5, #ffb3cc);
  border-radius: 60% 60% 50% 50%;
  box-shadow: 0 4px 15px rgba(255, 179, 204, 0.4);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.balloon-left {
  top: -40px;
  left: -50px;
}

.balloon-right {
  bottom: -60px;
  right: -50px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

/* Decorative Gradient Circles */
.circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #a4c8ff, #ffffff);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.25;
}

.circle-top-left    { top: 20px; left: 10px; }
.circle-top-right   { top: 20px; right: 10px; }
.circle-bottom-left { bottom: 20px; left: 10px; }
.circle-bottom-right{ bottom: 20px; right: 10px; }

/* Container */
.cnt {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeDown 1s ease;
}

.contact-header h2 {
  font-size: 42px;
  color: #111;
  font-weight: bold;
}

.contact-header h2 span {
  color: #00c6ff;
}

.contact-header p {
  color: #555;
  font-size: 15px;
}

/* Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  animation: fadeUp 1s ease;
}

.info-side {
  flex: 1;
  min-width: 260px;
}

.form-side {
  flex: 1;
  min-width: 260px;
}

/* Info Block */
.info-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #c4d4ff, #e6eeff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #333;
  transition: transform 0.3s;
}

.info-block:hover .info-icon {
  transform: scale(1.1);
}

.info-block h4 {
  margin: 0;
  color: #111;
  font-size: 16px;
}

.info-block p {
  color: #555;
  font-size: 14px;
}

/* Stylish Inputs */
.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container input,
.input-container textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(76, 132, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(76, 132, 255, 0.1);
  outline: none;
}

.input-container textarea {
  resize: none;
}

.input-container label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 14px;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
}

.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label,
.input-container textarea:focus + label,
.input-container textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 14px;
  font-size: 12px;
  color: #00c6ff;
  background: #fff;
  padding: 0 6px;
}

/* Submit Button */
.submit-btn {
  padding: 12px 24px;
  border: none;
  background: linear-gradient(to right, #00c6ff, #0077ff);
  color: #fff;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(76, 132, 255, 0.3);
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #00c6ff, #0077ff);
  box-shadow: 0 0 10px #00f7ff;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .balloon-left, .balloon-right {
    display: none;
  }
}

/*footer*/
.footer {
  margin:5px 5px 5px 5px;
  border-radius: 30px;
    background: radial-gradient(circle,#333,#111, #000);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 50px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.footer::before {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .footer::after {
            content: "";
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0px 0px 8px #fff;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 12px;
}
.footer-section ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
}
.footer-section ul li a:hover {
    color: #00f7ff;
    text-shadow: 0px 0px 10px #00f7ff;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.brand {
    color: #fff;
    font-weight: bold;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    display: inline-block;
    margin: 3px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease-in-out;
    position: relative;
}
.social-icons2 a {
    display: inline-block;
    margin: 3px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease-in-out;
    position: relative;
    color: #000;
}
.social-icons a i {
    color: #fff;
}
.social-icons a:hover {
    background: #00f7ff;
    box-shadow: 0px 0px 20px #00f7ff;
    transform: scale(1.3);
}
.social-icons a:hover i {
    color: #121212;
}
.glow-text {
  font-size: 30px !important;
    animation: flicker 1.5s infinite alternate;
    border-bottom: 2px solid #fff;
    color: #fff !important;
    font-weight: bold;

}
@keyframes flicker {
    0% { text-shadow: 0 0 5px #aaa, 0 0 10px #aaa; }
    100% { text-shadow: 0 0 15px #aaa, 0 0 25px #aaa; }
}
.bubbles span {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            bottom: -50px;
            animation: floatBubble 5s infinite linear;
        }
        @keyframes floatBubble {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh);
                opacity: 0;
            }
        }
        .bubbles span:nth-child(2) { width: 25px; height: 25px; animation-duration: 6s; left: 20%; }
        .bubbles span:nth-child(3) { width: 30px; height: 30px; animation-duration: 7s; left: 40%; }
        .bubbles span:nth-child(4) { width: 35px; height: 35px; animation-duration: 8s; left: 60%; }
        .bubbles span:nth-child(5) { width: 40px; height: 40px; animation-duration: 9s; left: 80%; }
        
.floating-bubbles span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00f7ff;
    opacity: 0.6;
    border-radius: 50%;
    animation: bubbleFloat 10s infinite ease-in-out;
}
@keyframes bubbleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196F3, #1E88E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px rgba(33, 150, 243, 0.6);
    z-index: 999;
    
    /* Initially Hidden */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1E88E5, #2196F3);
    box-shadow: 0px 0px 20px rgba(33, 150, 243, 0.8);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg); /* Align with scroll direction */
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 4;
}

.progress-ring-circle {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-dasharray: 164;
    stroke-dashoffset: 164;
    transition: stroke-dashoffset 0.2s ease-in-out;
    stroke-linecap: round;
}
 
 
/*state*/
.cities-covered-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:20px;
  max-width: 960px;
  margin: 0 auto;
}

.city-box {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #2091ee;
  color: #1b1b1b;
  font-weight: 600;
  padding: 14px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  font-size: 15px;
}

.city-box:hover {
  background: #2091ee;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(32, 145, 238, 0.25);
  transform: translateY(-4px) scale(1.02);
}

/* Responsive 2-column layout on phones */
@media (max-width: 576px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


