
html {
  scroll-behavior: smooth;
}







/* Full animated water background */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, #00c6ff 0%, #001f2f 70%);
  animation: rotateBG 60s linear infinite;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: repeating-radial-gradient(circle, rgba(0,198,255,0.02) 0 2px, transparent 2px 10px);
  animation: waveMove 20s linear infinite;
  z-index: -1;
}

/* Rotating gradient for depth */
@keyframes rotateBG {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Moving ripple overlay for dynamic water feel */
@keyframes waveMove {
  0% { transform: translateX(0) translateY(0);}
  50% { transform: translateX(-50px) translateY(30px);}
  100% { transform: translateX(0) translateY(0);}
}












* {margin:0; padding:0; box-sizing:border-box; font-family: Arial,sans-serif;}
body {background: linear-gradient(135deg,#0f2027,#203a43,#2c5364); color:white; overflow-x:hidden;}

/* Animated Water Background */
.water-bg {position: fixed; width:100%; height:100%; background: radial-gradient(circle at 50% 50%, #00c6ff33, #000000); animation: moveWater 8s infinite alternate; z-index:-1;}
@keyframes moveWater {from {transform: scale(1);} to {transform: scale(1.2);}}

/* Navigation */
nav {display:flex; justify-content:space-between; padding:20px 10%; background: rgba(0,0,0,0.6);}
nav ul {display:flex; list-style:none; gap:20px;}
nav a {color:white; text-decoration:none;}

/* Hero */
header {height:70vh; display:flex; align-items:center; justify-content:center; text-align:center;}
.hero {animation: fadeIn 2s ease-in-out;}
@keyframes fadeIn {from {opacity:0; transform:translateY(30px);} to {opacity:1; transform:translateY(0);}}

/* Cards (Services) */
.cards {display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:20px; padding:80px 10%;}
.card {padding:30px; border-radius:15px; text-align:center; transition:0.3s;}
.card:hover {transform: translateY(-10px);}
.glass {backdrop-filter: blur(10px); background: rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);}

/* Stats */
.stats-container {display:flex; justify-content:space-around; padding:80px 10%; text-align:center;}
.stat h3 {font-size:3rem; color:#00c6ff;}

/* Booking Form */
.booking-form {max-width:500px; margin:auto; padding:30px; border-radius:15px;}
input, select, textarea, button {width:100%; padding:12px; margin:10px 0; border-radius:8px; border:none;}
.btn {display:inline-block; background:#00c6ff; color:white; border-radius:30px; padding:12px; text-decoration:none; transition:0.3s; cursor:pointer;}
.btn:hover {background:#0072ff; transform:scale(1.05);}

/* Thank You */
.thankyou {text-align:center; padding:150px 20px;}
.success-icon {font-size:90px; color:#00ffae; animation: pop 0.6s ease forwards;}
@keyframes pop {0%{transform:scale(0);} 80%{transform:scale(1.2);} 100%{transform:scale(1);}}
.fade-in {animation: fadeIn 1s ease-in-out forwards;}







/* Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background: rgba(0,0,0,0.8); 
  backdrop-filter: blur(5px);
  animation: fadeIn 0.4s;
}

.modal-content {
  background: rgba(255,255,255,0.1);
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  color: white;
  animation: pop 0.5s;
}

.close-btn {
  color: #00c6ff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #00ffae;
}





.hero-text {animation: slideIn 1.5s ease forwards;}
.highlight {color:#00c6ff; font-weight:bold;}
.hero-btn {margin-top:20px; animation: popBtn 1s ease forwards;}

@keyframes slideIn {
  from {opacity:0; transform:translateY(-30px);}
  to {opacity:1; transform:translateY(0);}
}

@keyframes popBtn {
  0%{transform:scale(0);}
  80%{transform:scale(1.2);}
  100%{transform:scale(1);}
}


nav ul li a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* Underline animation */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #00c6ff;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Glow effect on hover */
nav ul li a:hover {
  color: #00ffae;
  text-shadow: 0 0 10px #00c6ff, 0 0 20px #00ffae;
}



nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  animation: navGradient 8s ease-in-out infinite alternate;
}

@keyframes navGradient {
  0% {background: rgba(0,0,0,0.6);}
  50% {background: rgba(0,0,0,0.4);}
  100% {background: rgba(0,0,0,0.6);}
}


.logo {
  font-weight: bold;
  font-size: 1.8rem;
  color: #00c6ff;
  transition: transform 0.3s, text-shadow 0.3s;
}

.logo:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px #00c6ff, 0 0 25px #00ffae;
}


nav ul li a {
  color: #00c6ff;
  text-decoration: none;
  position: relative;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% {color: #00c6ff; text-shadow: 0 0 5px #00c6ff;}
  50% {color: #00ffae; text-shadow: 0 0 15px #00c6ff, 0 0 25px #00ffae;}
  100% {color: #00c6ff; text-shadow: 0 0 5px #00c6ff;}
}

nav ul li a {
  display: inline-block;
  animation: slideLoop 4s infinite alternate ease-in-out;
}

@keyframes slideLoop {
  0% {transform: translateY(0);}
  50% {transform: translateY(-5px);}
  100% {transform: translateY(0);}
}


nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  animation: bgPulse 6s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% {background: rgba(0,0,0,0.5);}
  50% {background: rgba(0,0,0,0.3);}
  100% {background: rgba(0,0,0,0.5);}
}

.logo {
  font-weight: bold;
  font-size: 1.8rem;
  color: #00c6ff;
  animation: floatLogo 3s infinite alternate ease-in-out;
}

@keyframes floatLogo {
  0% {transform: translateY(0);}
  50% {transform: translateY(-5px);}
  100% {transform: translateY(0);}
}



/* new code here */





.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,198,255,0.2) 0%, transparent 70%);
  animation: moveParticles 10s linear infinite;
  z-index: 0;
}

@keyframes moveParticles {
  0% {transform: translate(0,0);}
  50% {transform: translate(20px,20px);}
  100% {transform: translate(0,0);}
}

.hero-text, .hero-btn {
  position: relative; /* so text is above particles */
  z-index: 1;
}


.btn {
  background: #00c6ff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  animation: glowPulse 2s infinite alternate;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

@keyframes glowPulse {
  0% {box-shadow: 0 0 5px #00c6ff;}
  50% {box-shadow: 0 0 20px #00ffae, 0 0 40px #00c6ff;}
  100% {box-shadow: 0 0 5px #00c6ff;}
}



.card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatCard 3s ease-in-out infinite alternate;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,198,255,0.3);
}

@keyframes floatCard {
  0% {transform: translateY(0);}
  50% {transform: translateY(-5px);}
  100% {transform: translateY(0);}
}


.stat {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1s forwards;
}

@keyframes fadeSlideIn {
  to {opacity: 1; transform: translateY(0);}
}



/* new code hre */

.glow-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #00c6ff;
  text-shadow: 0 0 5px #00c6ff;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% {text-shadow: 0 0 5px #00c6ff;}
  50% {text-shadow: 0 0 15px #00ffae, 0 0 25px #00c6ff;}
  100% {text-shadow: 0 0 5px #00c6ff;}
}


.slide-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.animated-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, #00c6ff, #00ffae, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px #00c6ff;
  opacity: 0;
  transform: translateY(20px);
  animation: gradientSlideGlow 4s infinite alternate, slideIn 1s forwards;
}

@keyframes gradientSlideGlow {
  0% {background-position: 0% 50%; text-shadow:0 0 5px #00c6ff;}
  50% {background-position: 100% 50%; text-shadow:0 0 15px #00ffae,0 0 25px #00c6ff;}
  100% {background-position:0% 50%; text-shadow:0 0 5px #00c6ff;}
}

@keyframes slideIn {
  to {opacity:1; transform: translateY(0);}
}




.cta-heading {
  font-size: 3rem;               /* Big and bold */
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, #00c6ff, #00ffae, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px #00c6ff;
  opacity: 0;                     /* Start hidden */
  transform: translateY(20px);    /* Slightly down */
  animation: gradientGlowSlide 4s infinite alternate, slideIn 1s forwards;
}

/* Gradient + Glow Animation */
@keyframes gradientGlowSlide {
  0% {background-position: 0% 50%; text-shadow:0 0 5px #00c6ff;}
  50% {background-position: 100% 50%; text-shadow:0 0 15px #00ffae,0 0 25px #00c6ff;}
  100% {background-position:0% 50%; text-shadow:0 0 5px #00c6ff;}
}

/* Slide Up Entrance */
@keyframes slideIn {
  to {opacity:1; transform: translateY(0);}
}







/* new animations */




/* About Hero */
.about-hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #001f2f, #003b5c);
  text-align: center;
  color: white;
  animation: fadeInHero 1.5s ease forwards;
}

.about-title {
  font-size: 3rem;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

@keyframes glowText {
  from {text-shadow: 0 0 5px #00c6ff;}
  to {text-shadow: 0 0 25px #00ffae;}
}

@keyframes fadeInHero {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* About Sections */
.about-section {
  padding: 80px 10%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.about-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* List Styling */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin: 15px 0;
  font-size: 1.2rem;
  animation: float 3s infinite alternate;
}

@keyframes float {
  from {transform: translateY(0);}
  to {transform: translateY(-5px);}
}

/* Stats Section */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px;
  background: #001a28;
}

.stat-box {
  text-align: center;
  color: white;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from {transform: scale(1);}
  to {transform: scale(1.05);}
}




/* eddsds */


.process-section {
  padding: 80px 10%;
  text-align: center;
  background: #002737;
  color: white;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.process-box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,198,255,0.4);
}



.testimonial-section {
  padding: 80px 10%;
  text-align: center;
}

.testimonial-box {
  background: rgba(0,198,255,0.1);
  padding: 25px;
  margin: 20px auto;
  border-radius: 12px;
  max-width: 600px;
  transition: 0.3s;
}

.testimonial-box:hover {
  transform: scale(1.05);
}



/* sddwd */

.about-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #001f2f, #002b40);
  color: white;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-title {
  font-size: 3rem;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

@keyframes glowText {
  from {text-shadow: 0 0 5px #00c6ff;}
  to {text-shadow: 0 0 25px #00ffae;}
}

.about-highlight {
  font-size: 1.4rem;
  margin: 20px 0;
  color: #00ffae;
  font-weight: bold;
}

.about-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,255,174,0.4);
}

/* Animated Water Circle */
.about-visual {
  position: relative;
}

.water-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, #00c6ff, #003b5c);
  animation: floatCircle 4s infinite ease-in-out;
  box-shadow: 0 0 40px rgba(0,198,255,0.5);
}

@keyframes floatCircle {
  0% {transform: translateY(0px);}
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0px);}
}






/* wswsw */



/* Process Section */
.process-section {
  padding: 100px 10%;
  text-align: center;
  background: linear-gradient(135deg, #001a28, #002b3c);
  color: white;
}

.process-section .section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.process-box {
  background: rgba(255,255,255,0.05);
  padding: 40px 20px;
  border-radius: 20px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.process-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,198,255,0.4);
}

/* Icons */
.process-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: float 3s infinite alternate;
}

/* Floating animation for icons */
@keyframes float {
  from {transform: translateY(0);}
  to {transform: translateY(-10px);}
}

/* Fade-in scroll animation */
.process-box.active {
  opacity: 1;
  transform: translateY(0);
}




/* dwdw */


/* Stats Section */
.stats-section {
  padding: 100px 10%;
  text-align: center;
  background: linear-gradient(135deg, #001f2f, #003b5c);
  color: white;
}

.stats-section .section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 20px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,198,255,0.4);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00ffae;
}

/* ddcd */


/* Pricing Section */
.pricing-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #001f2f, #002b40);
  color: white;
  text-align: center;
}

.pricing-section .section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 20px;
  width: 280px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,198,255,0.4);
}

.pricing-header {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.pricing-price {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffae;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  color: black;
  transition: 0.3s;
}

.pricing-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,198,255,0.5);
}

/* Most Popular Badge */
.pricing-card.popular .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00ffae;
  color: black;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,198,255,0.5);
  animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
  from {transform: scale(1);}
  to {transform: scale(1.1);}
}








/* sdd */


/* Reviews Section */
.reviews-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #002b40, #001f2f);
  color: white;
  text-align: center;
  position: relative;
}

.reviews-section .section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

.reviews-slider {
  overflow: hidden;
  height: 60px; /* Height of one review */
  position: relative;
}

.review {
  font-size: 1.2rem;
  margin: 0;
  line-height: 60px;
  white-space: nowrap;
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s ease-in-out;
  color: #a8e8ff;
  font-style: italic;
}





/* dwdsds */



button, .cta-btn, .pricing-btn {
  position: relative;
  overflow: hidden;
}

button::after, .cta-btn::after, .pricing-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s, opacity 0.5s;
  border-radius: 50%;
}

button:hover::after, .cta-btn:hover::after, .pricing-btn:hover::after {
  opacity: 1;
  transform: scale(2);
}



.parallax {
  background-image: url('your-image.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}


.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}




.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(0,198,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveParticles 20s linear infinite;
}

@keyframes moveParticles {
  0% {background-position: 0 0;}
  100% {background-position: 100px 100px;}
}






/* dcddc */




.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none; /* So clicks pass through */
  width: 100px;
  height: 100px;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}




/* sdsds */


/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #002b40, #001f2f);
  color: white;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

.contact-hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

.contact-hero p {
  font-size: 1.5rem;
  margin-top: 20px;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 10%;
  text-align: center;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
}

.contact-form-section button {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  background: #00c6ff;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-section button:hover {
  background: #00ffae;
  transform: scale(1.05);
}

/* Contact Info */
.contact-info {
  padding: 80px 10%;
  text-align: center;
  background: #001f2f;
  color: #a8e8ff;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Map */
.map-section {
  width: 100%;
  height: 400px;
  margin-bottom: 80px;
}

/* Scroll to Top */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c6ff;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  z-index: 100;
}





/* wddw */


/* ===== ULTRA PREMIUM NAVBAR BACKGROUND ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  /* Glass effect */
  background: rgba(0, 31, 47, 0.75);
  backdrop-filter: blur(15px);

  /* Smooth transition */
  transition: all 0.4s ease;

  /* Glow shadow */
  box-shadow: 0 5px 25px rgba(0, 198, 255, 0.3);
}

/* Moving gradient border at bottom */
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #00ffae, #00c6ff);
  background-size: 200%;
  animation: moveBorder 4s linear infinite;
}

@keyframes moveBorder {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}





@keyframes navbarGlow {
  0% { box-shadow: 0 5px 20px rgba(0,198,255,0.2); }
  100% { box-shadow: 0 5px 40px rgba(0,255,174,0.5); }
}

.navbar {
  animation: navbarGlow 3s infinite alternate;
}




/* wdww */


/* ===== SECTION BASE ===== */
.why-choose-section {
  padding: 120px 10%;
  text-align: center;
  color: white;
  position: relative;
  background: linear-gradient(135deg, #001f2f, #003c5c, #001f2f);
  background-size: 300% 300%;
  animation: backgroundMove 10s ease infinite;
}

@keyframes backgroundMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  opacity: 0.85;
  margin-bottom: 70px;
  font-size: 1.1rem;
}

/* ===== CARDS ===== */
.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.why-card {
  position: relative;
  padding: 45px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,198,255,0.2);
  transition: 0.5s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(0,255,174,0.15), transparent);
  top: -25%;
  left: -25%;
  opacity: 0;
  transition: 0.5s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,255,174,0.4);
  border: 1px solid rgba(0,255,174,0.6);
}

.why-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
  opacity: 0.08;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  font-weight: bold;
  opacity: 0.9;
}

.trust-strip span {
  background: rgba(0,255,174,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0,255,174,0.3);
}



/* sdsf */

 

/* SECTION BACKGROUND (more premium blue) */
.ba-section {
  background: linear-gradient(180deg, #0a192f, #0f3057, #1c4e80);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

/* TITLE */
.ba-section h2 {
  font-size: 34px;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* GRID → force 2 rows (Before / After) */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

/* CARDS */
.ba-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER = premium lift */
.ba-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 198, 255, 0.3);
}

/* IMAGES */
.ba-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* subtle zoom */
.ba-card:hover img {
  transform: scale(1.08);
}

/* LABEL */
.ba-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* OPTIONAL: make BEFORE slightly darker for contrast */
.ba-card:nth-child(1) img,
.ba-card:nth-child(2) img {
  filter: brightness(0.85);
}

/* AFTER images pop more */
.ba-card:nth-child(3) img,
.ba-card:nth-child(4) img {
  filter: brightness(1.1) contrast(1.05);
}



/* ecdcdcdc */



/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .ba-section {
    padding: 60px 15px;
  }

  .ba-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  /* stack cards vertically */
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-card img {
    height: 200px;
  }

  .ba-card {
    border-radius: 18px;
  }

  .ba-card span {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* ===== SMALL PHONES (extra clean) ===== */
@media (max-width: 480px) {

  .ba-section h2 {
    font-size: 20px;
  }

  .ba-card img {
    height: 180px;
  }
}