/* HERO */

.hero{
  margin-top: 95px;
}
.slider{
  position: relative;
  overflow: hidden;
}
.slides{
  display: flex;
  transition: 0.5s ease;
}
.slide{
  min-width: 100%;
  position: relative;
}
.slide img{
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.slide-content{
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 650px;
}
.slide-content h1{
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.slide-content p{
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-btn{
  display: inline-block;
  padding: 15px 40px;
  background: #2456d3;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.hero-btn:hover{
  background: #0f3fb7;
}
/* ARROWS */
.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}
.arrow:hover{
  background: #2456d3;
}
.prev{
  left: 30px;
}
.next{
  right: 30px;
}

/* SERVICES */
.home-services{
  padding: 60px 0;
  background: #fff;
}
.home-services-heading{
  margin-bottom: 55px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-services-heading span{
  display: inline-block;
  color: #2456d3;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-services-heading h2{
  font-size: 38px;
  line-height: 1.2;
  color: #11195b;
  margin-bottom: 12px;
  font-weight: 700;
}
.home-services-heading p{
  font-size: 16px;
  line-height: 1.8;
  max-width: 1200px;
  color: #666;
}

.home-services-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-services-image{
  width: 100%;
}

.home-services-image img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.home-services-content{
  width: 100%;
}

.home-services-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px 40px;
}
.home-services-grid ul{
  list-style: none;
}
.home-services-grid ul li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.3;
  color: #222;
}
 .home-services-grid ul li i{
  color: #f0b90b;
  min-width: 18px;
  margin-top: 4px;
}
.invisible-icon{
  opacity: 0;
}
.know-btn{
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #2456d3;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.know-btn:hover{
  background: #0f3fb7;
}


/*  COMMITMENT SECTION */

.commitment-section{
  padding: 70px 0;
  background: #fff;
}
.commitment-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* LEFT */
.commitment-subtitle{
  display: inline-block;
  color: #2456d3;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}
.commitment-content h2{
  font-size: 48px;
  line-height: 1.3;
  color: #11195b;
  margin-bottom: 24px;
}
.commitment-content p{
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  max-width: 580px;
}
/* RIGHT IMAGE */
.commitment-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commitment-circle{
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px dashed #5ca4ff;
  padding: 12px;
  overflow: hidden;
}
.commitment-circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/*  GALLERY SECTION */
.gallery-section{
  padding: 60px 0;
}
.gallery-heading{
  text-align: center;
  margin-bottom: 55px;
}
.gallery-heading h2{
  font-size: 46px;
  color: #11195b;
  margin-bottom: 18px;
}
.gallery-heading p{
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.gallery-item{
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 11, 11, 0.08);
  transition: 0.4s;
}
.gallery-item img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover{
  transform: translateY(-8px);
}
.gallery-item:hover img{
  transform: scale(1.08);
}

/*  CORE TEAM */
.core-team{
  padding: 60px 0;
}
.team-heading{
  text-align: center;
  margin-bottom: 60px;
}
.team-heading h2{
  font-size: 46px;
  color: #f0b90b;
  font-weight: 600;
}
.team-heading p{
  margin-top: 12px;
  color: #666;
  font-size: 16px;
}
/* GRID */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
/* CARD */
.team-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 28px 20px;
  min-height: 320px;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.team-card:hover{
  transform: translateY(-8px);
}
/*  IMAGE */
.team-image{
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.team-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
/* BLUR EFFECT */
.team-card:hover .team-image img{
  filter: blur(2px) brightness(0.9);
  transform: scale(1.05);
}
/*  NORMAL CONTENT */
.team-info{
  margin-top: 14px;
  transition: 0.4s;
  position: relative;
  z-index: 2;
}
/* HOVER APPUDU PAIKI */
.team-card:hover .team-info{
  transform: translateY(-78px);
}
.team-info h3{
  font-size: 22px;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.4;
  font-weight: 500;
}
.team-info h4{
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  font-weight: 500;
}
/* HOVER CONTENT */
.team-hover{
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, 20px);
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 5;
}
/* ONLY EXTRA CONTENT SHOW */
.team-card:hover .team-hover{
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);
}
/* IMPORTANT:
   NAME & DEGREE MALLI IVVAKU
*/
.team-hover h5{
  font-size: 16px;
  color: #2456d3;
  font-weight: 600;
  margin-bottom: 18px;
}
/*  SOCIAL */
.team-social{
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-social a{
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: 0.3s;
}
.team-social a:hover{
  background: #2456d3;
  color: #fff;
  border-color: #2456d3;
}

/* TESTIMONIAL SECTION */
.testimonial-section{
  padding: 60px 0;
  /* background: linear-gradient(to bottom,#f7faff,#eef4ff); */
  overflow: hidden;
}
.testimonial-heading{
  text-align: center;
  margin-bottom: 60px;
}
.testimonial-heading span{
  display: inline-block;
  color: #2f5eb6;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.testimonial-heading h2{
  font-size: 46px;
  color: #11195b;
  font-weight: 700;
}
/* SLIDER */
.testimonial-slider{
  overflow: hidden;
}
.testimonial-track{
  display: flex;
  gap: 30px;
  transition: 0.5s ease;
}
/* CARD */
.testimonial-card{
  min-width: calc(33.333% - 20px);
  background: #fff;
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border: 1px solid #edf2ff;
  transition: 0.4s;
}
.testimonial-card:hover{
  transform: translateY(-8px);
}
/* TOP SECTION */
.testimonial-user{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.testimonial-user img{
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eef3ff;
  flex-shrink: 0;
}
.user-info h3{
  font-size: 32px;
  color: #11195b;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.user-info span{
  color: #2f5eb6;
  font-size: 18px;
  font-weight: 600;
}
/* CONTENT */
.testimonial-text{
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  border-top: 1px solid #e8eefc;
  padding-top: 22px;
}


/* BENEFITS SECTION */
.benefits-section{
  padding: 50px 0;
}
/* HEADING */
.benefits-heading{
  text-align: center;
  margin-bottom: 60px;
}
.benefits-heading span{
  display: inline-block;
  color: #2f5eb6;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.benefit-top{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.benefits-heading h2{
  font-size: 44px;
  color: #11195b;
  margin-bottom: 18px;
  font-weight: 700;
}
.benefits-heading p{
  max-width: 850px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}
/* GRID */
.benefits-wrapper{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
/* CARD */
.benefit-card{
  background: #fff;
  padding: 18px 30px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid #edf2ff;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #2f5eb6;
}
.benefit-card:hover{
  transform: translateY(-10px);
}
/* ICON */
.benefit-icon{
  width: 75px;
  height: 75px;
  background: #eef4ff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon i{
  font-size: 32px;
  color: #2f5eb6;
}
/* CONTENT */
.benefit-card h3{
  font-size: 24px;
  color: #11195b;
  line-height: 1.4;
  font-weight: 700;
}
.benefit-card p{
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}



/*   SERVICES SECTION */
.services-section{
  padding: 80px 0;
  background: #fff;
  /* background: linear-gradient(to bottom,#f8fbff,#eef4ff); */
  overflow: hidden;
}
.services-heading{
  text-align: center;
  margin-bottom: 40px;
}
.services-heading span{
  display: inline-block;
  color: #2f5eb6;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.services-heading h2{
  font-size: 38px;
  color: #11195b;
  margin-bottom: 16px;
  font-weight: 700;
}
.services-heading p{
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}
.service-card{
  /* background: #fff; */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  border: 1px solid #edf1ff;
}
.service-card:hover{
  transform: translateY(-10px);
}
.service-image{
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.service-card:hover .service-image img{
  transform: scale(1.08);
}
.service-content{
  padding: 18px;
}
.service-content h3{
  font-size: 22px;
  color: #11195b;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}
.service-content p{
  color: #666;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 8px;
}

/* LAPTOP */
@media(max-width:1200px){
  .slide-content h1{
    font-size: 52px;
  }
  .services-grid ul li{
    font-size: 19px;
  }
  .gallery-grid{
    grid-template-columns: repeat(3,1fr);
  }
  .team-grid{
    grid-template-columns: repeat(3,1fr);
  }

}

/* TABLET */

@media(max-width:991px){
  .slide img{
    height: 70vh;
  }
  .slide-content{
    left: 6%;
    max-width: 500px;
  }
  .slide-content h1{
    font-size: 42px;
  }
  .slide-content p{
    font-size: 18px;
  }
  .home-services-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-services-image img{
    min-height: 420px;
  }

  .home-services-content{
    text-align: left;
  }
   .commitment-section{
    padding: 20px 0;
  }
   .commitment-wrapper{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .commitment-content p{
    max-width: 100%;
  }
   
  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .team-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
  }

  .team-heading h2{
    font-size: 38px;
  }

   .testimonial-card{
    min-width: calc(50% - 15px);
  }

  .testimonial-heading h2{
    font-size: 38px;
  }

  .user-info h3{
    font-size: 26px;
  }
   .video-frame{
    height: 420px;
  }

  .video-testimonial-heading h2{
    font-size: 38px;
  }

  .video-content h3{
    font-size: 28px;
  }
  .benefits-wrapper{
    grid-template-columns: repeat(2,1fr);
  }

  .benefits-heading h2{
    font-size: 42px;
  }

  .benefit-card h3{
    font-size: 24px;
  }

   .services-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .services-heading h2{
    font-size: 42px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .hero{
    margin-top: 80px;
  }
  .slide img{
    height: 60vh;
  }
  .slide-content{
    left: 5%;
    right: 5%;
  }
  .slide-content h1{
    font-size: 32px;
  }
  .slide-content p{
    font-size: 15px;
    line-height: 1.7;
  }
  .hero-btn{
    padding: 12px 28px;
  }
  .arrow{
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .prev{
    left: 12px;
  }
  .next{
    right: 12px;
  }
  .home-services{
    padding: 70px 0;
  }
  .home-services-wrapper{
  grid-template-columns: 1fr;
  gap: 35px;
}

.home-services-image img{
  min-height: 260px;
}

.home-services-grid{
  grid-template-columns: 1fr;
  gap: 10px;
}

.home-services-heading h2{
  font-size: 30px;
}

.home-services-heading p{
  font-size: 15px;
  line-height: 1.8;
}

.commitment-wrapper{
  grid-template-columns: 1fr;
  gap: 35px;
}

.commitment-circle{
  width: 260px;
  height: 260px;
}
  .know-btn{
    padding: 14px 30px;
  }
   .commitment-section{
    padding: 20px 0;
  }
  .commitment-content h2{
    font-size: 24px;
  }
  .commitment-content p{
    font-size: 15px;
  }
  .commitment-circle{
    width: 300px;
    height: 300px;
  }
  .gallery-section{
    padding: 70px 0;
  }

  .gallery-heading h2{
    font-size: 34px;
  }

  .gallery-heading p{
    font-size: 15px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-item img{
    height: 220px;
  }

  .team-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-card{
    min-height: 340px;
  }

  .team-image{
    width: 130px;
    height: 130px;
  }

  .team-info h3{
    font-size: 19px;
  }

  .team-info h4{
    font-size: 14px;
  }

  .team-hover h5{
    font-size: 15px;
  }
  .testimonial-section{
    padding: 70px 0;
  }

  .testimonial-card{
    min-width: 100%;
    padding: 28px 22px;
  }

  .testimonial-heading h2{
    font-size: 30px;
  }

  .testimonial-user{
    gap: 14px;
  }

  .testimonial-user img{
    width: 70px;
    height: 70px;
  }

  .user-info h3{
    font-size: 22px;
  }

  .user-info span{
    font-size: 15px;
  }

  .testimonial-text{
    font-size: 15px;
    line-height: 1.8;
  }
    .video-testimonial-section{
    padding: 70px 0 20px;
  }

  .video-testimonial-heading{
    margin-bottom: 35px;
  }

  .video-testimonial-heading h2{
    font-size: 30px;
  }

  .video-testimonial-heading p{
    font-size: 15px;
  }

  .video-frame{
    height: 230px;
  }

  .video-content{
    padding: 25px 20px;
  }

  .video-content h3{
    font-size: 22px;
  }

  .video-content p{
    font-size: 15px;
    line-height: 1.8;
  }

  .video-btn{
    width: 100%;
    padding: 14px 20px;
  }
  .benefits-section{
    padding: 70px 0;
  }

  .benefits-wrapper{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefits-heading{
    margin-bottom: 40px;
  }

  .benefits-heading h2{
    font-size: 32px;
  }

  .benefits-heading p{
    font-size: 15px;
  }

  .benefit-card{
    padding: 30px 22px;
  }

  .benefit-icon{
    width: 65px;
    height: 65px;
  }

  .benefit-icon i{
    font-size: 28px;
  }

  .benefit-card h3{
    font-size: 22px;
  }

  .benefit-card p{
    font-size: 15px;
    line-height: 1.8;
  }


   .services-section{
    padding: 70px 0;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-heading{
    margin-bottom: 40px;
  }

  .services-heading h2{
    font-size: 34px;
  }

  .services-heading p{
    font-size: 15px;
  }

  .service-image{
    height: 220px;
  }

  .service-content{
    padding: 38px 22px 25px;
  }

  .service-content h3{
    font-size: 24px;
  }
}
