
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root{
  --pale-sky: #7fc8f8;
  --prussian-blue: #061a40;
  --sapphire: #0353a4;
  --cornflower-ocean: #006daa;
  --deep-space-blue: #003559;
  --white:#d7e3fc;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body{
  background:#91D06C;
  overflow-x:hidden;
  text-align: justify;
}

/* =========================
   TOP STRIP
========================= */

.top-strip{
  width:100%;

  background:linear-gradient(
    to right,
    #3a5a40,
    #0077b6
  );

  color:#fff;

  padding:10px 40px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  flex-wrap:wrap;

  position:relative;
  z-index:99999;
}

/* LEFT + RIGHT */

.strip-left,
.strip-right{
  display:flex;
  align-items:center;

  gap:14px;

  flex-wrap:wrap;
}

/* LINKS */

.top-strip a{
  color:#fff;

  text-decoration:none;

  font-size:14px;

  font-weight:500;

  display:flex;
  align-items:center;

  gap:8px;

  transition:0.3s ease;
}

/* ICONS */

.top-strip i{
  font-size:13px;
}

/* HOVER */

.top-strip a:hover{
  opacity:0.8;

  transform:translateY(-1px);
}

/* DIVIDER */

.top-strip span{
  opacity:0.5;
}

/* =========================
   MOBILE
========================= */

@media(max-width:430px){

  .top-strip{
    padding:8px 12px;

    flex-direction:column;

    gap:8px;

    text-align:center;
  }

  .strip-left,
  .strip-right{
    justify-content:center;

    gap:10px;
  }

  .top-strip a{
    font-size:11px;
  }

  .top-strip i{
    font-size:11px;
  }

}

/* HEADER */
.header{
  position:sticky;
  top:10px;
  bottom:10px;
  
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 22px;
  gap:20px;
  margin: 10px;

  background:#fff;

  border-radius:50px;
  font-size: 14px;

  z-index:99999;

  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  flex-direction:row;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo h1{
  font-size:20px;

  color:#fb6f92;

  white-space:nowrap;

  transition:0.4s ease;
}

.logo1 img{
  height:50px;
}

/* DESKTOP MENU */
.menu{
  display:flex;
  align-items:center;
  gap:20px;

  list-style:none;
}

.menu li{
  position:relative;
}

.menu a{
  text-decoration:none;

  color:#01497c;

  font-size:16px;

  font-weight:700;

  padding:10px 16px;

  border-radius:30px;

  transition:0.3s ease;
}

.menu a:hover{
  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:#fff;

  box-shadow:
  0 8px 20px rgba(0,119,182,0.25);
}

.menu a.active{
  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:#fff;

  box-shadow:
  0 8px 20px rgba(0,119,182,0.25);
}

/* DROPDOWN */
.dropdown-menu{
  position:absolute;

  top:120%;
  left:0;

  width:290px;

  background:#fff;

  border-radius:18px;

  padding:10px;

  opacity:0;
  visibility:hidden;

  transform:translateY(10px);

  transition:0.3s;

  box-shadow:0 15px 40px rgba(0,0,0,0.12);

  z-index:9999;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu li{
  list-style:none;
}

.dropdown-menu li a{
  display:block;
  width:100%;
  padding:12px 15px;

  border-radius:12px;
}

.dropdown-menu li a:hover{
  background:#91D06C;
  color:white;
}

/* SUBMENU */
.dropdown-sub{
  position:relative;
}

.sub-menu{
  position:absolute;

  left:100%;
  top:0;

  width:250px;

  background:#fff;

  border-radius:18px;

  padding:10px;

  opacity:0;
  visibility:hidden;

  transition:0.3s;

  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.dropdown-sub:hover .sub-menu{
  opacity:1;
  visibility:visible;
}

/* RIGHT */
.right-side{
  display:flex;
  align-items:center;
  gap:15px;
}


/* HAMBURGER */
.hamburger{
  display:none;

  font-size:30px;
  cursor:pointer;

  color:#0a2c5a;
}

.mobile-drop-content{
  display:none;

  padding-left:15px;
}

.mobile-drop-content a{
  font-size:15px;
  padding:8px 0;
  display:block;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;

  width:320px;
  height:100vh;

  background:#fff;

  padding:90px 25px;

  display:flex;
  flex-direction:column;

  gap:15px;

  overflow-y:auto;   /* IMPORTANT */
  scroll-behavior:smooth;

  transition:0.4s ease;

  z-index:99999;
}

.mobile-menu.active{
  left:0;
}

/* SCROLLBAR */

.mobile-menu::-webkit-scrollbar{
  width:5px;
}

.mobile-menu::-webkit-scrollbar-thumb{
  background:#91D06C;
  border-radius:20px;
}

/* MAIN DROPDOWN */

.mobile-dropdown{
  width:100%;
}

/* BUTTON */

.mobile-drop-btn{
  font-size:18px;
  font-weight:600;
  color:#0a2c5a;

  padding:14px 0;

  cursor:pointer;
}

/* CONTENT */

.mobile-drop-content{
  max-height:0;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  padding-left:15px;

  transition:0.4s ease;
}

/* SMOOTH OPEN */

.mobile-dropdown:hover .mobile-drop-content{
  max-height:800px;
}

/* SUB DROPDOWN */

.mobile-sub-dropdown{
  width:100%;
}

/* SUB BUTTON */

.mobile-sub-btn{
  font-size:16px;
  font-weight:500;

  color:#0353a4;

  padding:12px 0;

  cursor:pointer;
}

/* SUB CONTENT */

.mobile-sub-content{
  max-height:0;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  padding-left:15px;

  transition:0.4s ease;
}

/* SHOW */

.mobile-sub-dropdown:hover .mobile-sub-content{
  max-height:500px;
}

/* LINKS */

.mobile-sub-content a{
  text-decoration:none;
  color:#444;

  padding:10px 0;

  font-size:15px;

  transition:0.3s;
}

.mobile-sub-content a:hover{
  color:#0077b6;
  transform:translateX(5px);
}

/* HAMBURGER */
.hamburger{
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #0a2c5a;
}
.close-btn{
  display: none;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;

  width:280px;
  height:100vh;

  background:white;

  padding:90px 30px;

  display:flex;
  flex-direction:column;
  gap:25px;

  transition:0.4s ease;

  z-index:9999;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu a{
  text-decoration:none;
  color:#0a2c5a;
  font-weight:600;
  font-size:18px;
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:20px;
  right:25px;

  width:40px;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;
  font-weight:bold;

  background:#0a2c5a;
  color:white;

  border-radius:50%;
  cursor:pointer;

  z-index:99999;
}

/* RIGHT SIDE */
.right-side{
  display:flex;
  align-items:center;
  gap:18px;
}


/* HERO */
.hero{
  height:60vh;
  overflow:hidden;
   position:relative;
  z-index:1; 
}


/* SLIDES WRAPPER */
.slides{
  display:flex;
  height:100%;
  transition:transform 0.8s ease-in-out;
}

/* EACH SLIDE */
.slide{
  min-width:100%;
  height:100%;
  position:relative;
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */
.slide::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
 
  top:0;
  left:0;
  pointer-events:none;
}

/* TEXT */
.content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  text-align:center;
  z-index:2;
}

.content h1{
  font-size:42px;
  opacity:0;
}

.content p{
  margin:15px 0;
  opacity:0;
}
/* ACTIVE ANIMATION */
.slide.active h1{
  animation:slideDownText 1s ease forwards;
}

.slide.active p{
  animation:slideUpText 1s ease forwards;
  animation-delay:0.3s;
}

.slide.active .hero-buttons{
   animation:fadeInBtn 1s ease;
  animation-delay:0.6s;
}

.hero-buttons button{
  padding:10px 20px;
  border:none;
  border-radius:20px;
  margin:5px;
  cursor:pointer;
  animation:fadeUp 1.2s ease;
  opacity:1;

}

.primary{
  background:var(--sapphire);
  color:white;
  transition:all 0.3s ease;
}

.primary:hover{
  background:var(--cornflower-ocean);
  box-shadow:0 12px 30px rgba(3,83,164,0.5);
  transform:translateY(-3px) scale(1.05);


}

.secondary{
  background:white;
  color:var(--sapphire);
  transition:all 0.3s ease;
}

.secondary:hover{
  background:var(--sapphire);
  color:white;
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.info{
  max-width:1100px;
  margin:60px auto;
  padding:35px 45px;

  background:#f3f4f6;

  border-radius:20px;

  /* clean shadow */
  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  text-align:center;

  /* animation */
  opacity:0;
  transform:translateY(40px);
  transition:all 0.6s ease;
}

/* SHOW CLASS (scroll par trigger karega) */
.info.show{
  opacity:1;
  transform:translateY(0);
}

/* HEADING */
.info h1{
  font-size:28px;
  font-weight:700;
  color:#023e8a;
  margin-bottom:10px;
}


.info p{
  color:#004e89;
  font-size:18px;
  font-weight:500;
  line-height:1.8;
}



/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
  padding:50px;
   background:#f8fafc;

}

.card{
  background:white;
  border-radius:20px;
  border: 1px #8ecae6;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
 transition:0.4s ease;
  position:relative;
  width: 300px;
  height: 350px;
  perspective: 1000px;
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
   position:relative;
  
}

.card h3{
  padding:10px;
  font-size:24px;
  margin-bottom:10px;
  color:#0f172a;
}

.card p{
  padding:0 10px 20px;
    font-size:16px;
  color:#64748b;
}

.card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);

}
.card:hover img{
  transform:scale(1.1);
}
.card-content::after{
  content:"→";
  display:inline-block;
  margin-top:10px;
  color:#2563eb;
  font-size:18px;
  transition:0.3s;
}

/* Overlay effect */
.card-img::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.card:hover .card-content::after{
  transform:translateX(5px);
}

@keyframes slideDown{
  0%{
    transform:translateY(-100%);
    opacity:0;
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}

/* TEXT ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translate(-50%,-30%);
  }
  to{
    opacity:1;
    transform:translate(-50%,-50%);
  }
}
/* KEYFRAMES */
@keyframes slideDownText{
  from{
    transform:translateY(-50px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

@keyframes slideUpText{
  from{
    transform:translateY(50px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

@keyframes fadeInBtn{
  from{
    opacity:0;
    transform:scale(0.8);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}
/* SECTION */
.features{
  padding:80px 40px;
  text-align:center;
  background:#fff;
}

.hover-advanced {
  position: relative;
  color: #333;
  font-size: 36px;
  text-decoration: none;
  text-align: center;
  margin:auto;

}

/* center se expand */
.hover-advanced::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #2ecc71, #27ae60);
  transition: 0.4s ease;
  transform: translateX(-50%);
}

.hover-advanced:hover::after {
  width: 100%;
}

/*contact*/

.hover-advanced1 {
  position: relative;
  color: #333;
  font-size: 36px;
  text-decoration: none;
  text-align: center;
  margin:auto;
  padding-top: 50px;
   margin:20px;
}

/* center se expand */
.hover-advanced1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #2ecc71, #27ae60);
  transition: 0.4s ease;
  transform: translateX(-50%);
}

.hover-advanced1:hover::after {
  width: 100%;
}

/* GRID */
.feature-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}
.info{
  max-width:1200px;
  margin:60px auto;
  padding:30px 40px;
  background:white;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  /* ANIMATION */
  opacity:1;
  transform:translateY(40px);
}

/* TEXT */
.info p{
  color:#555;
  line-height:1.8;
  font-size:16px;
  text-align:center;
}
.info:hover{
  opacity:1;
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
   background:#dddddd;

}

@keyframes fadeUpSmooth{
  0%{
    opacity:0;
    transform:translateY(60px) scale(0.98);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}


/*about*/
.section-title1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
  color: #1a535c;
  transition: all 0.3s ease;
}

/* underline */
.section-title1::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #28a745, #20c997);
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
  transition: all 0.4s ease; /*IMPORTANT */
}

/* hover effect */
.section-title1:hover::after {
  width: 120px;
  background: linear-gradient(to right, #2ecc71, #27ae60); /* fallback better */
}

/* text hover */
.section-title1:hover {
  color: #2ecc71; 
  transform: scale(1.05); 
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
  color: #1a535c;
  transition: all 0.3s ease;
}

/* underline */
.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #28a745, #20c997);
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
  transition: all 0.4s ease; /*IMPORTANT */
}

/* hover effect */
.section-title:hover::after {
  width: 120px;
  background: linear-gradient(to right, #2ecc71, #27ae60); /* fallback better */
}

/* text hover */
.section-title:hover {
  color: #2ecc71; 
  transform: scale(1.05); 
}


.section-subtitle {
  text-align: justify center;
  font-size:18px;
  color: black;
  max-width: 1200px;
  margin: auto ;
  line-height: 1.6;
  padding-bottom: 20px;
  padding-top: 20px;
}

.about-hero{
  height:50vh;
  background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.about-hero-content h1{
  font-size:40px;
  animation:fadeUp 1s ease;
}

.about-hero-content p{
  margin-top:10px;
  font-size:18px;
  opacity:0.9;
}

/* ABOUT SECTION */
.about-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:80px 80px; /* thoda side space */
  gap:50px;
  max-width:100%;
  margin:auto;
  background: #ffffff;
}

/* LEFT TEXT */
.about-left{
  flex:1;
  opacity:0;
  transform:translateX(-80px);
  transition:all 0.8s ease;
  font-size:16px;
  line-height:1.9;
  color:#444;
}


/* RIGHT IMAGE */
.about-right{
  flex:1;
  text-align:center;
  overflow:hidden; /* IMPORTANT */
  position:relative;
}

.about-right img{
  width:100%;
  max-width:450px;
  border-radius:20px;
  display:block;
  transition:transform 0.5s ease;
}

/* HOVER ZOOM */
.about-right:hover img{
  transform:scale(1.04);
  box-shadow: 0 0 20px color-mix(in srgb, var(--sapphire) 60%, transparent);
}

/* SHOW CLASS (TRIGGER ANIMATION) */
.about-left.show{
  opacity:1;
  transform:translateX(0);
}

.about-right.show{
  opacity:1;
  transform:translateX(0);
}

/* HEADING STYLE */
.about-left h2{
  font-size:32px;
  font-weight:700;
  color:#033f63;
  margin-bottom:20px;
  position:relative;
}

.about-right::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.2);
  opacity:0;
  transition:0.4s;
  border-radius:40px;
}
.about-right:hover::after{
  opacity:1;
}
/* UNDERLINE EFFECT */
.about-left h2::after{
  content:"";
  width:60px;
  height:4px;
  background:#104f55;
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:5px;
  transition:0.4s;
}

.about-left h2:hover::after{
  width:120px;
  background:var(--cornflower-ocean);
}

/* ABOUT SECTION */
.about-section1{
  display:flex;
 background:#ffffff;
  justify-content:space-between;
  align-items:center;
  padding:80px 80px; /* thoda side space */
  gap:50px;
  max-width:100%;
  margin:auto;
}

/* LEFT TEXT */
.about-left1{
  flex:1;
  opacity:0;
  transform:translateX(-80px);
  transition:all 0.8s ease;
  font-size:16px;
  line-height:1.9;
  color:#444;

  order: 2;
}
/* IMAGE */
.service-img{
  flex:1;
  overflow:hidden;
  border-radius:20px;
}

.service-img img{
  width:100%;
  height:350px;
  object-fit:cover;
  transition:0.5s;
}

.service-img:hover img{
  transform:scale(1.05);
}


/* RIGHT IMAGE */
.about-right1{
  flex:1;
  text-align:center;
  overflow:hidden; /* IMPORTANT */
  position:relative;
  border-radius:20px; 

    order: 1;
}

.about-right1 img{
  border-radius:20px;
  display:block;
  transition:transform 0.5s ease;
    width:100%;
  height:350px;
  object-fit:cover;
  transition:0.5s;
}

/* HOVER ZOOM */
.about-right1:hover img{
  transform:scale(1.05);
  box-shadow: 0 0 20px color-mix(in srgb, var(--sapphire) 60%, transparent);
}

/* SHOW CLASS (TRIGGER ANIMATION) */
.about-left1.show{
  opacity:1;
  transform:translateX(0);
}

.about-right1.show{
  opacity:1;
  transform:translateX(0);
}

/* HEADING STYLE */
.about-left1 h2{
  font-size:32px;
  font-weight:700;
   color:#033f63;
  margin-bottom:20px;
  position:relative;
}

.about-right1::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.2);
  opacity:0;
  transition:0.4s;
  border-radius:40px;
}
.about-right1:hover::after{
  opacity:1;
}
/* UNDERLINE EFFECT */
.about-left1 h2::after{
  content:"";
  width:60px;
  height:4px;
  background:#104f55;
  position:absolute;
  left:0;
  bottom:-8px;
  border-radius:5px;
  transition:0.4s;
}

.about-left1 h2:hover::after{
  width:120px;
  background:var(--cornflower-ocean);
}
@media (max-width:368px){
  .about-section{
    flex-direction: column; /* mobile me normal */
  }
}


.card{
  background:white;
  border:1.5px solid var(--pale-sky);
}

.clients {
  padding: 60px 20px;
  background: #f8fbff;
  text-align: center;
}


/* slider container */
.slider1 {
  overflow: hidden;
  position: relative;
}

/* track */
.slide-track1 {
  display:flex;
  width:min-content;
  animation: scroll 15s linear infinite;
  will-change: transform;}

/* each logo */
.slide1 {
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.slide1 img {
  height: 80px;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* hover */
.slide1 img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slide-track1:hover {
  animation-play-state: paused;
}

/*services*/
.services{
  padding:80px 40px;
  background:#f8fafc;
  text-align:center;
}

/* GRID */
.services-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
    padding:60px 20px;
      flex-wrap:wrap;

}
.services-intro{
  text-align:center;
  max-width:800px;
  margin:40px auto;


}

.services-intro h2{
  color:#1a535c;
  margin-bottom:10px;
}

.services-intro p{
  color:#555;
  line-height:1.6;

}
.services img{
  width:100%;
  height:400px;       /* fix height */
  object-fit:cover;   /* image crop ho jayegi nicely */
  border-radius:12px; /* optional for premium look */
}


/* CARD */
.service-card{
  background:white;
  padding:30px 25px;
  border-radius:18px;
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
 backdrop-filter: blur(10px);
  border:1px solid #e5e7eb;
}

/* ICON */
.service-card .icon1{
  font-size:40px;
  margin-bottom:15px;
  color:#57cc99;
  
  display:flex;
}

/* TITLE */
.service-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:var(--sapphire);

}

/* TEXT */
.service-card p{
  color:#555;
  font-size:14px;
  line-height:1.6;
}

/* HOVER EFFECT (MAIN MAGIC) */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
    background:linear-gradient(
    135deg,
    #ffffff,
    #e0f2fe
  );
}

/* TOP BORDER ANIMATION */
.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background: linear-gradient(
  90deg,
  #2ecc71,
  #27ae60
);
  transform:scaleX(0);
  transition:0.4s;
}

.service-card:hover::before{
  transform:scaleX(1);
}

/* ICON GLOW */
.service-card:hover .icon{
  color:var(--cornflower-ocean);
  transform:scale(1.1);
}

/* TEXT CHANGE */
.service-card:hover h3{
  color:var(--cornflower-ocean);
}

.services-section{
  margin: 20px;
  padding:20px 20px;
  background:#fff;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}


/* BUTTON */
.btn1{
  display:inline-block;
  padding:25px;
  background:#52b69a;
  color:white;
  border-radius:20px;
  text-decoration:none;
  transition:0.3s;
}

.btn1:hover{
  background:#283618;
 transform:scale(0.95); ;
}

/* BUTTON */
.btn2{
  max-width:100%;
  display:inline-block;
  padding:25px;
  background:#52b69a;
  color:white;
  border-radius:20px;
  text-decoration:none;
  transition:0.3s;
}

.btn2:hover{
  background:#283618;
 transform:scale(0.95); ;
}

.btn-wrapper{ display:flex; justify-content:center; }

@media(max-width:768px){
  .service-row{
    flex-direction:column;
  }

  .service-row.reverse{
    flex-direction:column;
  }
}
.stats {
  padding: 60px 20px;
  background: #f5f7fa;
}

/* MAIN FIX */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD DESIGN */
.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 220px; /* FIXED WIDTH important */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   transition: 0.3s;
}

.stat-card:hover {
   background: #073b4c;
  color: #edf6f9;
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* TEXT */
.stat-card h2 {
  font-size: 28px;
  color: #104f55;
}

.stat-card:hover h2{
 color: white;
}

.stat-card p {
  font-size: 14px;
}
.service-banner{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:15px;
  margin:30px 0;
}
/* =========================
   SERVICES CAROUSEL
========================= */

.services-carousel{
  padding:80px 20px;

  background:#f5f7fa;

  overflow:hidden;
}

/* CONTAINER */

.carousel-container{
  width:100%;

  overflow:hidden;

  position:relative;
}

/* TRACK */

.carousel-track{
  display:flex;

  align-items:center;

  gap:20px;

  width:max-content;

  animation:scroll 14s linear infinite;
}

/* ANIMATION */

@keyframes scroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* CARD */

.service-box{
    text-decoration:none;

  color:#0a2c5a;

  cursor:pointer;

  display:flex;

  flex-direction:column;

  justify-content:center;
  position:relative;
 

  min-width:260px;
  max-width:260px;

  height:220px;   /* FIX */

  padding:25px 20px;

  border-radius:18px;

  background:rgba(255,255,255,0.75);

  backdrop-filter:blur(10px);

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);

  flex-shrink:0;

  text-align:center;

  overflow:hidden;

  transition:0.4s ease;

  flex-direction:column;

  justify-content:center;    /* CENTER CONTENT */
}

/* HOVER */

.service-box:hover{
  transform:
  translateY(-8px)
  scale(1.03);

  background:
  linear-gradient(
    135deg,
    #2ecc71,
    #27ae60
  );

  color:#fff;
}

/* TITLE */

.service-box h4{
  font-size:20px;

  margin-bottom:14px;

  min-height:50px;   /* SAME HEADING SPACE */
}

.service-box a{

  text-decoration: none;
}

.service-box p{
  font-size:14px;

  line-height:1.6;

  min-height:70px;   /* SAME TEXT SPACE */
}

/* BORDER EFFECT */

.service-box::before{
  content:"";

  position:absolute;

  inset:0;

  border-radius:18px;

  padding:2px;

  background:
  linear-gradient(
    to right,
    #2ecc71,
    #27ae60
  );

  -webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;

  opacity:0;

  transition:0.3s;
}

.service-box:hover::before{
  opacity:1;
}

/* PAUSE */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}


/* LEFT SIDE */
.contact-section{
  padding:80px 20px;
  background:#f8fafc;

}

/* CONTAINER */
.form-container{
   width:100%;
  max-width:850px;
  margin:auto;
  background:white;
  padding:40px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  height:auto;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* ROW */
.row{
  display: flex;
  flex-wrap: wrap;  
  gap: 10px;
}

.row .input-box{
  flex:1;
   width: 100%;
}

/* INPUT BOX */
.input-box{
  display:flex;
  flex-direction:column;
  margin-bottom:20px;
}

.input-box label{
  margin-bottom:6px;
  font-weight:500;
  color:#333;
}

.input-box input,
.input-box select,
.input-box textarea{
  padding:12px;
  border:1.5px solid #ccc;
  border-radius:8px;
  outline:none;
  font-size:14px;
  transition:0.3s;
}

/* FOCUS EFFECT */
.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
  border-color:var(--sapphire);
  box-shadow:0 0 8px rgba(3,83,164,0.2);
}

/* BUTTON */
.submit-btn{
  width:100%;
  padding:12px;
  border:none;
  background:var(--sapphire);
  color:white;
  font-size:16px;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

/* BUTTON HOVER */
.submit-btn:hover{
  background:var(--cornflower-ocean);
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(3,83,164,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){
  .row{
    flex-direction:column;
  }
}



/* RESPONSIVE */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }
}

/* MAP */
.map-section iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:15px;
  margin-top:40px;
}

/* =========================
GALLERY SECTION
========================= */

.gallery-section{
  padding:100px 7%;

  background:
  linear-gradient(
    135deg,
    #f8fbff,
    #eef7ff
  );
}

/* HEADING */

.gallery-heading{
  text-align:center;

  margin-bottom:50px;
}

.gallery-heading h2{
  font-size:48px;

  color:#0a2c5a;

  margin-bottom:18px;
}

.gallery-heading p{
  max-width:750px;

  margin:auto;

  color:#555;

  line-height:1.8;

  font-size:17px;
}

/* FILTER */

.gallery-filter{
  display:flex;

  justify-content:center;

  flex-wrap:wrap;

  gap:15px;

  margin-bottom:50px;
}

.gallery-filter button{
  padding:12px 25px;

  border:none;

  border-radius:40px;

  background:white;

  color:#0a2c5a;

  font-weight:600;

  cursor:pointer;

  transition:0.4s ease;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);
}

.gallery-filter button:hover,
.gallery-filter .active{
  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:white;
}

/* GRID */

.gallery-container{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  grid-auto-rows:260px;

  gap:25px;
}

/* CARD */

.gallery-card{
  position:relative;

  overflow:hidden;

  border-radius:28px;

  cursor:pointer;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);
}

/* DIFFERENT SIZES */

.gallery-card.tall{
  grid-row:span 2;
}

.gallery-card.wide{
  grid-column:span 2;
}

/* IMAGE */

.gallery-card img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

/* OVERLAY */

.gallery-overlay{
  position:absolute;

  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(0,0,0,0.1),
    rgba(10,44,90,0.88)
  );

  display:flex;

  flex-direction:column;

  justify-content:flex-end;

  padding:30px;

  opacity:0;

  transition:0.5s ease;
}

/* TEXT */

.gallery-overlay h3{
  color:white;

  font-size:28px;

  margin-bottom:10px;
}

.gallery-overlay p{
  color:#f1f1f1;

  line-height:1.7;

  margin-bottom:18px;

  font-size:15px;
}

/* ICON */

.gallery-overlay a{
  width:50px;
  height:50px;

  border-radius:50%;

  background:white;

  color:#0a2c5a;

  display:flex;

  align-items:center;
  justify-content:center;

  text-decoration:none;

  transition:0.4s ease;
}

.gallery-overlay a:hover{
  background:#91D06C;

  color:white;

  transform:rotate(12deg);
}

/* HOVER */

.gallery-card:hover img{
  transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

/* MOBILE */

@media(max-width:430px){

  .gallery-section{
    padding:70px 5%;
  }

  .gallery-heading h2{
    font-size:32px;
  }

  .gallery-heading p{
    font-size:15px;
  }

  .gallery-container{
    grid-template-columns:1fr;

    grid-auto-rows:240px;
  }

  .gallery-card.tall,
  .gallery-card.wide{
    grid-column:auto;
    grid-row:auto;
  }

  .gallery-overlay{
    opacity:1;
  }

  .gallery-overlay h3{
    font-size:22px;
  }

}

/* BUTTON */
.read-more{
  display:inline-block;
  margin-top:10px;
  color:#1b4332;
  font-weight:500;
  text-decoration:none;
  transition:0.3s;
}

.read-more:hover{
  color:var(--cornflower-ocean);
}

/* Learn more 1 */
.service-hero1{
  padding:100px 20px 60px;
  text-align:center;
  background:linear-gradient(rgba(6,26,64,0.9), rgba(3,83,164,0.9)),
  url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600');
  background-size:cover;
  color:white;
}

.service-hero1 h1{
  font-size:40px;
  margin-bottom:10px;
}

.service-hero1 p{
  max-width:700px;
  margin:auto;
  opacity:0.9;
}

.iso-services{
  padding:80px 40px;
  background:#f8fafc;
  text-align:center;
}

.iso-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}


.cta-section{
  text-align:center;

  padding:80px 20px;
  background:var(--prussian-blue);
  color:white;
}
.product-services{
  padding:80px 40px;
  background:#ffffff;
  text-align:center;
}

.product-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:10px;
  max-width:1100px;
  margin:auto;
}

/* CARD */
.product-card{
  background:#f8fafc;
  padding:25px;
  border-radius:15px;
  text-align:left;

  border:1px solid #e5e7eb;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* TOP LINE EFFECT */
.product-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    var(--sapphire),
    var(--cornflower-ocean)
  );
  transform:scaleX(0);
  transition:0.4s;
}

.product-card:hover::before{
  transform:scaleX(1);
}

/* TITLE */
.product-card h3{
  color:var(--sapphire);
  margin-bottom:8px;
}

/* TEXT */
.product-card p{
  color:#555;
  font-size:14px;
  line-height:1.6;
}

/* HOVER */
.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  background:white;
}
#toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: none;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer{
  background: linear-gradient(135deg,#07142c,#0a1d3f);
  color: white;
  padding: 70px 50px 20px;
}

/* CONTAINER */
.footer-container{
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 50px;
  text-align: left;
  font-size: 18px;
}

/* HEADINGS */
.footer-box h3{
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  color: #fff;
}

/* UNDERLINE */
.footer-box h3::after{
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,#007bff,#8bc34a);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
  transition: 0.4s ease;
}

.footer-box h3:hover::after{
  width: 110px;
}

/* SUB HEADING */
.footer-box h4{
  margin-top: 30px;
  margin-bottom: 15px;
  color: #8bc34a;
}

/* LIST */
.footer-box ul{
  list-style: none;
  padding: 0;
}

.footer-box ul li{
  margin-bottom: 14px;
}

/* LINKS */
.footer-box ul li a{
  color: #d6d6d6;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

/* HOVER */
.footer-box ul li a:hover{
  color: #8bc34a;
  padding-left: 8px;
}

/* PARAGRAPH */
.footer-box p{
  color: #d6d6d6;
  line-height: 1.9;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom{
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
}

.footer-bottom p{
  color: #ccc;
  font-size: 15px;
}

/* MOBILE */
@media(max-width:768px){

  .footer{
    padding: 60px 25px 20px;
  }

  .footer-container{
    gap: 40px;
  }

}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #1e293b;
  padding: 10px;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #00B16A;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}


.home-about {
  background: #f5f7fa;
  padding:35px;

}



.container {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
}

.about-content {
  flex: 1;
}

/* HEADING */
.about-content1 h1{
  font-size: 55px;
  color: #0a2c5a;
  text-align: center;
  position: relative;
  font-weight: 800;
}

.about-content1 h1::after{
  content: "";
  width: 100px;
  height: 4px;
    border-radius:20px;

  background:linear-gradient(
    to right,
    #91D06C,
    #0077b6
  );

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 10px;
  transition: 0.4s ease;
}

.about-content1 h1:hover::after{
  width: 350px;
  background:linear-gradient(
    to right,
    #91D06C,
    #0077b6
  );
}
.container p{ 
  font-size: 20px; 
  line-height: 1.4; 
  color: #333; 
  text-align:justify; 
  width:100%; 
  max-width: 130%; 
  padding:50px; }

.about-content p{
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  width: 250%;
  max-width: 130%;
  padding:auto;
}

.about-content btn1{
  padding:20px;
  align-items: center;
}


.about-image {  
  flex: 1;
  display: flex;
  justify-content: flex-end; }

.about-image img {
  border-radius: 15px;
  width: 75%;
  height:110%;
  max-width: 596px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* RESPONSIVE */

@media(max-width:768px){


  .about-section{
    display:flex;
    flex-direction:column;

    align-items:center;

    gap:30px;

    padding:30px 20px;
  }

  .about-left{
    width:100%;
  }

  .about-left p{
    font-size:15px;

    line-height:1.4;

    text-align:justify;
  }

  .about-image{
    width:100%;

    display:flex;

    justify-content:center;
  }

  .about-image img{
    width:100%;

    max-width:320px;

    height:auto;

    border-radius:20px;

    object-fit:cover;
  }

  .btn1{
    display:inline-block;

    margin-top:20px;
  }

}

@media(max-width:768px){


  .about-section1{
    display:flex;
    flex-direction:column;

    align-items:center;

    gap:30px;

    padding:30px 20px;
  }

  .about-left1{
    width:100%;
  }

  .about-left1 p{
    font-size:16px;

    line-height:1.9;

    text-align:justify;
  }

  .about-image1{
    width:100%;

    display:flex;

    justify-content:center;
  }

  .about-image1 img{
    width:100%;

    max-width:320px;

    height:auto;

    border-radius:20px;

    object-fit:cover;
  }

  .btn1{
    display:inline-block;

    margin-top:20px;
  }

}

.why-section {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

.why-cards {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
  color:#1a535c;
}

/* GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 21px;
   padding:40px;
}

/* CARD */
.why-card {
  height: 350px;
  width:300px;
  perspective: 1000px;
 
}

/* INNER FLIP */
.card-inner {
  position: relative;          
  transform-style: preserve-3d;
  width: 100%;
  height: 260px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* HOVER FLIP */
.why-card:hover .card-inner {
   transform: rotateY(180deg);
}

/* FRONT + BACK */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  padding: 25px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* CENTER EVERYTHING */
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* FRONT */
.card-front {
  background: #2fbf71;
  color: white;
}

/* BACK */
.card-back {
  background:linear-gradient(
    135deg,
    rgba(10,44,90,0.88),
    rgba(0,119,182,0.85)
  );
  color: white;
  transform: rotateY(180deg);
}

/* ICON */
.icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--sapphire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
}

.card-front h3 {
  font-size: 18px;
  margin: 5px 0;
}

.card-front p,
.card-back p {
  font-size: 14px;
  line-height: 1.6;
  color: white;
  max-width: 220px;
}

/* HOVER SHADOW EFFECT */
.why-card:hover .card-front,
.why-card:hover .card-back {
   box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* SUBTITLE */
.iso-subtitle{  
  max-width: 1350px;
  margin: auto ;  
  font-size: 19px;  
  color: #495057;  
  line-height: 1.7;
  text-align: center;
}

/* GRID */
.iso-container{  
  display: grid;  
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));  
  gap: 30px;  
  max-width: 1200px;  
  margin: auto;}

  .iso-subtitle p{
    width:80%;
  color: #555;
  line-height: 1.6;
}


  /* CARDS */
  .iso-card{  
    background: white;  
    padding: 35px 25px;  
    border-radius: 22px;  
    border-top: 5px solid #5d7f53;  
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);  
    transition: 0.4s ease;  
    position: relative;  
    overflow: hidden;}

  /* TOP GLOW EFFECT */
  .iso-card::before{  content: "";  
    position: absolute;  
    top: 0;  left: -100%;  
    width: 100%;  
    height: 100%;  
    background: linear-gradient( 120deg,transparent,rgba(0,123,255,0.08),rgba(139,195,74,0.08),transparent);  
    transition: 0.6s;
  }
  .iso-card:hover::before{
  left: 100%;}

  /* HOVER */
  .iso-card:hover{  
    transform: translateY(-10px);  
    border-top: 5px solid #007bff;  
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);}

  /* TITLE */
  .iso-card h3{  
    font-size: 28px;  
    color: #0a2c5a;  
    margin-bottom: 15px;}

  /* TEXT */
  .iso-card p{  
    color: #555;  
    line-height: 1.6;}

  .what-iso{
  width:100%;

  padding:80px 8%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:60px;

  background:#f8fafc;

  flex-wrap:wrap;
}

/* WHAT IS ISO HEADING */

.what-iso .section-title{ font-size:32px;

  color:#0a2c5a;

  text-align:left;

  margin-bottom:35px;

  position:relative;

  display:inline-block;

  transition:0.4s ease;
}

/* LINE */

.what-iso .section-title::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-10px;

  width:90px;
  height:4px;

  border-radius:20px;

  background:linear-gradient(
    to right,
    #91D06C,
    #0077b6
  );

  transition:0.4s ease;
}

/* HOVER ANIMATION */

.what-iso .section-title:hover{
  color:#0077b6;

  transform:translateX(5px);
}

.what-iso .section-title:hover::after{
  width:100%;
}

.about-image{
  flex:1;
  overflow:hidden;
  border-radius:20px;
}

.about-image img{
  width:75%;
  height:300px;
  object-fit:cover;
  transition:0.5s;
}

.about-image:hover img{
  transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

  .what-iso .section-title{
    font-size:34px;
    text-align:center;
  }

  .what-iso .section-title::after{
    left:50%;
    transform:translateX(-50%);
  }

}


/* STATS SECTION */
.stats-section{
  background: linear-gradient(135deg,#07142c,#0a2c5a);
  padding: 80px 40px;
}

.stats-container{
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
}

.stat-box{
  text-align: center;
  color: white;
  transition: 0.4s ease;
}

.stat-box i{
  font-size: 55px;
  margin-bottom: 25px;
  color: #8bc34a;
}

.stat-box h2{
  font-size: 65px;
  margin-bottom: 10px;
}

.stat-box p{
  font-size: 20px;
  color: #ddd;
}

.stat-box:hover{
  transform: translateY(-10px);
}

.stat-box:hover i{
  color: white;
}


/* STAY CONNECTED */

.stay-connected{
  padding:100px 8%;

  text-align:center;

  background:linear-gradient(
    135deg,
    #f5fff8,
    #eef7ff
  );

  position:relative;

  overflow:hidden;
}

/* GLOW CIRCLES */

.stay-connected::before,
.stay-connected::after{
  content:"";

  position:absolute;

  width:250px;
  height:250px;

  border-radius:50%;

  filter:blur(90px);

  z-index:0;
}

.stay-connected::before{
  background:#91D06C;

  top:-80px;
  left:-80px;

  opacity:0.25;
}

.stay-connected::after{
  background:#0077b6;

  bottom:-80px;
  right:-80px;

  opacity:0.2;
}

/* CONTENT ABOVE */

.stay-connected *{
  position:relative;
  z-index:2;
}

/* HEADING */

.section-title{
  font-size:40px;

  color:#0a2c5a;

  margin-bottom:20px;

  transition:0.4s ease;
}

.section-title:hover{
  transform:scale(1.03);

  color:#0077b6;
}

/* TEXT */

.connect-text{
  max-width:700px;

  margin:0 auto 60px;

  font-size:18px;

  line-height:1.9;

  color:#555;
}

/* ICON WRAPPER */

.connect-icons{
  display:flex;

  justify-content:center;
  align-items:center;

  gap:30px;

  flex-wrap:wrap;
}

/* CARD */

.connect-card{
  width:150px;
  height: 200px;

  padding:35px 25px;

  border-radius:30px;

  background:rgba(255,255,255,0.7);

  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.4);

  text-decoration:none;

  color:#0a2c5a;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition:0.45s ease;

  display:flex;
  flex-direction:column;
  align-items:center;

  gap:18px;
}

/* ICON */

.connect-card i{
  font-size:24px;

  width:85px;
  height:85px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:white;

  box-shadow:0 10px 25px rgba(0,119,182,0.25);

  transition:0.4s ease;
}

/* TEXT */

.connect-card span{
  font-size:18px;

  font-weight:600;
}

/* HOVER */

.connect-card:hover{
  transform:
    translateY(-15px)
    scale(1.05);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.15);
}

.connect-card:hover i{
  transform:rotate(8deg) scale(1.1);
}

/* MOBILE ME SAB ICONS EK LINE ME */

@media(max-width:780px){

  .connect-icons{
    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:8px;

    flex-wrap:nowrap;

    overflow:visible;
  }

  /* scrollbar hide */
  .connect-icons::-webkit-scrollbar{
    display:none;
  }

   .connect-card{
    width:23%;

    min-width:auto;

    height:115px;

    padding:15px 5px;

    border-radius:16px;
  }

    .connect-card i{
    width:45px;
    height:45px;

    font-size:16px;
  }

  .connect-card span{
    font-size:11px;

    text-align:center;
  }

}
  
.section-title{
    font-size:36px;
  }

  .connect-card{
    width:180px;

    padding:28px 18px;
  }

  .connect-card i{
    width:50px;
    height:50px;

    font-size:34px;
  }

}

/* RIGHT SIDE IMAGE */

.about-image{
  flex:1;

  display:flex;

  justify-content:flex-end;

  align-items:center;
}

/* IMAGE */

.about-image img{
  width:100%;

  max-width:500px;

  border-radius:25px;

  object-fit:cover;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.15);

  transition:0.5s ease;
}

/* HOVER EFFECT */

.about-image img:hover{
  transform:
    scale(1.03)
    translateY(-8px);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

  .about-image{
    justify-content:center;

    margin-top:30px;
  }

  .about-image img{
    max-width:100%;
  }

}

/* ISO CERTIFICATES SECTION */

.iso-certificates-section{
  padding:100px 8%;

  background:#f8fbff;
}

/* TOP AREA */

.iso-top{
  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;

  margin-bottom:60px;

  flex-wrap:wrap;
}

/* SUBTITLE */

.iso-subtitle{
  max-width:1200px;

  color:#555;

  line-height:1.8;

  margin-top:15px;

  font-size:17px;
  font-weight:200px;
}

/* BUTTON */

.cta-btn{
  text-decoration:none;

  background:linear-gradient(
    to right,
    #91D06C,
    #0077b6
  );

  color:white;

  padding:14px 28px;

  border-radius:40px;

  font-weight:600;

  transition:0.4s ease;
}

/* HOVER */

.cta-btn:hover{
  transform:
    translateY(-5px)
    scale(1.04);

  box-shadow:
    0 15px 30px rgba(0,119,182,0.25);
}

/* GRID */

.iso-certificate-container{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}

/* CARD */

.iso-certificate-card{
  background:white;

  border-radius:25px;

  overflow:hidden;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

  transition:0.5s ease;
}

/* IMAGE */

.iso-certificate-img{
  overflow:hidden;
}

.iso-certificate-img img{
  width:100%;

  height:240px;

  object-fit:cover;

  transition:0.5s ease;
}

/* CONTENT */

.iso-certificate-content{
  padding:30px;
}

.iso-certificate-content span{
  color:#0077b6;

  font-weight:600;

  font-size:14px;
}

.iso-certificate-content h3{
  margin:18px 0;

  color:#0a2c5a;

  font-size:24px;

  line-height:1.4;

  transition:0.4s ease;
}

.iso-certificate-content p{
  color:#666;

  line-height:1.8;

  margin-bottom:25px;
}

/* LINK */

.iso-certificate-content a{
  text-decoration:none;

  color:#0077b6;

  font-weight:700;

  transition:0.3s ease;
}

/* HOVER */

.iso-certificate-card:hover{
  transform:
    translateY(-12px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.15);
}

.iso-certificate-card:hover img{
  transform:scale(1.08);
}

.iso-certificate-card:hover h3{
  color:#0077b6;
}

/* MOBILE responsive 430px*/


/* =========================MOBILE HEADER
   ========================= */

@media(max-width:430px){

  /* BODY */

  body{ overflow-x:hidden;

    padding-top:115px; }

  /* TOP STRIP */

  .top-strip{ position:fixed;

    top:0; left:0;

    width:100%;

    padding:8px 10px;

    z-index:9998; }

  /* HEADER */

  .header{ position:fixed; 
    top:54px; 
    left:8px; 
    right:8px;

    height:70px;

    width:95%;

    padding:auto;

    background:#fff;

    border-radius:20px;

    display:flex; 
    align-items:center; 
    justify-content:space-between;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    z-index:9998;

    overflow:visible;    
    max-height:100%;}

    .about-content1 h1{
      font-size: 30px;
    }

  /* LOGO */

  .logo{ display:flex; align-items:center;

    gap:8px;

    flex:1;

    min-width:0; }

  .logo1 img{ width:40px; height:40px;

    object-fit:contain; }

  .logo h1{ font-size:12px;

    line-height:1.3;

    color:#0a2c5a;

    margin:0;

    white-space:normal;

    word-break:normal; }

  /* DESKTOP MENU */

  .menu{ display:none ; }

  /* RIGHT */

  .right-side{ display:flex; align-items:center;

    gap:8px;

    flex-shrink:0; }

  /* CTA BUTTON */

  .cta-btn{ display:flex;

    align-items:center; justify-content:center;

    padding:8px 12px;

    font-size:11px;

    border-radius:30px;

    white-space:nowrap; }

  /* HAMBURGER */

  .hamburger{ display:flex;

    align-items:center; 
    justify-content:center;

    width:38px; 
    height:38px;

    border-radius:10px;

    background:#91D06C;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:100001; }}

  /* MOBILE MENU */

  .mobile-menu{ position:fixed;

    top:0; left:-100%;

    width:82%;

    height:100vh;

    background:#fff;

    padding:140px 22px 40px;

    overflow-y:auto;

    transition:0.4s ease;

    z-index:100000;  
 }

  .mobile-menu.active{ 
    left:0; 
  }

  /* MOBILE MENU LINKS */

.mobile-menu a{
  text-decoration:none;

  color:#0a2c5a;

  font-size:17px;

  font-weight:600;

  padding:14px 18px;

  border-radius:14px;

  transition:0.3s ease;

  display:block;
}

/* TAP / HOVER EFFECT */

.mobile-menu a:hover,
.mobile-menu a:active{
  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:#fff;

  transform:translateX(6px);
}

/* ACTIVE PAGE */

.mobile-menu a.active{
  background:#0a2c5a;

  color:#fff;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.15);
}
.mobile-menu a{
  -webkit-tap-highlight-color:transparent;
}

 

/*iso certificate card*/

@media screen and (max-width:430px){

  .iso-certificates-section{
    padding:50px 18px;
  }

  .iso-top{
    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:15px;
  }

  .iso-top h2{
    font-size:28px;

    line-height:1.3;
  }

  .iso-top p{
    font-size:14px;

    line-height:1.7;
  }
}


/* CLOSE BUTTON */

.close-menu{
  position:absolute;

  top:18px;
  right:18px;

  width:40px;
  height:40px;

  background:#023047;

  border-radius:50%;

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;

  font-weight:bold;

  cursor:pointer;

  z-index:999999;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.2);

  transition:0.4s ease;
}

/* HOVER */

.close-menu:hover{
  transform:
    rotate(180deg)
    scale(1.08);

  background:#14213d;
}



.service-box:hover{
  transform:translateY(-10px);
}



.flow-wrapper{
  position:relative;

  max-width:900px;
  margin:auto;

  display:flex;
  flex-direction:column;

  gap:40px;
}

/* CENTER LINE */

.flow-wrapper::before{
  content:"";

  position:absolute;

  left:45px;
  top:0;

  width:6px;
  height:100%;

  border-radius:20px;

  background:linear-gradient(
    to bottom,
    #91D06C,
    #0077b6
  );
}

/* STEP */

.flow-step{
  display:flex;

  align-items:flex-start;

  gap:30px;

  position:relative;
}

/* NUMBER + ICON */

.step-number{
  min-width:90px;
  height:90px;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;

  font-size:30px;

  position:relative;

  z-index:2;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.15);

  transition:0.5s ease;
}

/* ICON INSIDE */

.step-number i{
  font-size:32px;
}

/* CARD */

.flow-card{
  flex:1;

  background:white;

  padding:30px;

  border-radius:25px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  transition:0.4s ease;

  position:relative;

  overflow:hidden;
}

/* SIDE EFFECT */

.flow-card::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:7px;
  height:100%;

  background:linear-gradient(
    #91D06C,
    #0077b6
  );
}

/* TEXT */

.flow-card h3{
  font-size:26px;
  color:#0a2c5a;
  margin-bottom:15px;
}

.flow-card p{
  font-size:16px;
  line-height:1.9;
  color:#555;
}

/* ARROW */

.flow-arrow{
  position:absolute;

  left:38px;
  bottom:-28px;

  z-index:5;
}

.flow-arrow i{
  font-size:26px;
  color:#0077b6;
}

/* LAST ARROW HIDE */

.flow-step:last-child .flow-arrow{
  display:none;
}

/* HOVER */

.flow-step:hover .flow-card{
  transform:translateY(-8px);
}

.flow-step:hover .step-number{
  transform:
  scale(1.08)
  rotate(8deg);
}

/* =======================================
MOBILE RESPONSIVE
======================================= */

@media(max-width:430px){

  .flow-wrapper::before{
    left:30px;
  }

  .flow-step{
    gap:18px;
  }

  .step-number{
    min-width:60px;
    height:60px;

    font-size:22px;
  }

  .step-number i{
    font-size:22px;
  }

  .flow-card{
    padding:22px;
    border-radius:20px;
  }

  .flow-card h3{
    font-size:20px;
  }

  .flow-card p{
    font-size:14px;
    line-height:1.7;
  }

  .flow-arrow{
    left:20px;
    bottom:-24px;
  }

  .flow-arrow i{
    font-size:20px;
  }

}

/* =========================
   PROCESS SECTION
========================= */

.process-section{
  padding:120px 8%;
  background:#f5faff;

  position:relative;
  overflow:hidden;
}

/* CENTER LINE */

.process-container{
  max-width:1500px;
  margin:auto;

  position:relative;
}

/* VERTICAL LINE */

.process-container::before{
  content:"";

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:5px;
  height:100%;

  background:linear-gradient(
    to bottom,
    #91D06C,
    #0077b6
  );

  border-radius:20px;
}

/* STEP */

.process-step{
  width:45%;

  background:#fff;

  padding:30px;

  border-radius:28px;

  position:relative;

  margin-bottom:80px;

  box-shadow:0 15px 40px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

/* LEFT BOX */

.process-step:nth-child(odd){
  left:50%;
}

/* RIGHT BOX */

.process-step:nth-child(even){
  left:55%;
}

/* HOVER */

.process-step:hover{
  transform:translateY(-10px);

  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */

.process-icon{
  width:85px;
  height:85px;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  box-shadow:0 10px 25px rgba(0,119,182,0.25);

  transition:0.4s ease;
}

.process-icon i{
  font-size:34px;
  color:#fff;
}

.process-step:hover .process-icon{
  transform:rotate(10deg) scale(1.08);
}

/* CONTENT */

.process-content h3{
  font-size:28px;

  color:#0a2c5a;

  margin-bottom:14px;
}

.process-content p{
  font-size:17px;

  line-height:1.8;

  color:#555;
}

/* CONNECTOR DOT */

.process-step::after{
  content:"";

  position:absolute;

  top:50px;

  width:24px;
  height:24px;

  border-radius:50%;

  background:#0077b6;

  border:5px solid #fff;

  box-shadow:0 0 0 5px rgba(0,119,182,0.15);
}

/* LEFT DOT */

.process-step:nth-child(odd)::after{
  right:-63px;
}

/* RIGHT DOT */

.process-step:nth-child(even)::after{
  left:-63px;
}

/* ARROW */

.process-arrow{
  display:none;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:430px){

  .process-section{
    padding:80px 5%;
  }

  .process-container::before{
    left:25px;
  }

  .process-step{
    width:100%;

    left:0 !important;

    padding:24px;

    margin-bottom:45px;

    padding-left:75px;
  }

  .process-step::after{
    left:13px !important;

    top:38px;
  }

  .process-icon{
    width:60px;
    height:60px;

    margin-bottom:18px;
  }

  .process-icon i{
    font-size:24px;
  }

  .process-content h3{
    font-size:21px;
  }

  .process-content p{
    font-size:15px;

    line-height:1.7;
  }

}

/* =======================================
BRANCHES SECTION
======================================= */

.branches-section{
  padding:100px 7%;
  background:#f8fbff;
}

/* HEADING */

.branches-heading{
  text-align:center;
  margin-bottom:70px;
}

.branches-heading h2{
  font-size:48px;
  color:#0a2c5a;
  margin-bottom:18px;
}

.branches-heading p{
  max-width:750px;
  margin:auto;

  font-size:18px;
  line-height:1.8;

  color:#555;
}

/* CONTAINER */

.branches-container{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}

/* CARD */

.branch-card{
  position:relative;
  min-height:220PX;
  overflow:hidden;

  border-radius:28px;
  padding:30px 22px;

  cursor:pointer;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  transition:0.5s ease;
}


/* SIMPLE CONTENT */

.branch-basic{
  position:relative;

  bottom:0;
  left:0;

  min-height:220PX;

  height:200px;

  padding:28px;

  background:white;

  transition:0.5s ease;

  z-index:2;
}

.branch-basic h3{
  font-size:28px;
  color:#0a2c5a;
  margin-bottom:10px;
}

.branch-basic p{
  color:#555;
  font-size:14px;
}

/* HOVER CONTENT */

.branch-hover{
  position:absolute;

  inset:0;

  background:linear-gradient(
    135deg,
    rgba(10,44,90,0.88),
    rgba(0,119,182,0.85)
  );

  display:flex;
  flex-direction:column;

  justify-content:center;
  align-items:center;

  text-align:center;

  padding:25px;

  opacity:0;

  transform:translateY(100%);

  transition:0.6s ease;

  z-index:3;
}

/* TEXT */

.branch-hover h3{
color:white;

  font-size:22px;

  margin-bottom:12px;
}

.branch-hover p{
  color:#f1f1f1;

  line-height:1.9;

  font-size:14px;

  margin-bottom:28px;
}

/* BUTTON */

.branch-hover a{
  text-decoration:none;

  background:white;

  color:#0a2c5a;

  padding:10px 10px;

  border-radius:40px;

  font-weight:600;

  transition:0.4s ease;
}

/* HOVER EFFECT */

.branch-card:hover .branch-hover{
  opacity:1;

  transform:translateY(0);
}

.branch-card:hover img{
  transform:scale(1.12);
}

.branch-card:hover{
  transform:translateY(-12px);
}

/* BUTTON */

.branch-hover a:hover{
  transform:scale(1.08);

  background:#91D06C;

  color:white;
}

/* =======================================
MOBILE RESPONSIVE
======================================= */

@media(max-width:430px){

  .branches-section{
    padding:20px;
  }

  .branches-heading h2{
    font-size:32px;
    padding:10px;
  }

  .branches-heading p{
    font-size:15px;
  }

  .branches-container{
    gap:25px;
    grid-template-columns:1fr;
  }

  .branch-card{
    min-height:200px;

    padding:24px 18px;
  }

  .branch-basic{
    padding:20px;
    font-size:20px;
  }

  .branch-basic h3{
    font-size:22px;
  }

  .branch-hover{
    padding:25px;
  }

  .branch-hover h3{
    font-size:20px;
  }

  .branch-hover p{
    font-size:12px;
  }

}

/* ICONS */

.branch-hover i{
  margin-right:5px;
  padding-top:5px;

  color:#91D06C;
}

/* BUTTON ICON */

.branch-hover a i{
  margin-left:5px;

  transition:0.3s ease;
}

.branch-hover a:hover i{
  transform:translateX(4px);
}

/* CONTACT ICON */

.contact-icon{
  width:70px;
  height:70px;

  margin:0 auto 18px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  box-shadow:
  0 10px 25px rgba(0,119,182,0.2);

  transition:0.4s ease;
}

.contact-icon i{
  font-size:26px;

  color:#fff;
}

/* HOVER EFFECT */

.info-box:hover .contact-icon{
  transform:rotate(10deg) scale(1.08);
}

/* CONTACT SECTION */

.contact-section1{
  padding:100px 8%;

  background:#f8fbff;

  display:flex;
  justify-content:center;
  align-items:center;
}

/* CONTAINER */

.contact-container{
  width:100%;
  max-width:850px;

  display:flex;
  justify-content:center;
}

/* CONTACT CARD */

.contact-info{
  width:100%;

  background:#fff;

  padding:55px 45px;

  border-radius:35px;

  text-align:center;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  position:relative;

  overflow:hidden;
}

/* TOP BORDER EFFECT */

.contact-info::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:7px;

  background:linear-gradient(
    90deg,
    #91D06C,
    #0077b6
  );
}

/* HEADING */

.section-title1{
  font-size:42px;

  color:#0a2c5a;

  margin-bottom:18px;
}

/* TEXT */

.contact-info > p{
  font-size:18px;

  color:#555;

  line-height:1.8;

  margin-bottom:40px;
}

/* INFO BOX */

.info-box{
  background:#f5faff;

  padding:25px;

  border-radius:22px;

  margin-bottom:22px;

  transition:0.4s ease;

  border:1px solid #e6eef7;
}

/* HOVER */

.info-box:hover{
  transform:translateY(-8px);

  background:#fff;

  box-shadow:
  0 15px 30px rgba(0,0,0,0.08);
}

/* TITLE */

.info-box h4{
  font-size:22px;

  color:#0077b6;

  margin-bottom:10px;
}

/* CONTENT */

.info-box p{
  font-size:16px;

  line-height:1.8;

  color:#555;
}

/* MOBILE */

@media(max-width:430px){

  .contact-section{
    padding:70px 5%;
  }

  .contact-info{
    padding:40px 22px;

    border-radius:25px;
  }

  .section-title1{
    font-size:30px;
  }

  .contact-info > p{
    font-size:15px;

    margin-bottom:28px;
  }

  .info-box{
    padding:18px;
  }

  .info-box h4{
    font-size:18px;
  }

  .info-box p{
    font-size:14px;

    line-height:1.7;
  }

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:900px){

  .services{
    padding:70px 25px;
  }

  .services-container{
    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

    padding:40px 10px;
  }

  .services img{
    height:300px;
  }

  .service-row{
    gap:30px;
  }

  .service-content h2{
    font-size:28px;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:430px){

  /* MAIN SECTION */

  .services{
    padding:60px 15px;
  }

  /* INTRO */

  .services-intro{
    margin:20px auto 35px;
  }

  .services-intro h2{
    font-size:28px;

    line-height:1.3;
  }

  .services-intro p{
    font-size:15px;

    line-height:1.7;
  }

  /* GRID */

  .services-container{
    grid-template-columns:1fr;

    gap:20px;

    padding:25px 0;
  }

  /* CARD */

  .service-card{
    padding:22px 18px;

    border-radius:20px;
  }

  /* IMAGE */

  .services img{
    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:14px;
  }

  /* ICON */

  .service-card .icon1{
    font-size:32px;

    margin-bottom:12px;
  }

  /* TITLE */

  .service-card h3{
    font-size:20px;

    line-height:1.4;
  }

  /* TEXT */

  .service-card p{
    font-size:14px;

    line-height:1.7;
  }

  /* SERVICES SECTION */

  .services-section{
    margin:10px;

    padding:15px;
  }
}
  @media(max-width:430px){

  .section-title{
    font-size:28px;

    line-height:1.3;

    margin-bottom:28px;

    text-align:center;
  }


}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  /* SECTION */

  .stay-connected{
    padding:70px 4%;
  }

  /* TITLE */

  .section-title{
    font-size:26px;

    line-height:1.3;

    margin-bottom:15px;
  }

  /* TEXT */

  .connect-text{
    font-size:14px;

    line-height:1.7;

    margin:0 auto 35px;
  }

  /* ICON WRAPPER */

  .connect-icons{
    display:flex;

    justify-content:space-between;

    align-items:stretch;

    gap:8px;

    flex-wrap:nowrap;

    width:100%;
  }

  /* CARD */

  .connect-card{
    width:23%;

    min-width:0;

    height:105px;

    padding:12px 4px;

    border-radius:16px;

    gap:10px;
  }

  /* ICON */

  .connect-card i{
    width:42px;
    height:42px;

    font-size:15px;
  }

  /* TEXT */

  .connect-card span{
    font-size:10px;

    line-height:1.3;

    text-align:center;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  .clients{
    padding:50px 12px;
  }

  /* TITLE */

  .clients .section-title{
    font-size:26px;

    margin-bottom:25px;

    line-height:1.3;
  }

  /* SLIDER */

  .slider1{
    width:100%;

    overflow:hidden;
  }

  /* TRACK */

  .slide-track1{
    display:flex;

    align-items:center;

    gap:8px;

    animation:scroll 12s linear infinite;
  }

  /* LOGO BOX */

  .slide1{
    min-width:90px;

    padding:10px;
  }

  /* IMAGE */

  .slide1 img{
    height:45px;

    width:auto;

    object-fit:contain;
  }

  /* HOVER */

  .slide1 img:hover{
    transform:scale(1.05);
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:430px){

  .stats{
    padding:50px 12px;
  }

  /* CONTAINER */

  .stats-container{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:14px;
  }

  /* CARD */

  .stat-card{
    width:100%;

    padding:20px 12px;

    border-radius:16px;
  }

  /* NUMBER */

  .stat-card h2{
    font-size:24px;

    margin-bottom:8px;
  }

  /* TEXT */

  .stat-card p{
    font-size:12px;

    line-height:1.5;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  .services-carousel{
    padding:55px 12px;
  }

  /* TITLE */

  .services-carousel .section-title{
    font-size:26px;

    line-height:1.3;

    margin-bottom:28px;

    text-align:center;
  }

  /* CONTAINER */

  .carousel-container{
    width:100%;

    overflow:hidden;
  }

  /* TRACK */

  .carousel-track{
    display:flex;

    gap:12px;

    animation:scroll 15s linear infinite;
  }

  /* CARD */

  .service-box{
    min-width:220px;

    padding:18px 16px;

    border-radius:18px;

    background:#fff;

    box-shadow:
    0 5px 18px rgba(0,0,0,0.08);
  }

  /* TITLE */

  .service-box h4{
    font-size:18px;

    margin-bottom:10px;

    line-height:1.4;
  }

  /* TEXT */

  .service-box p{
    font-size:13px;

    line-height:1.6;
  }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  /* HERO SECTION */

  .service-hero1{
    padding:70px 15px 45px;

    background-position:center;
  }

  .service-hero1 h1{
    font-size:28px;

    line-height:1.3;

    margin-bottom:12px;
  }

  .service-hero1 p{
    font-size:14px;

    line-height:1.7;

    max-width:100%;
  }

  /* SERVICES SECTION */

  .iso-services{
    padding:55px 12px;
  }

  /* TITLE */

  .section-title{
    font-size:26px;

    line-height:1.3;

    margin-bottom:30px;
  }

  /* GRID */

  .iso-container{
    grid-template-columns:1fr;
    text-align:justify;

    gap:18px;
  }

  /* CARD */

  .iso-card{
    padding:22px 18px;
    border-radius:18px;
    text-align:justify;
  }

  /* CARD TITLE */

  .iso-card h3{
    font-size:20px;

    margin-bottom:10px;
  }

  /* CARD TEXT */

  .iso-card p{
    font-size:14px;
    text-align:justify;
    line-height:1.7;
  }

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:900px){

  .hero{
    height:55vh;
  }

  .content{
    width:85%;
  }

  .content h1{
    font-size:34px;

    line-height:1.3;
  }

  .content p{
    font-size:16px;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  /* HERO */

  .hero{
    height:65vh;

    border-radius:0;

    overflow:hidden;
  }

  /* SLIDE */

  .slide{
    position:relative;
  }

  /* IMAGE */

  .slide img{
    width:100%;
    height:100%;

    object-fit:cover;
  }

  /* DARK OVERLAY */

  .slide::after{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    z-index:1;
  }

  /* CONTENT */

  .content{
    width:90%;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    z-index:2;
  }

  /* HEADING */

  .content h1{
    font-size:24px;

    line-height:1.4;

    margin-bottom:12px;
  }

  /* PARAGRAPH */

  .content p{
    font-size:14px;

    line-height:1.6;

    margin:12px 0 20px;
  }

  /* BUTTON WRAPPER */

  .hero-buttons{
    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;
  }

  /* BUTTON */

  .hero-buttons button{
    width:220px;

    padding:12px 18px;

    font-size:14px;

    border-radius:30px;
  }

}


/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:900px){

  .home-about{
    padding:50px 25px;
  }

  .container{
    width:100%;

    flex-direction:column;

    gap:30px;

    padding:0 10px;
  }

  .about-content1 h1{
    font-size:42px;

    line-height:1.3;
  }

  .section-subtitle{
    font-size:17px;

    line-height:1.8;

    text-align:center;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:420px){

  .home-about{
    padding:45px 15px;
  }

  .container{
    width:100%;

    flex-direction:column;

    gap:20px;

    padding:0;
  }

  /* HEADING */

  .about-content1 h1{
    font-size:28px;

    line-height:1.4;

    text-align:center;
  }

  /* LINE EFFECT */

  .about-content1 h1::after{
    width:70px;

    height:3px;

    bottom:-8px;
  }

  .about-content1 h1:hover::after{
    width:160px;
  }

  /* SUBTITLE */

  .section-subtitle{
    font-size:14px;

    line-height:1.7;

    text-align:center;

    margin-top:18px;

    padding:0 5px;
  }

} }

/* ACTIVE PAGE */

.menu a.active{
  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:#fff;

  box-shadow:
  0 8px 20px rgba(0,119,182,0.25);
}

/* MINI BUTTON */

.mini-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  margin-top:15px;

  padding:8px 18px;

  border-radius:30px;

  background:
  linear-gradient(
    135deg,
    #91D06C,
    #0077b6
  );

  color:#fff;

  font-size:13px;

  font-weight:600;

  text-decoration:none;

  box-shadow:
  0 6px 18px rgba(0,119,182,0.2);

  transition:0.35s ease;
}

/* HOVER */

.mini-btn:hover{
  transform:
  translateY(-3px)
  scale(1.05);

  box-shadow:
  0 10px 22px rgba(0,119,182,0.35);

  background:
  linear-gradient(
    135deg,
    #0077b6,
    #91D06C
  );
}

.image1 img{
  width:100%;

  max-width:450px;
  height:520px;

  border-radius:28px;

  object-fit:cover;

  box-shadow:
  0 20px 45px rgba(0,0,0,0.12);
}
