    html,
    body
    {
        overflow-x: hidden;
    }
        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8fafc;
      color: #1e293b;
    }
    .bg-soft-green {
      background: #2f347f;
    }
    .text-brand {
      color: #000000;
    }
    .btn
        {
        color: rgb(255, 255, 255) !important;
    }
    .text
    {
        color: rgb(255, 255, 255) !important;
    }
    .brand-bg {
      background: #000000;
    }
    .btn-outline-brand {
      border: 2px solid #000000;
      color: #000000;
      font-weight: 600;
      transition: 0.25s;
    }
    .btn-outline-brand:hover {
      background: #000000;
      color: #9ecbe9;
    }
    .btn-brand {
      background: #000000;
      color: #fff;
      font-weight: 600;
      border: none;
      transition: 0.25s;
    }
    .btn-brand:hover {
      background: #000000;
      color: #9ecbe9;
    }
    .section-title {
      font-weight: 700;
      letter-spacing: -0.02em;
      border-left: 5px solid #000000;
      padding-left: 1rem;
    }
    .card-hover {
      transition: all 0.2s ease-in-out;
      border: none;
      border-radius: 1.25rem;
      background: 9ecbe9;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px -8px rgba(31, 95, 74, 0.12);
      border: 1px solid rgba(31, 95, 74, 0.08);
    }
    .icon-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: #e4f0eb;
      border-radius: 60px;
      color: #09455d;
      font-size: 1.8rem;
    }
  .hero-gradient {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url("../images/index/computer.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    .footer-link {
      color: #ffffff;
      text-decoration: none;
      transition: 0.2s;
    }
    .footer-link:hover {
      color: #9ecbe9;
    }
    .text-light-emphasis {
  color: #fffefe !important;
}
    .news-badge {
      background: #000000;
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.35rem 1rem;
      border-radius: 30px;
      letter-spacing: 0.3px;
    }
    .contact-icon {
      width: 40px;
      height: 40px;
      background: #e4f0eb;
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1f5f4a;
      font-size: 1.2rem;
    }
    .stream-tag {
      background: #f1f6f3;
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 0.9rem;
      color: #09455d;
      border: 1px solid #d5e3dd;
    }
    .testimonial-card {
      background: white;
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 6px 18px rgba(0,0,0,0.02);
      border: 1px solid #eef5f1;
    }
    .stat-badge {
      background: rgba(31, 95, 74, 0.08);
      border-radius: 60px;
      padding: 0.3rem 1rem;
      font-weight: 600;
      color: #1f5f4a;
    }
    @media (max-width: 576px) {
      .hero-gradient {
        text-align: center;
      }
    }

    
    /*****header**/
.navbar{
   background-image: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url("../images/index/computer.jpg");
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand img{
    width: 180px;
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar-nav .nav-link{
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 14px !important;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #000000 !important;
}

/* Dropdown */
.dropdown-menu{
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.dropdown-item{
    padding: 10px 18px;
    transition: .3s;
}

.dropdown-item:hover{
    background: #0d6efd;
    color: #fff;
}

/* Student Login Button */
.btn-brand{
    background: #1b2a52;
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
}

.btn-brand:hover{
    background: #084298;
    color: #fff;
}

/*==========================
      TABLET
==========================*/
@media (max-width: 991.98px){

    .navbar-brand img{
        width: 140px;
    }

    .navbar-collapse{
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
    }

    .navbar-nav{
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item{
        width: 100%;
    }

    .navbar-nav .nav-link{
        padding: 10px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu{
        border: none;
        box-shadow: none;
        padding-left: 15px;
        margin-bottom: 10px;
    }

    .btn-brand{
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

/*****hero section**/

.hero-gradient{
    padding: 80px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-gradient h1{
    font-size: 3.8rem;
    line-height: 1.1;
}

.hero-gradient .lead{
    font-size: 1.2rem;
    max-width: 600px;
}

.hero-gradient .btn{
    padding: 14px 35px;
    font-size: 16px;
}

.hero-gradient .badge{
    font-size: 15px;
}

.hero-gradient .text-white div{
    font-size: 16px;
    font-weight: 500;
}

/*==============================
        Tablet
==============================*/

@media (max-width:991px){

    .hero-gradient{
        min-height: auto;
        padding: 70px 0;
        text-align: center;
    }

    .hero-gradient h1{
        font-size: 2.8rem;
    }

    .hero-gradient .lead{
        font-size: 1.05rem;
        max-width: 100% !important;
        margin: auto;
    }

    .hero-gradient .d-flex.gap-3{
        justify-content: center;
    }

    .hero-gradient .d-flex.gap-4{
        justify-content: center;
    }
}

/*==============================
        Mobile
==============================*/

@media (max-width:767px){

    .hero-gradient{
        padding: 50px 0;
    }

    .hero-gradient h1{
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-gradient .lead{
        font-size: .95rem;
        margin-bottom: 25px;
    }

    .hero-gradient .btn{
        width: 100%;
        padding: 12px;
    }

    .hero-gradient .d-flex.gap-3{
        flex-direction: column;
        width: 100%;
    }

    .hero-gradient .d-flex.gap-4{
        flex-direction: column;
        gap: 12px !important;
        align-items: center;
    }

    .hero-gradient .badge{
        font-size: 13px;
    }
}

/*==============================
      Small Mobile
==============================*/

@media (max-width:480px){

    .hero-gradient h1{
        font-size: 1.7rem;
        
    }

    .hero-gradient .lead{
        font-size: .9rem;
    }

    .hero-gradient .btn{
        font-size: 15px;
        display: none;
    }
}

/*==========================
      MOBILE
==========================*/
@media (max-width: 576px){

    .navbar{
        padding: 6px 0;
    }

    .navbar-brand img{
        width: 120px;
    }

    .navbar-toggler{
        padding: 4px 8px;
    }

    .navbar-nav .nav-link{
        font-size: 14px;
    }

    .btn-brand{
        font-size: 14px;
        padding: 8px 15px;
    }
}
/*==============================
    Responsive Right Side Menu
===============================*/
@media (max-width: 991.98px) {

    .navbar{
        z-index: 1055;
    }

    .navbar-collapse{
        position: fixed;
        top: 0;
        right: -300px;      /* Hidden */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        padding: 30px 15px 20px;
        overflow-y: auto;
        transition: .4s ease-in-out;
        /*box-shadow: -5px 0 20px rgba(0,0,0,.15);*/
        z-index: 1056;
    }

    /* Show menu */
    .navbar-collapse.show{
        right: 0;
    }

    /* Navigation */
    .navbar-nav{
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item{
        width: 100%;
    }

    .navbar-nav .nav-link{
        display: block;
        width: 100%;
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee;
    }
.navbar-toggler-icon
{
  color: white;
}
    .dropdown-menu{
        position: static !important;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 5px;
    }

    .btn-brand{
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    /* Dark Background */
    .navbar-collapse::before{
        content: "";
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,.45);
        z-index: -1;
    }

    .navbar-collapse.show::before{
        left: -280px;
    }
}

/*=========================
    Header Background
=========================*/
.hero-content{
    background:linear-gradient(rgba(177, 176, 176, 0.55), rgba(0, 0, 0, 0.71)), url("../images/index/computer.jpg");
}
.hero-header{
    background:linear-gradient(rgba(177, 176, 176, 0.55), rgba(0, 0, 0, 0.71));

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
}

/*=========================
      Navbar
=========================*/

.custom-navbar{
    background: transparent;
    padding: 15px 0;
}

.custom-navbar .nav-link{
    color:#000 !important;
    font-weight:500;
}

.custom-navbar .dropdown-menu{
    border:none;
    border-radius:10px;
}

.logo-img{
    height:70px;
}

/*=========================
      Hero
=========================*/

.hero-content{
    min-height: calc(100vh - 90px);
    display:flex;
    align-items:center;
}

.hero-content h1{
    color:#fff;
    font-size:3rem;
}

.hero-content p{
    color:#fff;
    font-size:20px;
    max-width:600px;
}
/*============================
    Mission & Vision
=============================*/

.mission-vision{
    background:#f8f9fa;
}

.section-tag{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.mission-card,
.vision-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #198754;
}

.vision-card{
    border-top:5px solid #0d6efd;
}

.mission-card:hover,
.vision-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.icon-box{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#198754;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.vision-card .icon-box{
    background:#0d6efd;
}

.mission-card h3,
.vision-card h3{
    color:#13225f;
}

.mission-card p,
.vision-card p{
    color:#666;
    line-height:1.8;
}

.mission-card ul li,
.vision-card ul li{
    margin-bottom:12px;
    font-size:16px;
}

/*============================
    Responsive
=============================*/

@media(max-width:991px){

    .mission-card,
    .vision-card{
        padding:30px;
    }

}

@media(max-width:576px){

    .mission-card,
    .vision-card{
        padding:25px;
        text-align:center;
    }

    .icon-box{
        margin:auto auto 20px;
    }

}
/********** mission& vission end *****/
