*{
    margin:0;
    padding:0;
    box-sizing:border-box
}
html {
     scroll-behavior: smooth;
}
body{
    font-family:'Montserrat',sans-serif;
    background:#fff;
    color:#111827;
    line-height:1.6
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto
}
header{
    position:fixed;
    width:100%;
    top:0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    z-index:999;
    box-shadow:0 4px 10px rgba(0,0,0,0.12);
}
.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0 0;
}
.logo{
    height:90px
}
.hamburger{
  width: 40px;
  height: 32px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.hamburger span{
  width: 100%;
  height: 4px;
  background: #021b57;
  border-radius: 10px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1){
  transform: translateY(14px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: translateY(-14px) rotate(-45deg);
}


 .cricket-banner img {
     border-radius: 30px;
     object-fit: cover;
     min-height: 500px;
     box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
 nav a{
    text-decoration:none;
    margin-left:30px;
    color:#0f172a;
    font-weight:600
}



.hero{
    background:linear-gradient(135deg,#021b57,#015f9d,#00bcd4);
    color:#fff;
    padding:180px 0 120px
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center
}
.tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    margin-bottom:30px;
    font-size:14px;
    letter-spacing:2px
}
.hero h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:900
}
.hero p{
    font-size:20px;
    margin-bottom:40px;
    color:rgba(255,255,255,.9)
}
.hero-buttons{
    display:flex;
    gap:20px
}





/* HERO SLIDER */

.hero-slider{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Animated Background */

.hero-bg{
  position: absolute;
  inset: 0;
  background-image: url('https://letsgrowsmarter.com/skygrow/images/slide1.webp');
  background-size: cover;
  background-position: center;
  animation: zoomBg 18s ease-in-out infinite alternate;
  transform: scale(1);
}

/* Dark Overlay */

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Content */

.hero-content{
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top:140px;
  max-width: 900px;
  animation: fadeUp 1.5s ease;
}

.hero-logo{
  width: 280px;
  max-width: 80%;
  margin-bottom: 0px;
}

/* Heading */

.hero-content h1{
  font-size: 68px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 35px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Buttons */

.hero-buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn{
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  letter-spacing: 0.5px;
}



@keyframes zoomBg{
  0%{
    transform: scale(1);
  }

  100%{
    transform: scale(1.12);
  }
}



/* MOBILE ANIMATION */
@media(max-width:767px){
.hero-content{
margin-top: 180px;
}
  .hero-bg{
    animation: mobilePan 10s ease-in-out infinite alternate;
    background-size: cover;
    background-position: left center;
  }

  @keyframes mobilePan{

    0%{
      transform: scale(1.08) translateX(-20px);
      background-position: left -300px center;
    }

    100%{
      transform: scale(1.15) translateX(20px);
      background-position: right -290px center;
    }

  }

}




.primary-btn{
  background: #ffffff;
  color: #000;
}

.primary-btn:hover{
  transform: translateY(-3px);
}

.secondary-btn{
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.secondary-btn:hover{
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}


.blue-btn{
  border: 1px solid #fff;
  color: #fff;
  background: #4680c3;
}

.blue-btn:hover{
  background: #4dafa7;
  transform: translateY(-3px);
}




.green-btn{
  border: 1px solid #fff;
  color: #fff;
  background: #4dafa7;
}

.green-btn:hover{
  background: #4680c3;
  transform: translateY(-3px);
}


/* Background Animation */

@keyframes zoomBg{
  0%{
    transform: scale(1);
  }

  100%{
    transform: scale(1.12);
  }
}

/* Text Animation */

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(40px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}




/* ABOUT SLIDER */

.about-slider{
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.about-slide.active{
  opacity: 1;
  z-index: 2;
}

.about-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-dots{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.about-dots .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-dots .dot.active{
  background: #ffffff;
  transform: scale(1.2);
}

.about-text-content{
  margin-top: 10px;
}

/* MOBILE */

@media(max-width:767px){

  .about-slider{
    height: 240px;
    border-radius: 22px;
  }

}




/* Responsive */

@media(max-width:991px){

  .hero-content h1{
    font-size: 48px;
  }
  


}

@media(max-width:767px){

  .hero-slider{
    height: 90vh;
  }

  .hero-logo{
    width: 300px;
  }

  .hero-content h1{
    font-size: 34px;
    line-height: 1.25;
  }

  .hero-buttons{
    gap: 12px;
  }

  .hero-buttons .btn{
    padding: 14px 24px;
    font-size: 14px;
  }

}





















.btn{
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700
}
.primary-btn{
    background:#fff;
    color:#021b57
}
.secondary-btn{
    border:1px solid rgba(255,255,255,.4);
    color:#fff
}
.hero-image img{
    width:100%;
    max-width:650px
}
.section{
    padding:100px 0
}

.about-section{
	padding-bottom:0px;
}

.section-title span,.vision-section span,.contact-info span{
    color:#00bcd4;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px
}
.section-title h2,.vision-section h2,.contact-info h2{
    font-size:50px;
    line-height:50px;
    margin-top:15px;
    margin-bottom:20px
}
.about-grid,.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center
}
.about-grid{
    align-items:start;
}

.about-text p{
    margin-bottom:25px;
    font-size:16px;
    color:#475569
}
.about-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px
}
.card,.service-box h3 {
     color: #021b57;
     font-size: 28px;
     margin-bottom: 15px;
}
 .service-box h3, .card h3 {
     color: #47a39d;
     line-height:1.4;
}
 .service-box p {
     color: #334155;
     font-size: 17px;
     line-height: 1.7;
}
.service-box{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08)
}
.about-cards .card h3{
	line-height: 1.2;
    font-size: 1em;
    margin-bottom: 10px;
}

.about-cards .card p{
	font-size:16px;
}

.dark-section{
    background:#021b57;
    color:#fff
}



/* WHAT WE DO SECTION */

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;
}

.service-card-new{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    min-height:520px;
    background:#12070e;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.service-card-new img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        #12070e 18%,
        rgba(18,7,14,0.82) 40%,
        rgba(18,7,14,0.1) 70%
    );
    z-index:1;
}

/* CONTENT */

.service-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:25px;
}

.service-content h3{
    color:#fff;
    font-size:28px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:700;
}

.service-content p{
    color:#ffffff;
    font-size:16px;
    line-height:1.6;
    margin-bottom:28px;
}

/* BUTTON */

.read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#4dafa7;
    color:#ffffff;
    text-decoration:none;
    padding:14px 26px;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.read-more-btn:hover{
    background:#4680c3;
    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr;
    }
	
	  .section{
	  padding:40px 10px;
  }

}

/* MOBILE */

@media(max-width:767px){

    .service-card-new{
        min-height:480px;
    }

    .service-content{
        padding:24px;
    }

    .service-content h3{
        font-size:30px;
    }

    .service-content p{
        font-size:16px;
        line-height:1.7;
    }

}




.vision-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding:50px 0px;
}

.vision-section::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: grayscale(100%);
  z-index: 1;
}

.vision-section .container {
  position: relative;
  z-index: 2;
}

.vision-section span,
.vision-section h2,
.vision-section p {
  color: #041e54;
}

.vision-section p {
  max-width: 850px;
  margin: auto;
  font-size: 20px;
  line-height: 1.8;
  color: #475569;
}
.contact-section{
    background:#f1f5f9
}
.contact-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08)
}
.contact-form-wrapper form{
    display:flex;
    flex-direction:column;
    gap:20px;
	margin-top:20px;
}
.contact-form-wrapper input,.contact-form-wrapper textarea{
    padding:18px;
    border-radius:14px;
    border:1px solid #cbd5e1;
    font-size:16px
}
.contact-form-wrapper button{
    background:linear-gradient(135deg,#021b57,#00bcd4);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:18px;
    font-weight:700;
    cursor:pointer
}
footer{
    background:#020617;
    color:#94a3b8;
    text-align:center;
    padding:30px 0
}
.center{
    text-align:center
}


@media(max-width:991px){
    .hero-grid,.about-grid,.contact-grid,.services-grid{
        grid-template-columns:1fr
    }
    .hero h1{
        font-size:48px
    }
    nav{
        display:none
    }
    .about-cards{
        grid-template-columns:1fr
    }
     .hamburger {
         display: flex;
    }
     #mobileNav {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 115px;
         left: 0;
         width: 100%;
         background: #1A3581;
		 background: linear-gradient(90deg,rgba(26, 53, 129, 1) 0%, rgba(94, 196, 187, 1) 100%);
         padding: 20px 20px 0px 20px;
         gap: 20px;
         box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
	
	nav a{
		    text-decoration: none;
    margin-left: -20px;
    margin-right: -20px;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px #f7fbfa solid;
    padding-left: 20px;
    padding-bottom: 15px;
	}
	
	nav a:last-child{
	border-bottom:0px;
}
}


/* CRICKET BOARD SECTION */
/* LOGO SLIDER */

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
    margin-top:10px;
}

.logo-track{
    display:flex;
    gap:25px;
    transition:transform .45s ease;
    will-change:transform;
}

/* LOGO */

.logo-item{
    min-width:calc(20% - 20px);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.logo-item img{
    width:100%;
    max-height:200px;
    object-fit:contain;
}

/* MOBILE DOTS */

/* DOTS */

.logo-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}

.logo-dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#cbd5e1;
    transition:.3s ease;
    cursor:pointer;
}

.logo-dot.active{
    background:#021b57;
    transform:scale(1.2);
}
/* TABLET */

@media(max-width:991px){

    .logo-item{
        min-width:calc(33.333% - 18px);
    }

}

/* MOBILE */

@media(max-width:767px){

    .logo-slider{
        overflow:hidden;
    }

    .logo-track{
        gap:15px;
        scroll-behavior:smooth;
    }

    .logo-item{
        min-width:calc(50% - 8px);
        padding:0px;
    }

    .logo-item img{
        max-height:150px;
    }

    /* DOTS */

    .logo-dots{
        display:flex;
        justify-content:center;
        gap:10px;
        margin-top:25px;
    }

    .logo-dot{
        width:10px;
        height:10px;
        border-radius:50%;
        background:#cbd5e1;
        transition:.3s ease;
    }

    .logo-dot.active{
        background:#021b57;
        transform:scale(1.2);
    }

}




/* UPCOMING EVENT */

.upcoming-event-section{
    background:#ffffff;
    padding-top:0px;
}

.section.about-section{
	padding-bottom:0px;
}

.event-banner{
    margin-top:50px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.event-banner img{
    width:100%;
    display:block;
    border-radius:30px;
}

/* MOBILE HIDE */

.mobile-banner{
    display:none;
}

/* MOBILE */
@media(max-width:767px){
	
	.vision-section h2{
		font-size:37px;
		line-height: 40px;
	}
	
	.upcoming-event-section .section-title h2{
	font-size:30px;
    line-height: 38px;
    margin-top: 15px;
    margin-bottom: 0;
	}
	
	.upcoming-event-section .event-banner.mobile-banner{
		margin-top: 15px;
	}
	
	.about-grid, .contact-grid{
		gap:10px;
	}
	

    .desktop-banner{
        display:none;
    }

    .mobile-banner{
        display:block;
    }

    .event-banner{
        border-radius:22px;
        margin-top:35px;
    }

    .event-banner img{
        border-radius:22px;
    }

}





/* FIX SECTION HEADING HIDING UNDER FIXED HEADER */
section{
    scroll-margin-top:140px;
}
/* MOBILE */
@media(max-width:767px){
    section{
        scroll-margin-top:120px;
    }
}



/* MOBILE MENU OVERLAY */

.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* ACTIVE */

.mobile-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* LOCK BODY SCROLL */

body.menu-open{
  overflow: hidden;
  height: 100vh;
}