:root{
  --primary:#007F7F;
  --secondary:#00C9A7;
  --accent:#DFF6F0;
  --bg:#FFFFFF;
  --text:#2C2C2C;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--bg);
}

/* HEADER */
header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:600;
  color:var(--primary);
}

/* NAV */
.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-links a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background:var(--secondary);
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.hamburger span{
  width:25px;
  height:3px;
  background:var(--primary);
  transition:0.4s;
  border-radius:3px;
}

/* Animation to X */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */
@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:30px 0;
    max-height:0;
    overflow:hidden;
    transition:0.5s ease;
  }

  .nav-links.active{
    max-height:400px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
  }

  .hamburger{
    display:flex;
  }
}
/* Mobile Menu */
.nav-links{
    display:flex;
    gap:30px;
}

/* Mobile view */
@media (max-width:768px){

.nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#DFF6F0;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;

    display:none; /* IMPORTANT — hides menu */
}

/* When menu is active */
.nav-links.active{
    display:flex;
}

}

/* ================================hero section========================== */

/* HERO SECTION */
.hero{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

/* Slider */
.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* Dark overlay */
.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(0,127,127,0.6),
    rgba(0,201,167,0.6)
  );
  z-index:1;
}

/* Content */
.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
}

.hero-content h1{
  font-size:48px;
  margin-bottom:20px;
  font-weight:700;
}

.hero-content p{
  font-size:18px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Buttons */
.btn-primary{
  background:#00C9A7;
  color:#fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  transition:0.4s;
}

.btn-primary:hover{
  background:#007F7F;
  transform:translateY(-4px);
}

.btn-outline{
  border:2px solid #fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  transition:0.4s;
}

.btn-outline:hover{
  background:#fff;
  color:#007F7F;
  transform:translateY(-4px);
}

/* Scroll Indicator */
.scroll-indicator{
  position:absolute;
  bottom:30px;
  width:30px;
  height:50px;
  border:2px solid #fff;
  border-radius:30px;
}

.scroll-indicator::before{
  content:'';
  position:absolute;
  top:10px;
  left:50%;
  width:6px;
  height:6px;
  background:#fff;
  border-radius:50%;
  transform:translateX(-50%);
  animation:scrollAnim 2s infinite;
}

@keyframes scrollAnim{
  0%{ top:10px; opacity:1; }
  100%{ top:30px; opacity:0; }
}

/* Responsive */
@media(max-width:768px){
  .hero-content h1{
    font-size:30px;
  }
  .hero-content p{
    font-size:15px;
  }
}


/* ==========================================gallery============================ */

.gallery-section{
padding:100px 8%;
background:#ffffff;
text-align:center;
}

.section-header h2{
font-size:36px;
color:#007F7F;
margin-bottom:10px;
}

.section-header p{
color:#2C2C2C;
margin-bottom:50px;
}

/* Grid */

.gallery-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* Card */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
cursor:pointer;
}

.gallery-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

/* Overlay */

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
transparent,
rgba(0,127,127,0.8)
);
display:flex;
align-items:flex-end;
justify-content:center;
opacity:0;
transition:0.4s;
}

.gallery-overlay h3{
color:#fff;
padding-bottom:20px;
font-size:18px;
}

/* Hover Effects */

.gallery-card:hover img{
transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}

/* Responsive */

@media(max-width:900px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.gallery-container{
grid-template-columns:1fr;
}

.section-header h2{
font-size:26px;
}

}

/* ===============================service section========================== */

/* PRODUCT CATEGORIES */

.product-categories{
padding:90px 20px;
background:#DFF6F0;
text-align:center;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
font-size:36px;
color:#007F7F;
margin-bottom:10px;
}

.section-subtitle{
color:#555;
margin-bottom:50px;
}

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.category-card{
background:#fff;
padding:35px 25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
position:relative;
overflow:hidden;
}

.category-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.category-icon{
font-size:40px;
margin-bottom:15px;
}

.category-card h3{
color:#007F7F;
margin-bottom:10px;
}

.category-card p{
font-size:14px;
color:#555;
margin-bottom:20px;
line-height:1.6;
}

.category-btn{
display:inline-block;
padding:10px 24px;
background:#00C9A7;
color:#fff;
border-radius:25px;
text-decoration:none;
transition:0.3s;
}

.category-btn:hover{
background:#007F7F;
}

/* Responsive */

@media(max-width:768px){

.section-title{
font-size:28px;
}

.section-subtitle{
font-size:14px;
}

}

/* =============================why choose ================================ */

/* WHY CHOOSE US */

.why-choose{
padding:90px 20px;
background:#DFF6F0;
text-align:center;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
font-size:36px;
color:#007F7F;
margin-bottom:15px;
}

.section-subtitle{
font-size:16px;
color:#555;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-card{
background:#fff;
padding:35px 25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.why-icon{
font-size:40px;
margin-bottom:15px;
}

.why-card h3{
color:#007F7F;
margin-bottom:10px;
}

.why-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

.section-title{
font-size:28px;
}

.section-subtitle{
font-size:14px;
}

}
/* ===================================partners================================= */




/* PARTNERS SECTION */
.partners-section{
  padding:100px 0;
  background:linear-gradient(to right,#ffffff,#DFF6F0);
  text-align:center;
  overflow:hidden;
}

.section-header h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:15px;
}

.section-header p{
  color:#2C2C2C;
  margin-bottom:50px;
}

/* Slider */
.logo-slider{
  position:relative;
  width:100%;
  overflow:hidden;
}

.logo-track{
  display:flex;
  gap:60px;
  width:calc(250px * 12);
  animation:scroll 25s linear infinite;
}

.logo-track img{
  width:180px;
  filter:grayscale(100%);
  opacity:0.7;
  transition:0.4s;
}

.logo-track img:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:scale(1.1);
}

/* Pause on hover */
.logo-slider:hover .logo-track{
  animation-play-state:paused;
}

/* Animation */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Scroll Reveal */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:768px){
  .logo-track img{
    width:130px;
  }

  .section-header h2{
    font-size:24px;
  }
}
/* ===================================footer=================================== */

/* WAVE */
/* .wave-container{
  position:relative;
  width:100%;
  line-height:0;
}

.wave-container svg{
  display:block;
  width:100%;
  height:120px;
  animation:waveMove 6s linear infinite;
}

@keyframes waveMove{
  0%{transform:translateX(0);}
  50%{transform:translateX(-20px);}
  100%{transform:translateX(0);}
} */

/* WATER CONTAINER */
.water-effect{
  position:relative;
  width:100%;
  height:180px;
  overflow:hidden;
  background:linear-gradient(to top, #007F7F, #00C9A7);
}

/* WAVE BASE */
.wave{
  position:absolute;
  width:200%;
  bottom:0;
}

/* LAYER SPEEDS (Parallax Effect) */
.wave1{
  animation:waveMove1 14s linear infinite;
  opacity:0.6;
}

.wave2{
  animation:waveMove2 10s linear infinite;
  opacity:0.7;
}

.wave3{
  animation:waveMove3 6s linear infinite;
}

/* Wave Motion */
@keyframes waveMove1{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes waveMove2{
  from{ transform:translateX(0); }
  to{ transform:translateX(-40%); }
}

@keyframes waveMove3{
  from{ transform:translateX(0); }
  to{ transform:translateX(-30%); }
}

/* SHIMMER LIGHT EFFECT */
.shimmer{
  position:absolute;
  top:0;
  left:-100%;
  width:200%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.15) 60%,
    rgba(255,255,255,0.0) 100%
  );
  animation:shimmerMove 6s linear infinite;
}

/* Shimmer Movement */
@keyframes shimmerMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(50%); }
}

/* FOOTER */
.footer{
  background:#007F7F;
  color:#fff;
  padding:60px 8% 20px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer h3{
  margin-bottom:15px;
}

.footer h4{
  margin-bottom:15px;
}

.footer p{
  margin-bottom:10px;
  font-size:14px;
}

.footer a{
  color:#DFF6F0;
  text-decoration:none;
  transition:0.3s;
}

.footer a:hover{
  color:#00C9A7;
}

/* Social Icons */
.social-icons{
  display:flex;
  gap:15px;
}

.social-icons a{
  width:40px;
  height:40px;
  background:#00C9A7;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:18px;
  transition:0.4s;
}

.social-icons a:hover{
  transform:translateY(-5px);
  background:#DFF6F0;
  color:#007F7F;
}

/* Bottom */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.2);
  font-size:13px;
}

/* Responsive */
@media(max-width:768px){
  .footer{
    text-align:center;
  }
  .social-icons{
    justify-content:center;
  }
}

/* ===============================================About page============================== */

/* ABOUT HERO */

.about-hero{
  position:relative;
  height:80vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

/* Slider */

.about-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.about-slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.about-slide.active{
  opacity:1;
}

/* Gradient Overlay */

.about-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(0,127,127,0.75),
    rgba(0,201,167,0.65)
  );
  z-index:1;
}

/* Content */

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
  animation:fadeUp 1.5s ease forwards;
}

.about-hero-content h1{
  font-size:44px;
  margin-bottom:20px;
  font-weight:700;
}

.about-hero-content p{
  font-size:18px;
  margin-bottom:30px;
}

/* Button */

.about-btn{
  background:#00C9A7;
  color:#fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  transition:0.4s;
}

.about-btn:hover{
  background:#007F7F;
  transform:translateY(-4px);
}

/* Text Animation */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */

@media(max-width:768px){

.about-hero{
 height:100vh ;
}

.about-hero-content h1{
  font-size:28px;
}

.about-hero-content p{
  font-size:15px;
}

}
/* ====================about section======================= */

/* ABOUT SECTION */
.about-section{
  padding:100px 8%;
  background:linear-gradient(to right,#ffffff,#DFF6F0);
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:0.5s;
}

.about-image img:hover{
  transform:scale(1.05);
}

/* CONTENT */
.about-content h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:20px;
}

.about-content p{
  font-size:16px;
  margin-bottom:15px;
  color:#2C2C2C;
}

/* STATS */
.about-stats{
  display:flex;
  gap:30px;
  margin-top:30px;
  flex-wrap:wrap;
}

.stat-box{
  background:#ffffff;
  padding:20px 30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-5px);
}

.stat-box h3{
  font-size:28px;
  color:#00C9A7;
}

/* SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-container{
    grid-template-columns:1fr;
  }

  .about-content h2{
    font-size:26px;
  }
}

/* ===================================card section================================ */

/* WHY SECTION */
.why-section{
  padding:100px 8%;
  background:#FFFFFF;
  text-align:center;
}

.section-header h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:15px;
}

.section-header p{
  color:#2C2C2C;
  margin-bottom:50px;
}

/* GRID */
.why-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */
.why-card{
  background:rgba(0,201,167,0.05);
  padding:40px 25px;
  border-radius:25px;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* ICON */
.why-card .icon{
  font-size:40px;
  margin-bottom:20px;
  animation:float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{transform:translateY(0px);}
  50%{transform:translateY(-10px);}
  100%{transform:translateY(0px);}
}

.why-card h3{
  color:#007F7F;
  margin-bottom:15px;
}

.why-card p{
  color:#2C2C2C;
  font-size:15px;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .why-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .why-container{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:24px;
  }
}

/* ================review section==================================== */

/* REVIEWS SECTION */

.reviews{
padding:90px 20px;
background:#fff;
text-align:center;
overflow:hidden;
}

.container{
max-width:1100px;
margin:auto;
}

.section-title{
font-size:36px;
color:#007F7F;
margin-bottom:10px;
}

.section-subtitle{
color:#555;
margin-bottom:50px;
}

.review-slider{
overflow:hidden;
position:relative;
}

.review-track{
display:flex;
gap:30px;
animation:slideReviews 20s linear infinite;
}

.review-card{
min-width:300px;
background:#DFF6F0;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.review-card:hover{
transform:translateY(-8px);
}

.review-text{
font-size:15px;
line-height:1.6;
color:#333;
margin-bottom:15px;
}

.review-card h4{
color:#007F7F;
margin-bottom:5px;
}

.review-card span{
font-size:13px;
color:#777;
}

/* Slider Animation */

@keyframes slideReviews{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* Responsive */

@media(max-width:768px){

.section-title{
font-size:28px;
}

.review-card{
min-width:260px;
}

}

/* =================================================service page ========================== */



/* ====================process section================== */

/* PROCESS SECTION */
.process-section{
  padding:120px 8%;
  background:linear-gradient(to bottom,#DFF6F0,#ffffff);
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* Title */
.section-title h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:15px;
}

.section-title p{
  color:#2C2C2C;
  margin-bottom:60px;
}

/* Container */
.process-container{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  position:relative;
}

/* Step Box */
.process-step{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  padding:30px 20px;
  border-radius:25px;
  width:200px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  z-index:2;
}

.process-step:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Step Number Circle */
.step-number{
  width:50px;
  height:50px;
  line-height:50px;
  border-radius:50%;
  margin:0 auto 15px;
  background:linear-gradient(135deg,#007F7F,#00C9A7);
  color:white;
  font-weight:bold;
  font-size:18px;
  animation:pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(0,201,167,0.6);}
  70%{box-shadow:0 0 0 15px rgba(0,201,167,0);}
  100%{box-shadow:0 0 0 0 rgba(0,201,167,0);}
}

/* Connecting Line */
.process-line{
  width:60px;
  height:4px;
  background:linear-gradient(90deg,#007F7F,#00C9A7);
  position:relative;
  overflow:hidden;
}

.process-line::after{
  content:'';
  position:absolute;
  width:30px;
  height:4px;
  background:white;
  animation:flow 2s linear infinite;
}

@keyframes flow{
  0%{left:-30px;}
  100%{left:100%;}
}

/* Floating Bubbles */
.process-section::before,
.process-section::after{
  content:'';
  position:absolute;
  width:150px;
  height:150px;
  background:rgba(0,201,167,0.1);
  border-radius:50%;
  animation:floatBubble 8s infinite ease-in-out;
}

.process-section::before{
  left:10%;
  top:50%;
}

.process-section::after{
  right:10%;
  top:60%;
  animation-delay:4s;
}

@keyframes floatBubble{
  0%{transform:translateY(0);}
  50%{transform:translateY(-40px);}
  100%{transform:translateY(0);}
}

/* Responsive */
@media(max-width:992px){
  .process-container{
    flex-direction:column;
  }

  .process-line{
    width:4px;
    height:40px;
  }

  .process-line::after{
    width:4px;
    height:20px;
    animation:flowVertical 2s linear infinite;
  }

  @keyframes flowVertical{
    0%{top:-20px;}
    100%{top:100%;}
  }
}


/* ===========service card section======================================  */


/* SERVICE SECTION */
.service-section{
  padding:120px 8%;
  background:linear-gradient(to bottom,#ffffff,#DFF6F0);
  text-align:center;
  position:relative;
}

/* Section Header */
.section-header h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:15px;
}

.section-header p{
  color:#2C2C2C;
  margin-bottom:60px;
}

/* Grid */
.service-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* Card */
.service-card{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  padding:40px 25px;
  border-radius:25px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* Water shimmer overlay */
.service-card::before{
  content:"";
  position:absolute;
  top:-100%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.5),
      transparent
  );
  transform:rotate(25deg);
  transition:0.6s;
}

.service-card:hover::before{
  top:100%;
  left:100%;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon{
  font-size:45px;
  margin-bottom:20px;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
  100%{transform:translateY(0);}
}

.service-card h3{
  color:#007F7F;
  margin-bottom:15px;
}

.service-card p{
  color:#2C2C2C;
  font-size:15px;
  margin-bottom:20px;
}

/* Button */
.service-btn{
  display:inline-block;
  padding:10px 25px;
  border-radius:30px;
  background:linear-gradient(135deg,#007F7F,#00C9A7);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.service-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 20px rgba(0,201,167,0.4);
}

/* Scroll Reveal */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:1100px){
  .service-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .service-container{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:26px;
  }
}
/* ======================================contant page============================= */

/* SERVICE HERO */
/* SERVICE HERO */
.service-hero{
  position:relative;
  min-height:80vh; /* changed from height */
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:120px 20px 80px; /* important for mobile spacing */
}

/* Slider */
.service-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.service-slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.service-slide.active{
  opacity:1;
}

/* Brand Gradient Overlay */
.service-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(0,127,127,0.75),
    rgba(0,201,167,0.65)
  );
  z-index:1;
}

/* Content */
.service-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
  animation:fadeUp 1.5s ease forwards;
}

.service-content h1{
  font-size:44px;
  margin-bottom:20px;
  font-weight:700;
}

.service-content p{
  font-size:18px;
  margin-bottom:30px;
}

/* Buttons container */
.service-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Buttons */
.btn-primary{
  background:#00C9A7;
  color:#fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  transition:0.4s;
}

.btn-primary:hover{
  background:#007F7F;
  transform:translateY(-4px);
}

.btn-outline{
  border:2px solid #fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  transition:0.4s;
}

.btn-outline:hover{
  background:#fff;
  color:#007F7F;
  transform:translateY(-4px);
}

/* Text Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE FIX */
@media(max-width:768px){

.service-hero{
  min-height:auto;
  padding:120px 20px 100px;
}

.service-content h1{
  font-size:26px;
}

.service-content p{
  font-size:15px;
}

/* stack buttons */
.service-buttons{
  flex-direction:column;
  gap:15px;
}

.service-buttons a{
  width:220px;
  margin:auto;
}

}
/* =================form section=================================== */

.contact-section{
  padding:100px 8%;
  background:linear-gradient(to right,#DFF6F0,#ffffff);
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* LEFT SIDE */
.contact-info h2{
  font-size:36px;
  color:#007F7F;
  margin-bottom:20px;
}

.contact-info p{
  font-size:16px;
  margin-bottom:20px;
  color:#2C2C2C;
}

.info-box{
  background:#ffffff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* FORM BOX */
.contact-form-box{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(15px);
  padding:40px;
  border-radius:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* INPUT GROUP */
.input-group{
  position:relative;
  margin-bottom:30px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:14px;
  border:none;
  border-bottom:2px solid #ccc;
  outline:none;
  font-size:15px;
  background:transparent;
}

.input-group label{
  position:absolute;
  left:0;
  top:14px;
  color:#777;
  transition:0.3s;
  pointer-events:none;
}

.input-group input:focus,
.input-group textarea:focus{
  border-bottom:2px solid #00C9A7;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label{
  top:-10px;
  font-size:12px;
  color:#007F7F;
}

/* BUTTON */
.submit-btn{
  width:100%;
  padding:14px;
  background:#00C9A7;
  border:none;
  border-radius:30px;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:0.4s;
}

.submit-btn:hover{
  background:#007F7F;
  transform:translateY(-3px);
}

/* SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }

  .contact-info h2{
    font-size:26px;
  }
}
/* =========================================map section======================== */

/* MAP SECTION */
.map-section{
  padding:100px 8%;
  background:linear-gradient(to right,#ffffff,#DFF6F0);
}

.map-container{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

/* MAP BOX */
.map-box{
  height:400px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* INFO CARD */
.map-info{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(15px);
  padding:40px;
  border-radius:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.map-info h2{
  font-size:32px;
  color:#007F7F;
  margin-bottom:20px;
}

.map-info p{
  font-size:15px;
  margin-bottom:15px;
  color:#2C2C2C;
}

.map-details{
  margin:20px 0;
}

/* BUTTON */
.map-btn{
  display:inline-block;
  padding:14px 28px;
  background:#00C9A7;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  transition:0.4s;
}

.map-btn:hover{
  background:#007F7F;
  transform:translateY(-3px);
}

/* SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:992px){
  .map-container{
    grid-template-columns:1fr;
  }

  .map-box{
    height:300px;
  }

  .map-info h2{
    font-size:24px;
  }
}