html,body {
    background-color: #2e3537;
    overflow-x: hidden;
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;    margin: 0;
    padding: 0;
}

:root{
  --dark-bg:#0a0a0a;
  --darker-bg:#050505;
  --accent:#2ecc71;
  --accent-glow:rgb(46,204,113,0.4);
  --text:#ffffff;
}


.hidden {
      opacity: 0;
      transform: translateY(100px); /* default left */
      transition: all 0.8s ease;
      z-index: 0;
}


.show {
      opacity: 1;
      transform: translateY(0); /* visible hone par center */
}



/*navbar*/
nav {
      height:70px ;
      z-index: 1;
      width:100%;
      position: absolute;
      top: 0%;
      background-color: pink;
      color: white;
      font-size: 30px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color: #050505;
      position: fixed;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .nav-btn {
      font-size: 30px;
      cursor: pointer;
      display: none; /* desktop ke liye hidden */
    }

    .nav-menu {
      width: 60%;
      list-style: none;
      position: relative;
      left: 5%;
      justify-content: flex-start;
      display: flex;
      gap: 15px;
    }

    .brand{
      margin-top: 1%;
      height: 100%;
      width: 7%;
    }

    .nav-menu li{
      align-items: center;
      align-self: center;
      align-content: center;
      justify-content: center;
      text-align: center;
      margin: 0 12px 0 12px;
    }

    .nav-menu a {
      font-size: 0.7em;
      color: white;
      transition: 0.3s;
      text-decoration: none;
    }
    .nav-menu a:hover {
      font-size: 0.7em;
      color:#08cb00;
      transform: scale(1.2);
    }

     .nav-menu .btn{
      height: 50px;
      color: black;
      font-size: 1em;
      width: 250px;
      border-radius: 10px;
      transition: 0.3s;
      background-color: var(--accent);
     }
     .nav-menu .btn:hover{
      height: 50px;
      background-color: #ffffff;
      width: 250px;
      border-radius: 10px;
      color: var(--accent);
     }


    /* Scroll lock */
    .no-scroll {
      overflow: hidden;
      height: 100vh;
    }

    /* Dummy content for scrolling */
    .content {
      height: 2000px;
      background: linear-gradient(white, lightblue);
    }
/**/
/**/

.title-div{
    height: 70vh;
    width: 100%;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: hsl(0, 0%, 100%);
    font-size: 35px;
    justify-content: center;
    background-image: url(images/courseC.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:top;
}
.title-div h1{
    width: 100%;
    text-align: center;
}

.title-div p{
    position: relative;
    bottom: 15%;
    font-size: 0.65em;
    padding:0 10%  0% 10%;
    text-align: center;
}

/**/
main{
  background-color:var(--darker-bg) ;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission{
    height: 70vh;
    width: 90%;
    display: flex;
    background-color: white ;
    flex-direction: row;
    color: #050505;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    
}

.msn-text{
    width: 55%;
    font-size: 30px;
    margin-top: 4%;
    background-color: inherit;  
    
    align-self: baseline;  
}
.msn-text h1{
    font-size:1.5em ;
    text-align: center;
    margin-bottom: 0;
}
.msn-text p{
    font-size:0.65em ;
    padding-right: 2%;
  }

.img{
    padding-top: 0;
    height: 80%;
}


/*what we offer*/

:root{
      --bg: #dfe6ff;         /* page background (light lavender) */
      --panel: #050505;      /* white panel */
      --text: #0f172a;       /* primary text */
      --muted: #64748b;      /* muted text */
      --primary: #3b82f6;    /* blue accents */
      --icon-bg: #e8f0ff;    /* pale blue for icon circle */
      --radius-xl: 16px;
      --radius-lg: 12px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    }

    /* Page */
    
  

    /* Card panel */
    .panel{
      width: min(1100px, 100%);
      background: var(--panel);
      border-radius: calc(var(--radius-xl) + 4px);
      box-shadow: var(--shadow);
      color: var(--bg);
      padding: clamp(20px, 3.5vw, 48px);
    }

    /* Header */
    .eyebrow{
      text-align:center;
      font-size: 14px;
      color: var(--primary);
      letter-spacing: .04em;
      margin: 4px 0 8px;
    }
    .title{
      text-align:center;
      font-weight: 800;
      font-size: clamp(22px, 3.2vw, 32px);
      margin: 0 0 8px;
    }
    .sub{
      text-align:center;
      color: var(--muted);
      font-size: 14px;
      max-width: 640px;
      margin: 0 auto 28px;
      line-height: 1.6;
    }

    /* Grid */
    .grid{
      display: grid;
      gap: 28px clamp(18px, 2.4vw, 28px);
      grid-template-columns: repeat(3, 1fr);
    }

    /* Service item */
    .item{
      display:flex;
      align-items:flex-start;
      gap: 14px;
    }
    .icon{
      flex: 0 0 44px;
      width:44px;
      height:44px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      background: var(--icon-bg);
      color: var(--primary);
    }
    .item h4{
      font-size: 16px;
      margin: 0 0 6px;
    }
    .item p{
      margin:0;
      color: var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    /* Subtle focus/hover for accessibility */
    .item:focus-within,
    .item:hover{
      transform: translateY(-1px);
    }
    .item{ transition: transform .15s ease; }

    /* Reduce motion preference */
    @media (prefers-reduced-motion: reduce){
      .item{ transition: none; }
    }




/**/
.leader{
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.leader h1{
  line-height: 0.1;
  
}
.leader p{
  line-height: 0.5;
}

.leader button{
  width: 45%;
  height: 10%;
  font-size: 1.5em;
  border-radius: 10px;
  background-color: #2ecc71;
  color: #050505;
  border: 1px solid grey;
  margin-top: 2%;
  transition: 0.3s;
}

.leader button:hover{
  color: #2ecc71;
  background-color: #ffffff;
}

.ldr-container{
      height: 50vh;
    width: 150%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ldr-child{
       width: 23%;
    margin: 1%;
    background: linear-gradient(var(--accent-glow), transparent);

    color: #2ecc71;
    border-radius: 10px;
    box-shadow: 4px 4px 15px rgba(22, 238, 119, 0.1);
    transition: 0.3s;
}
.ldr-child:hover{
  position: relative;
  bottom: 1%;
  background-color: #2ecc71;
  color: #050505;
  box-shadow: 4px 4px 15px rgba(22, 238, 119, 0.5);
  transform: translatey(-10px);
  
}


.ldr-child img {
        height: 125px;
    width: 120px;
    margin-top: 5%;
    border-radius: 100px;
}
.ldr-child h4{
  line-height: 0.3;
  font-size: 1.3em;
  padding: 1%;
  margin-bottom: 3%;
  position: relative;
  bottom: 0.9em;
}
.ldr-child p{
  position: relative;
  bottom: 0.9em;
  padding: 1%;
  line-height: 0.1;
}
.ldr-child i{
  margin: 2%;
  font-size: 1.2em;
  line-height: 0.1;
  position: relative;
  bottom: 0.9em;
  transition: 0.3s;
}
.ldr-child i:hover{
  transform: scale(1.2)
}

/**/
/**/
/**/
/**/
/**/
/**/
/**/

/* footer css*/

footer{
    width: 100%;
    height: 400px;
    font-size: 20px;
    background-color: #253900;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


.Quick h2{
  font-size: 35px;
  margin-bottom: 0%;
  color: #ffffff;
}

.Quick{
    line-height: 0.96;
    margin-bottom: 4%;
}



footer h3{
    position: relative;
    left: -29%;
    text-align: left;
    color: yellow;
    bottom: 10%;
}

footer a{
    color: grey;
    font-size: 18px;
    text-decoration: none;

}



footer .contact-2{
    width: 25%;
    height: 70%;
    line-height: 0.9;
    align-self: center;
    position: relative;
    left: 5%;
    margin-bottom: 1%;
    margin-left: 2%;
    text-align: left;
}
.contact-2 h2{
  font-size: 35px;
  margin-bottom: 0%;
  color: #fff;
}

.logo{
    font-size: 25px;
    color: white;
    transition: 0.5s;
}

.logo:hover{
  transform: scale(1.5);
  color: #08cb00;
}

.newsletter{
    width: 40%;
    margin-left: 5%;
    margin-bottom: 2%;
   
}

.newsletter h2{
  font-size: 35px;
  margin-bottom: 0%;
  color: #fff;

}

.newsletter p{
    color: white;
    font-size: 20px;
    padding-right: 5%;
   
}
.newsletter input{
    height: 50px;
    width: 65%;
    padding-left: 2%;
    font-size: 20px;
    border-radius: 8px;
    border: 1px solid grey;
    margin-bottom: 2%;
}

.newsletter input:hover{
  border: 1px solid #08cb00;
  background-color: white;
  transition: 0.3s;

}
.newsletter form{
    margin-top: 0%;
  }
.newsletter button{
    height: 52px;
    width: 68%;
    color: black;
    font-size: 1em;
    background-color: var(--accent);
    border: 1px solid grey;
    border-radius: 8px;
    transition: 0.3s;
    color: white;
    
}

.newsletter button:hover{
  background-color: white;
  color: #08cb00;
}


.offer{
  min-height:100%;
      display:grid;
      place-items:center;
      padding: 32px 16px;
}



/*responsive*/
:root{
      --container-max: 992px;      /* cap width at 992 */
      --gap: 20px;                 /* card gap */
      --card-radius: 14px;
      --card-shadow: 0 8px 24px rgba(0,0,0,.08);
      --brand: #38c20e;            /* accent color */
      --text: white;
      --muted: #6b7280;
      --bg: #ffffff;
      --soft: #f7f7f8;
    }

    *{ box-sizing: border-box; }

    body{
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--soft);
      line-height: 1.6;
    }

    .wrap{
      max-width: var(--container-max);
      margin: 0 auto;
      padding: clamp(16px, 3vw, 32px);
    }

    .section-head{
      text-align: center;
      margin-bottom: 28px;
    }

    .section-head h2{
      margin: 0 0 6px;
      font-size: clamp(22px, 3.2vw, 32px);
    }

    .section-head p{
      margin: 0;
      color: var(--muted);
      font-size: clamp(14px, 2.2vw, 16px);
    }

    /* Responsive grid: mobile-first */
    .cards{
      display: grid;
      grid-template-columns: 1fr;       /* 1 column on small screens */
      gap: var(--gap);
    }

    /* ≥ 576px: 2 columns if room */
    @media (min-width: 576px){

      .cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* ≥ 992px: 4 columns (container is capped at 992px) */
    @media (min-width: 992px){
      .cards{
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .card{
      background: linear-gradient(var(--accent-glow), transparent);
      border-radius: var(--card-radius);
      box-shadow: var(--card-shadow);
      padding: 22px;
      box-shadow:4px 4px 15px rgba(22, 238, 119, 0.1);
      transition: 0.25s; 
    }

    .card:hover{
      transform: translateY(-4px);
      box-shadow:4px 4px 15px rgba(22, 238, 119, 0.5);
        }

    .icon{
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(43, 255, 132, 0.1);
      color: var(--brand);
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 18px;
    }

    .card h3{
      margin: 0 0 6px;
      font-size: 18px;
    }

    .card p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    



/* ✅ Responsive Styling */
@media (max-width: 992px) {
    body{
        overflow-x: hidden;
    }
     
    @media (max-width: 992px){
      .grid{ grid-template-columns: 1fr; gap: 20px; }
      .panel{
         width: 97%;
         padding: 20px 16px; 
      }
    }



    nav{
      background-color: var(--dark-bg);
      z-index: 1;
      overflow-y: hidden;
      position: fixed;
    }

    .brand{
      position: relative;
      right: 8%;
      width: 20%;
    }

    .nav-btn {
        position: relative;
        left: 10%;
        display: block;
    }
      .nav-menu {
        position: fixed;
        top: -30px;
        left: -100%;
        width: 70%;
        height: 100%;
        background: #444;
        flex-direction: column;
        gap: 20px;
        z-index: 1000;
        padding: 50px 20px;
        transition: left 0.3s ease-in-out;
    }
      .nav-menu.active {
        left: 0;
        padding-top: 80px ;
        justify-content: flex-start;
    }

      .nav-menu li{
        align-items: center;
        width: 100%;
        background-color: inherit;
        padding-bottom: 20px;
        font-size: 30px;
    }
      .nav-menu li a:hover{
        align-items: center;
        width: 100%;
        color: #08cb00;
        padding-bottom: 20px;
        font-size: 30px;
    }
      #app-btn{
        display: none;
    }

     .title-div{
        height: 40vh;
        width: 100%;
    }
      .title-div h1{
        font-size: 0.8em;

    }
        .title-div p {
        position: relative;
        bottom: 7%;
        text-align: center;
        font-size: 0.45em;
        line-height: 1.15;
        padding: 0 5% 0% 5%;
    }

    .mission{
    height:auto;
    display: flex;
    padding-top: 10%;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 5%;
    }
    .msn-text{
      width: 100%;
      margin-top: 0;
    }
    .msn-text h1{
      font-size: 1.3em;
      font-size: clamp(22px, 3.2vw, 32px);
      margin-bottom: 2%;
    }
    .msn-text p{
      font-size: 0.5em;
      margin-top: 0;
      line-height: 1.2;
      margin-bottom: 5%;
    }
    .bich{
      flex-direction: column-reverse;
    }
    .img{
      width: 100%;
    }

    .leader {
        height: auto;
        margin: 2%;
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .leader h1{
      color: white;
    }
    .leader p{
      line-height: 1.2;
      margin: 2% 2% 0% 2%;
    }

    .leader button{
      width: 82%;
      height: 50px;
      margin-top: 5%;
    }

    .ldr-container{
      height: auto;
      flex-direction: column;
    }

    .ldr-child {
    width: 60%;
    margin: 3%;
    
    
    }

    .ldr-child img {
    height: 120px;
    width: 35%;
    margin-top: 5%;
    border-radius: 100%;
    }
    .ldr-child h4 {
    line-height: 0.3;
    font-size: 1.8em;
    padding: 2%;
    margin-bottom: 5%;
    position: relative;
    bottom: 0.5em;
    }
    .ldr-child p{
      bottom: 1em;
    }
    .ldr-child i{
      bottom: 0.7em;
    }


    /*footer*/
    footer {
    flex-direction: column;
    height: auto;
    text-align: left;
    padding: 1% 2% 1% 1%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  footer h3{
    left: 0%;
  }
  
  .logo{
    font-size: 1.2em;
    color: white;
    transition: 0.5s;

  }
   .Quick h2 {
    font-size: 1.2em;
    margin-bottom: 0%;
    color: #ffffff;
   }
   .contact-2 h2 {
    font-size: 1.2em;
    margin-bottom: 0%;
    color: #fff;
    }
   
  footer .child {
    width: 100%;
    margin:0;
    line-height: 0.9;
  }
  footer .beta{
    width: 100%;
    height: 70%;
    line-height: 0.8;
    align-self: center;
    padding-left: 2%;
    text-align: left;
    margin-top: 5%;
   
}




    footer .contact-2 {
        width: 100%;
        height: 70%;
        line-height: 0.8;
        text-align: left;
        position: relative;
        left: 0;
        margin-bottom: 5%;
    }

footer .contact-2 .logo{
  text-align: center;
  margin: 2px;
}

  .newsletter {
    width: 100%;
    margin: 0;
  }

  .newsletter h2 {
    font-size: 1.5em;
    margin-bottom: 0%;
    color: #fff;
  }

  .newsletter input {
    width: 97%;
    margin: 5px 0;
  }
  .newsletter button{
    width: 100%;
    margin: 5px 0;
  }

  .newsletter form{
    margin-top: -5%;
  }
  footer h3 {
    position: relative;
    right: 2%;
    font-size: 0.8em;
    color: yellow;
    bottom: 13%;
    margin-left: -5%;
    margin-bottom: 5%;
   }
}    