/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #1a1147;;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #1a1147;;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
     color: #231b4f !important;
    border-color: #231b4f !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background:#1a1147;;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #faa420;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner.png) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        /* margin-bottom: -75px; */
    }
}

.logo-img {
  height: 140px !important;        /* default desktop height */
  width: auto;         /* keeps aspect ratio */
  max-width: 100%;
  margin-top:-15px;
  margin-bottom: -15px;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-img {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 120px;
  }
}


.logo-imgs {
  height: 170px !important;        /* default desktop height */
  width: auto;         /* keeps aspect ratio */
  max-width: 100%;
  margin-top:30px;
  margin-bottom: -15px;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-imgs {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-imgs {
    height: 120px;
  }
}

@media (min-width: 992px) {
    .carousel-item {
        margin-top: 100px;
    }
}


 
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
            --text: #333;
            --text-light: #666;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
      
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* h1, h2, h3, h4 {
            color: var(--primary);
            line-height: 1.3;
            margin-bottom: 15px;
        }
        
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.6rem;
        }
        
        p {
            margin-bottom: 15px;
            color: var(--text-light);
        } */

        
        section {
            padding: 80px 0;
        }
        
        .section-light {
            background: #f9f9f9;
        }
        
        .text-center {
            text-align: center;
        }
        
        .highlight {
            color: var(--secondary);
        }
        
       
        
        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
        }
        
        .program-card:hover {
            transform: translateY(-10px);
        }
        
 

        .program-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        
        /* RIDGE Analysis */
        .ridge-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .ridge-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .ridge-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .ridge-item:hover {
            background: var(--secondary);
            color: white;
        }
        
        .ridge-item:hover h4 {
            color: white;
        }
        
        /* Methodology */
        .methodology-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .step {
            text-align: center;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .step:not(:last-child):after {
            content: '→';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--secondary);
        }
        
        /* Transformation Journey */
        .journey-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .journey-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .journey-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
        }
        
        .journey-arrow {
            font-size: 2rem;
            color: var(--secondary);
            margin: 15px 0;
        }
        
     
        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            color: white;
        }
        
        .cta h2:after {
            background: white;
        }
        
        .cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .guarantee-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .badge i {
            color: var(--warning);
        }
        
       
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            
            
            .ridge-container {
                grid-template-columns: 1fr;
            }
            
            .ridge-list {
                grid-template-columns: 1fr;
            }
            
            .step:not(:last-child):after {
                display: none;
            }
            
            .methodology-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
             
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {

            
            .program-card, .feature-item, .ridge-item, .journey-item, .testimonial-card {
                padding: 20px;
            }
        }







                .intro-content p {
            font-size: 1.2rem;
        }
        
        /* Programs Grid */
        .programs-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .program-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border-top: 5px solid #f9a420;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .program-card-1 { border-top-color: #1a237e; }
        .program-card-2 { border-top-color: #0d47a1; }
        .program-card-3 { border-top-color: #2e7d32; }
        .program-card-4 { border-top-color: #6a1b9a; }
        .program-card-5 { border-top-color: #00695c; }
        .program-card-6 { border-top-color: #ad1457; }
        .program-card-7 { border-top-color: #ef6c00; }
        
        .program-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .program-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .program-card:hover .program-image {
            transform: scale(1.1);
        }
        
        .program-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .program-card:hover .program-overlay {
            opacity: 1;
        }
        
        .program-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .program-card-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .program-icon {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .program-card-1 .program-icon { color: #1a237e; }
        .program-card-2 .program-icon { color: #0d47a1; }
        .program-card-3 .program-icon { color: #2e7d32; }
        .program-card-4 .program-icon { color: #6a1b9a; }
        .program-card-5 .program-icon { color: #00695c; }
        .program-card-6 .program-icon { color: #ad1457; }
        .program-card-7 .program-icon { color: #ef6c00; }
        
        .program-card-body {
            padding: 25px 30px;
            flex-grow: 1;
        }
        
        .program-features {
            list-style: none;
            margin-top: 20px;
        }
        
        .program-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: var(--text-light);
        }
        
        .program-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        .program-outcome {
            background: var(--light-blue);
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
            border-left: 4px solid var(--accent);
        }
        
        .program-outcome h4 {
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .program-outcome h4 i {
            color: var(--success);
        }


        .program-card-header h3{
            font-size: 25px;
        }




            .program-section{
      padding:60px 20px;
      max-width:1200px;
      margin:auto;
    }

    .ok1{
            background-image: url(../img/bg-shape-7.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }

    .program-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:25px;
    }

    .program-card{
      background:#fff;
      border-radius:15px;
      padding:25px;
      text-align:center;
      box-shadow:0 5px 20px rgba(0,0,0,0.08);
      transition:0.3s ease;
    }

    .program-card:hover{
      transform:translateY(-5px);
    }

    /* .program-card img{
     
      object-fit:cover;
      margin-bottom:15px;
      border-radius: 10px
    } */
     

    /* Image Box */
.program-img{
  width:100%;
  height:200px;
  overflow:hidden;
  border-radius:12px;
  margin-bottom:15px;
}

/* Image */
.program-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

    .program-card h3{
      font-size:18px;
      margin-bottom:10px;
      color:#222;
    }

    .tags{
      margin-bottom:15px;
    }

    .tags span{
      display:inline-block;
     background: #f9aa32;
    color: #ffffff;
      padding:5px 12px;
      border-radius:20px;
      font-size:12px;
      margin:3px;
    }

    .program-card p{
      font-size:14px;
      color:#666;
      line-height:1.5;
      margin-bottom:20px;
    }

    .program-card a{
      display:inline-block;
      text-decoration:none;
          border: 1px solid #f9a11b;
    color: #f9a11b;
      padding:8px 20px;
      border-radius:25px;
      font-size:14px;
      transition:0.3s;
    }

    .program-card a:hover{
      background:#f9a11b;
      color:#fff;
    }

    /* Tablet */
    @media(max-width:992px){
      .program-grid{
        grid-template-columns:repeat(2,1fr);
      }
    }

    /* Mobile */
    @media(max-width:576px){
      .program-grid{
        grid-template-columns:1fr;
      }

      .program-card{
        padding:20px;
      }
    }

    .trust-section{
    padding:60px 20px;
    background:#f9fbff;
    /* font-family:Arial, sans-serif; */
}


.trust-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.trust-container h2{
    font-size:32px;
    color:#1a2c52;
    margin-bottom:15px;
}

.trust-container p{
    font-size:16px;
    color:#555;
    margin-bottom:40px;
}

/* ===== GRID ===== */
.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ===== CARD ===== */
.trust-card{
    background:#fff;
    padding:30px 20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.trust-card:hover{
    transform:translateY(-6px);
}

/* ===== ICON ===== */
.trust-icon{
    font-size:45px;
    color:#faa628;
    margin-bottom:15px;
}

/* ===== TEXT ===== */
.trust-card h3{
    font-size:20px;
    color:#1a2c52;
    margin-bottom:10px;
}

.trust-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:900px){
    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){

    .trust-container h2{
        font-size:26px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .trust-card{
        padding:25px 18px;
    }
}




/* ===== COUNTER SECTION ===== */
.counter-section{
    background:linear-gradient(135deg,#0f4c81,#150d44);
    padding:70px 20px;
    color:#fff;
    /* font-family:Arial, sans-serif; */
}

.counter-container{
    max-width:1200px;
    margin:auto;
}

/* Grid Layout */
.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

/* Box */
.counter-box{
    padding:25px 15px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(6px);
    transition:0.3s;
}

.counter-box:hover{
    transform:translateY(-6px);
}

/* Icon */
.counter-icon{
    font-size:42px;
    margin-bottom:12px;
}

/* Number */
.counter-number{
    font-size:36px;
    font-weight:bold;
    margin-bottom:6px;
}

/* Text */
.counter-text{
    font-size:15px;
    opacity:0.95;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:900px){
    .counter-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }
}

/* Mobile */
@media(max-width:500px){

    .counter-section{
        padding:55px 15px;
    }

    .counter-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .counter-number{
        font-size:32px;
    }

    .counter-icon{
        font-size:36px;
    }
}

.sarva-journey-section{
    padding:80px 20px;
    background:#f9fbff;
    /* font-family:'Segoe UI', Arial, sans-serif; */
}

.sarva-journey-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

/* Title */
.sarva-journey-title{
    font-size:36px;
    color:#1a2c52;
    margin-bottom:10px;
}

.sarva-journey-underline{
    width:70px;
    height:4px;
    background:linear-gradient(to right,#1a73e8,#00c896);
    margin:0 auto 60px;
    border-radius:5px;
}

/* Timeline */
.sarva-journey-timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

/* Line */
.sarva-journey-timeline::before{
    content:'';
    position:absolute;
    top:38px;
    left:5%;
    right:5%;
    height:6px;
    background:linear-gradient(to right,#dbeafe,#bfdbfe);
    border-radius:10px;
    z-index:1;
}

/* Step */
.sarva-journey-step{
    width:20%;
    position:relative;
    z-index:2;
}

/* Circle */
.sarva-journey-circle{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#20174b,#20174b);
    color:#fff;
    font-size:26px;
    font-weight:700;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    box-shadow:0 10px 25px rgba(37,99,235,0.4);
    transition:0.3s;
}

/* Hover Effect */
.sarva-journey-step:hover .sarva-journey-circle{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(37,99,235,0.6);
}

/* Card */
.sarva-journey-card{
    /* background:#fff; */
    padding:18px 15px;
    border-radius:12px;
    /* box-shadow:0 6px 18px rgba(0,0,0,0.08); */
    transition:0.3s;
}

.sarva-journey-step:hover .sarva-journey-card{
    transform:translateY(-5px);
}

/* Text */
.sarva-journey-card h4{
    font-size:16px;
    color:#1a2c52;
    margin-bottom:6px;
}

.sarva-journey-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.5;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){

    .sarva-journey-timeline{
        flex-direction:column;
        align-items:center;
    }

    .sarva-journey-timeline::before{
        display:none;
    }

    .sarva-journey-step{
        width:100%;
        max-width:400px;
        margin-bottom:35px;
    }

}

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

    .sarva-journey-title{
        font-size:26px;
    }

    .sarva-journey-circle{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .sarva-journey-card{
        padding:15px;
    }

}


.sarva-inspire-wrap{
    padding:90px 20px;
    background:white;
    /* font-family:'Segoe UI', Arial, sans-serif; */
}

.sarva-inspire-box{
    max-width:1200px;
    margin:auto;
    background:linear-gradient(135deg,#eaf2ff,#f8fcff,#eefcf7);
    backdrop-filter:blur(12px);
    border-radius:25px;
    padding:60px 50px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* Title */
.sarva-inspire-title{
    text-align:center;
    font-size:38px;
    color:#102a56;
    margin-bottom:50px;
}

/* Content Layout */
.sarva-inspire-flex{
    display:flex;
    align-items:flex-start;
    gap:60px;
    position:relative;
}

/* Divider */
.sarva-inspire-flex::after{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    height:100%;
    width:2px;
    background:linear-gradient(to bottom,#3b82f6,#22c55e);
    opacity:0.3;
}

/* Message Block */
.sarva-inspire-block{
    width:50%;
    position:relative;
}

/* Label */
.sarva-inspire-tag{
    display:inline-block;
    padding:6px 16px;
   background: linear-gradient(to right, #170e45, #f9a11c);
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

/* Quote */
.sarva-inspire-quote{
    font-size:22px;
    font-weight:600;
    color:#1e293b;
    line-height:1.6;
    margin-bottom:25px;
}

/* Lines */
.sarva-inspire-line{
    font-size:17px;
    color:#475569;
    line-height:1.8;
    margin-bottom:15px;
}

/* Signature */
.sarva-inspire-sign{
    margin-top:25px;
    font-weight:600;
    color:#0f172a;
    letter-spacing:0.5px;
}

/* Icon */
.sarva-inspire-icon{
    font-size:45px;
    color:#2563eb;
    margin-bottom:20px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:900px){

    .sarva-inspire-box{
        padding:45px 30px;
    }

    .sarva-inspire-flex{
        flex-direction:column;
        gap:40px;
    }

    .sarva-inspire-flex::after{
        display:none;
    }

    .sarva-inspire-block{
        width:100%;
    }

}

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

    .sarva-inspire-title{
        font-size:26px;
    }

    .sarva-inspire-quote{
        font-size:18px;
    }

    .sarva-inspire-line{
        font-size:15px;
    }

    .sarva-inspire-box{
        padding:35px 22px;
    }

}



/* ===== CTA SECTION ===== */
/* .sarva-cta-wrap{
    position:relative;
    padding:100px 20px;
    background:url("img/bg-students.jpg") center/cover no-repeat;
    font-family:'Segoe UI', Arial, sans-serif;
    overflow:hidden;
}

 
.sarva-cta-wrap::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(16,42,86,0.9),
        rgba(37,99,235,0.75)
    );
    z-index:1;
} */
/* MOBILE: Remove video & use gradient */
@media(max-width:768px){

    /* Hide video completely */
    .sarva-video-bg{
        display:none;
    }

    /* Replace background with gradient */
    .sarva-cta-wrap{
        background:linear-gradient(
            135deg,
            #0f2a5f,
            #1f4fd8
        );
    }

    /* Remove overlay (since no video) */
    .sarva-video-overlay{
        display:none;
    }

    .sarva-cta-wrap{
        padding:70px 15px;
    }

    .sarva-cta-box h2{
        font-size:26px;
    }

    .sarva-cta-box p{
        font-size:14px;
    }

    .sarva-btn-main{
        width:100%;
        max-width:260px;
    }
}

html, body {
    overflow-x: hidden;
}
.sarva-video-bg iframe{
    width:100vw;
}
.sarva-video-bg iframe{
    width:100%;
    height:100%;
    min-width:100%;
    min-height:100%;
}

.sarva-cta-wrap{
    position:relative;
    width:100vw;
    min-height:360px;
    overflow:hidden;
}

/* VIDEO BACKGROUND */
.sarva-video-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.sarva-video-bg iframe{
    position:absolute;
    top:50%;
    left:50%;
    width:100vw;
    height:56.25vw; /* 16:9 */
    min-height:100%;
    min-width:177.77vh;
    transform:translate(-50%, -50%);
    pointer-events:none;
}

/* DARK GRADIENT OVERLAY */
.sarva-cta-wrap::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(10,30,70,0.85),
        rgba(20,60,160,0.8)
    );
    z-index:1;
}

/* Content */
.sarva-cta-box{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

/* Title */
.sarva-cta-box h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

/* Subtitle */
.sarva-cta-box p{
    font-size:18px;
    line-height:1.6;
    opacity:0.95;
    margin-bottom:35px;
}

/* Buttons */
.sarva-cta-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
      margin-top:45px;
}

.sarva-btn-main{
   background: #faac36;
    color: #ffffff;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.sarva-btn-main:hover{
    background:#faa21c;
    color:#fff;
}

.sarva-btn-alt{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    padding:14px 28px;
    border:2px solid rgba(255,255,255,0.5);
    border-radius:30px;
    transition:0.3s;
}

.sarva-btn-alt:hover{
    background:rgba(255,255,255,0.15);
}

/* Badges */
.sarva-cta-badges{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.sarva-cta-badge{
    display:flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.15);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    backdrop-filter:blur(6px);
}

.sarva-cta-badge span{
    font-size:18px;
}


/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:900px){

    .sarva-cta-box h2{
        font-size:32px;
    }

    .sarva-cta-box p{
        font-size:16px;
    }

}

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

    .sarva-cta-wrap{
        padding:70px 15px;
    }

    .sarva-cta-box h2{
        font-size:24px;
    }

    .sarva-cta-box p{
        font-size:14px;
    }

    .sarva-btn-main,
    .sarva-btn-alt{
        width:100%;
        max-width:260px;
        text-align:center;
    }

    .sarva-cta-badge{
        font-size:13px;
    }

}


/* ===== POPUP FORM DESIGN ===== */

.sarva-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:15px;
}

.sarva-popup-box{
    background:#fff;
    max-width:420px;
    width:100%;
    padding:30px 25px;
    border-radius:12px;
    position:relative;
    animation:popupZoom 0.3s ease;
}

@keyframes popupZoom{
    from{transform:scale(0.8);opacity:0;}
    to{transform:scale(1);opacity:1;}
}

.sarva-popup-box h3{
    text-align:center;
    margin-bottom:20px;
    color:#102a56;
}

.sarva-popup-box input,
.sarva-popup-box select{
    width:100%;
    padding:12px;
    margin-bottom:14px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.sarva-popup-box input:focus,
.sarva-popup-box select:focus{
    outline:none;
    border-color:#2563eb;
}

.sarva-submit-btn{
    width:100%;
    background:#2563eb;
    color:#fff;
    border:none;
    padding:13px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.sarva-submit-btn:hover{
    background:#22c55e;
}

.sarva-close{
    position:absolute;
    top:12px;
    right:15px;
    font-size:24px;
    cursor:pointer;
    color:#555;
}

/* Mobile */
@media(max-width:480px){

    .sarva-popup-box{
        padding:22px 18px;
    }

}
/* ===== APPLY POPUP ===== */

.apply-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:15px;
}

.apply-popup-box{
    background:#fff;
    width:100%;
    max-width:420px;
    padding:30px 25px;
    border-radius:12px;
    position:relative;
    text-align:center;
}

.apply-popup-box h3{
    margin-bottom:20px;
    color:#102a56;
}

.apply-popup-box input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
}

.apply-popup-box button{
    width:100%;
    background:#2563eb;
    color:#fff;
    border:none;
    padding:12px;
    border-radius:25px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.apply-popup-box button:hover{
    background:#1e40af;
}

.close-popup{
    position:absolute;
    right:15px;
    top:10px;
    font-size:24px;
    cursor:pointer;
    color:#444;
}

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

    .apply-popup-box{
        padding:25px 18px;
    }

}



.faq-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-header {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a2b6d;
}

/* Tabs */
.faq-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.faq-tabs button {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #1a2b6d;
  background: #fff;
  color: #1a2b6d;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.faq-tabs button.active {
  background: #1a2b6d;
  color: #fff;
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
      color: black;
}

.faq-question span {
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-header {
    font-size: 22px;
  }
}


.life-support-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #9ec9ff, #eef6ff);
  overflow: hidden;
}

.life-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #ffffff70, transparent 60%);
}

.life-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.life-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.life-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #0a2d66;
}

.life-content h1 span {
  color: #d32f2f;
}

.life-lines {
  margin-top: 25px;
}

.life-lines p {
  font-size: 20px;
  margin: 8px 0;
  color: #333;
}

.life-reassure {
  margin: 30px 0;
}

.life-reassure p {
  font-size: 18px;
  color: #2e7d32;
  font-weight: 600;
}

.life-matter {
  font-size: 30px;
  font-weight: 800;
  color: #c62828;
  margin: 30px 0;
}

.life-brand strong {
  font-size: 22px;
  color: #0a2d66;
}

.life-brand span {
  display: block;
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

.life-cta {
  margin-top: 30px;
  background: #0a2d66;
  display: inline-block;
  padding: 18px 28px;
  border-radius: 12px;
}

.life-cta span {
  display: block;
  color: #cfe3ff;
  font-size: 14px;
}

.life-cta a {
  font-size: 26px;
  color: #ffd600;
  font-weight: bold;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .life-card {
    padding: 40px 25px;
  }

  .life-content h1 {
    font-size: 32px;
  }

  .life-lines p {
    font-size: 16px;
  }

  .life-matter {
    font-size: 24px;
  }

  .life-cta a {
    font-size: 20px;
  }
}.career-cta {
  padding: 70px 20px;
}

/* Card */
.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #1f3b6e, #203f77);
  border-radius: 22px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* CENTER DOT GRID */
.dot-grid {
  position: absolute;
left: 60%;
  bottom: 35px;
  width: 160px;
  height: 40px;
  background-image: radial-gradient(#ffffff55 2px, transparent 2px);
  background-size: 14px 14px;
}

/* TOP RIGHT LINES */
.line-accent {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background:
    repeating-linear-gradient(
      45deg,
      #ffffff25,
      #ffffff25 2px,
      transparent 2px,
      transparent 6px
    );
  border-radius: 6px;
}

/* Image Area */
.cta-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Yellow Base Circle */
.circle-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #ffcc00;
  border-radius: 50%;
  left: 30px;
  bottom: 0;
  z-index: 0;
}

/* Yellow Ring */
.circle-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 3px solid #ffcc00;
  border-radius: 50%;
  left: 15px;
  bottom: -15px;
  opacity: 0.6;
}

/* Image */
.cta-image img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content */
.cta-content {
  flex: 1.4;
  padding: 45px 55px;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 12px;
}

/* Button */
.sarva-btn-main {
  display: inline-block;
  background: #ffb300;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.sarva-btn-main:hover {
  background: #ffb300;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .dot-grid,
  .line-accent {
    display: none;
  }

  .circle-bg {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
  }

  .circle-ring {
    width: 230px;
    height: 230px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-content {
    padding: 30px 20px 40px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 16px;
  }
}






 /* Founder Grid */
        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            margin: 80px auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        }
        
        .founder-image {
            background: linear-gradient(135deg, var(--secondary), #5abf95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
        }
        
        .founder-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .founder-image .badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .founder-content {
            padding: 50px 40px 50px 0;
        }
        
        .founder-name {
             
            font-size: 2.5rem;
            color: #160d44;
            margin-bottom: 10px;
        }
        
        .founder-role {
            color: #fba11c;
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .founder-quote {
            background: var(--light);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
                border-left: 5px solid #150c43;
    font-size: 17px;
            font-style: italic;
            color: var(--primary);
        }
        
        /* Section Cards */
        .section-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            /* border-top: 8px solid #160d44; */
        }
        
        .section-titlee {
            
            color: var(--primary);
            margin-bottom: 30px;
            /* display: flex; */
            align-items: center;
            gap: 15px;
        }
        
        .section-titlee i {
            color: #f9a31f;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary);
        }
        .highlight-box h3{
            font-size:15px;
        }
        
        .pill-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .pill {
            background: var(--light);
               padding: 10px 17px;
            border-radius: 50px;
            font-weight: 500;
            color: var(--primary);
            border: 2px solid var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pill i {
            color: var(--secondary);
        }
        
        /* Promise Cards */
        .promise-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .promise-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border-top: 5px solid #faa21c;
        }
        
        .promise-card:hover {
            transform: translateY(-10px);
        }
        
        .promise-card h3 {
            /* font-family: 'Poppins', sans-serif; */
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Final Section */
        .final-section {
            background: linear-gradient(135deg, var(--primary) 0%, #3a3d5d 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-top: 80px;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }
        
        .final-quote {
            /* font-family: 'Poppins', sans-serif; */
            font-size: 2.5rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.4;
        }
        
        .final-tagline {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .signature {
            font-size: 1.5rem;
            margin-top: 50px;
            font-weight: 500;
        }
        
        /* CTA */
        .cta-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .cta-title {
            /* font-family: 'Poppins', sans-serif; */
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            color: var(--text);
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
         
    
        
        /* Responsive */
        @media (max-width: 992px) {
            .founder-grid {
                grid-template-columns: 1fr;
            }
            
            .founder-content {
                padding: 40px;
            }
            
            .header h1 {
                font-size: 2.8rem;
            }
            
            .final-quote {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
             
            .founder-name {
                font-size: 2rem;
            }
            
            .section-card {
                padding: 30px;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
   /* Problem Section */
        .problem {
            background-color: white;
                margin-top: -100px;
        }
        
        .problem-container {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top:50px;
        }
        
        .problem-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .problem-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .problem-content {
            flex: 1;
        }
        
        /* Philosophy Section */
        .philosophy {
            background-color: #f0f8ff;
        }
        
        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .philosophy-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        

        .philosophy-card h3{
             color: #faa421;
        }
        .philosophy-card:hover {
            transform: translateY(-10px);
        }
        
        .philosophy-card i {
            font-size: 2.5rem;
               color: #faa421;
            margin-bottom: 1.5rem;
        }
        
        /* Mission Section */
        .mission {
            background-color: white;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .mission-item {
             background: white;
            box-shadow: var(--shadow);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid #170e45;
            transition: all 0.3s ease;
        }
        
        .mission-item:hover {
            background: white;
            box-shadow: var(--shadow);
        }
        
        .mission-item h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-size: 17px;
        }
        
        .mission-item i {
            color: #fab64d;
        }
        
        /* Difference Section */
        .difference {
            background-color: #f0f8ff;
        }
        
        .difference-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .quote-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 40px 0;
            border-left: 5px solid var(--accent);
        }
        
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Promise Section */
        .promise {
            background: linear-gradient(135deg, #160d44 0%, #0f4c75 100%);
            color: white;
            text-align: center;
        }
        
        .promise h2 {
            color: white;
        }
        
        .promise h2:after {
            background: var(--accent);
        }
        
        .promise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .promise-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease;
        }
        
        .promise-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .promise-card i {
            font-size: 2.5rem;
            color: #f9a21e;
            margin-bottom: 1.5rem;
        }
        
        .promise-card h3 {
            color: white;
        }
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .problem-container {
                flex-direction: column;
            }
            
            .problem-img, .problem-content {
                width: 100%;
            }
        }
        
        

         /* main container */
        .sv-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }
 
 .sv-wrapper h1{
    font-size: 25px;
 }
        /* headings */
        .section-head {
            margin-bottom: 2.5rem;
        }
        .section-head h1 {
            font-size: 25px ;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #0b2b3c;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-head h1 i {
            color: #160e44;
            font-size: 2.2rem;
        }
        .section-head p {
        font-size: 19px;
    color: #2c4a5e;
    /* max-width: 800px; */
    margin-top: 0.5rem;
    border-left: 5px solid #3b8fc2;
    padding-left: 1.5rem;
    background: rgba(59, 143, 194, 0.04);
    border-radius: 0 12px 12px 0;
    padding: 15px 13px 20px 25px;
        }

        /* course grid */
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem 1.5rem;
            margin: 3rem 0 2rem;
        }

        .course-card {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 28px -8px rgba(1, 55, 84, 0.12);
            transition: transform 0.2s ease, box-shadow 0.25s ease;
            border: 1px solid rgba(148, 184, 214, 0.25);
            display: flex;
            flex-direction: column;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 38px -10px rgba(19, 80, 120, 0.2);
            border-color: rgba(54, 130, 190, 0.3);
        }

        /* Course Image Styling */
        .course-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid #3b8fc2;
            transition: transform 0.3s ease;
        }

        .course-card:hover .course-image {
            transform: scale(1.02);
        }

        .card-content {
            padding: 1.8rem 1.5rem 2rem 1.5rem;
            flex: 1;
        }

        .card-icon {
            font-size: 25px;
            color: #160e44;
            margin-bottom: 0.75rem;
        }

        .course-card h3 {
           font-size: 20px;
     letter-spacing: -0.3px;
    color: #0a3142;
    border-bottom: 3px solid #b4d4f0;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
    display: inline-block;
    line-height: 1.2;
    margin-left: 10px;
        }

        .course-sub {
            font-weight: 600;
            color: #1f5377;
            font-size: 1.1rem;
            margin-top: -0.2rem;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            margin: 1rem 0 1.2rem;
            flex: 1;
        }

        .feature-list li {
            margin-bottom: 0.6rem;
            font-size: 0.98rem;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            color: #1e3c52;
        }

        .feature-list li i {
            color: #faa627;
            font-size: 1rem;
            min-width: 1.3rem;
            margin-top: 0.15rem;
        }

        .ideal-badge {
            background: #e2f0fa;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #10567e;
            margin: 1rem 0 0.8rem;
            border: 1px dashed #3980b0;
            text-align: center;
        }

        .ideal-badge i {
            margin-right: 6px;
            color: #cc7b2b;
        }

        /* common benefits + philosophy */
        .common-section {
            background: linear-gradient(145deg, #ffffff 0%, #f5faff 100%);
            border-radius: 40px;
            padding: 2.5rem  2rem;
            margin: 3rem 70px 2rem;
            border: 1px solid rgba(78, 149, 211, 0.2);
            box-shadow: inset 0 2px 8px rgba(255,255,255,0.8), 0 12px 20px -12px #2a577b33;
        }

        .common-section h2 {
            font-size: 25px;
            font-weight: 650;
            color: #103f5c;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 2rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.2rem 1.8rem;
            margin: 1.5rem 0 2rem;
        }

        .benefit-item {
           background: white;
    border-radius: 15px;
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px #cdddee;
    /* font-weight: 500; */
    color: #11537a;
    border: 1px solid white;
    font-size: 15px;
        }

        .benefit-item i {
            background: #165d88;
            color: white;
            border-radius: 20%;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
        }

        .philosophy-box {
            background: #e7f0f9;
            border-radius: 32px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1rem;
            border-left: 10px solid #3d8ec9;
        }

        .philosophy-box p {
            font-size: 20px;
            font-weight: 500;
            color: #03314b;
        }

        .enroll-strip {
            background: #103f5c;
            color: white;
            border-radius: 60px;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin: 2.8rem 0 1rem;
        }

        .enroll-strip span {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: -0.2px;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .enroll-strip .btn-group {
            display: flex;
            gap: 1rem;
        }

        /* .btn {
            background: white;
            color: #103f5c;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            text-decoration: none;
            display: inline-block;
        } */

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #103f5c;
        }

        .btn:hover {
            background: #fee2b5;
            transform: scale(1.02);
        }

        /* responsive tweaks */
        @media (max-width: 600px) {
            .hero-image {
                height: 130px;
                border-radius: 24px;
            }
            .section-head h1 {
                font-size: 1.9rem;
                flex-wrap: wrap;
            }
            .course-card h3 {
                font-size: 1.4rem;
            }
            .enroll-strip {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                border-radius: 32px;
            }
            .philosophy-box p {
                font-size: 1.1rem;
            }
            .course-image {
                height: 160px;
            }
        }



.apply-btn-small {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #103f5c;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #103f5c;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(16, 63, 92, 0.15);
    margin: 0 auto; /* Center */
}
     

        .apply-btn-small i {
            margin-right: 8px;
            color: #faa21e;
            font-size: 0.9rem;
        }

        .apply-btn-small:hover {
            background: #103f5c;
            border-color: #103f5c;
            color:white;
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(16, 63, 92, 0.25);
        }

        .apply-btn-small:active {
            transform: translateY(0);
        }
.button-wrapper {
    display: flex;
    justify-content: center; /* Horizontal center */
} 
.apply-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.apply-popup-content{
    background:#fff;
    width:400px;
    padding:30px;
    border-radius:10px;
    position:relative;
}

.apply-popup-content h2{
    text-align:center;
    margin-bottom:20px;
}

.apply-popup-content input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ddd;
}

.apply-popup-content button{
    width:100%;
    padding:12px;
    background:#2f5fd0;
    color:#fff;
    border:none;
    border-radius:25px;
    font-weight:bold;
    cursor:pointer;
}

.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:22px;
    cursor:pointer;
}
 
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.modal-content button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#2d5be3,#3f7bff);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.modal-content button:hover {
  opacity: 0.9;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
 
        /* .brochure {
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 2.5rem 2.5rem 2rem 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.25);
            overflow: hidden;
        } */


        .brochure {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 2.5rem 2.5rem 2rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.25);
    overflow: hidden;

    margin: 0 auto;   /* ADD THIS */
}

        /* hero header */
        .hero {
            background: linear-gradient(135deg, #002b3a 0%, #0a4d5c 100%);
            color: white;
            padding: 2.5rem 2.5rem 2rem 2.5rem;
            position: relative;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 800px;
             font-family: 'Nunito', sans-serif;
        }

        .hero .subhead {
            font-size: 1.3rem;
            font-weight: 400;
            margin-top: 0.75rem;
            opacity: 0.9;
            border-left: 4px solid #ffc107;
            padding-left: 1.5rem;
             font-family: 'Nunito', sans-serif;
        }

        .hero .badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.4rem;
            border-radius: 40px;
            font-weight: 500;
            margin-top: 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 1rem;
        }

        /* quick action strip */
        .action-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem 2.5rem;
            background: #eef3f7;
            border-bottom: 1px solid #d9e2e9;
        }

        .btnx {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            color: #0a4d5c;
            border: 1px solid #cbdae3;
            transition: all 0.2s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.02);
            font-size: 1rem;
        }

        .btnx i {
            font-size: 1.2rem;
        }

        .btn-primary {
            background: #0a4d5c;
            color: white;
            border: none;
            box-shadow: 0 8px 16px -6px #0a4d5c80;
        }

        .btn-primary i {
            color: #ffcd6b;
        }

        .btnx:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 24px -8px rgba(10,77,92,0.3);
            border-color: #0a4d5c40;
            color:white;
        }

        .btn-primary:hover {
            background: #0f5f72;
        }

        /* main content */
        .content {
            padding: 2rem 2.5rem 2.5rem;
        }

        /* grid sections */
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .card {
            background: #ffffff;
            border-radius: 1.8rem;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 40, 50, 0.05);
            border: 1px solid #e3eef5;
        }

        .card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #002b3a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
             font-family: 'Nunito', sans-serif;
        }

        .card h2 i {
            color: #0a4d5c;
            font-size: 1.8rem;
            width: 2rem;
        }

        .step-list {
            list-style: none;
        }

        .step-list li {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.4rem;
            font-weight: 450;
            color: #1e3b47;
        }

        .step-num {
            background: #d4eaf0;
            color: #002b3a;
            width: 30px;
            height: 30px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .step-list li span:last-child {
            line-height: 1.5;
        }

        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.2rem 0 0.5rem;
        }

        .chip {
            background: #ecf7fb;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #003544;
            border: 1px solid #cbe5f0;
        }

        .chip i {
            margin-right: 6px;
            color: #0a4d5c;
            font-size: 0.9rem;
        }

        .eligibility-list {
            list-style: none;
        }

        .eligibility-list li {
            margin-bottom: 0.9rem;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .eligibility-list li i {
            color: #0f7b8f;
            font-size: 1.2rem;
            min-width: 1.6rem;
            margin-top: 0.2rem;
        }

        .scholar-box {
            background: #fcf2de;
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-top: 1.2rem;
            border-left: 6px solid #f1b31c;
        }

        .row-documents {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem 2rem;
            margin: 1rem 0;
        }

        .doc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 450;
        }

        .doc-item i {
            font-size: 1.4rem;
            color: #0a4d5c;
            width: 2rem;
        }

        .important-dates {
            background: #e6f2f5;
            border-radius: 1.5rem;
            padding: 1.5rem 2rem;
            margin: 2rem 0 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .dates-left p {
            font-weight: 600;
            color: #00313d;
            font-size: 1.2rem;
        }

        .dates-left small {
            font-weight: 400;
            font-size: 0.95rem;
            display: block;
            color: #2b5b6b;
        }

        .free-badge {
            background: #0a4d5c;
            color: white;
            border-radius: 40px;
            padding: 0.5rem 1.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }


          .free-badge:hover {
            background: #0a4d5c;
            color: white;
           
        }

        .footer-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
        }

        .footer-cta .btn {
            padding: 1.1rem 2.6rem;
            font-size: 1.15rem;
        }

        .testimonial-note {
            text-align: center;
            font-style: italic;
            color: #1b6b7e;
            font-weight: 450;
            background: #f9feff;
            padding: 1rem 2rem;
            border-radius: 100px;
            width: fit-content;
            margin: 1rem auto 0;
            border: 1px solid #bbe1ec;
        }

        hr {
            border: 1px solid #d4e9f2;
            margin: 2rem 0 1rem;
        }

        /* responsive */
        @media (max-width: 800px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 2rem 1.5rem; }
            .action-strip, .content { padding: 1.5rem 1.5rem; }
            .grid-2col { grid-template-columns: 1fr; gap: 1.5rem; }
            .row-documents { grid-template-columns: 1fr; }
            .important-dates { flex-direction: column; align-items: flex-start; gap: 1rem; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.7rem; }
            .subhead { font-size: 1.1rem; }
            .btn { width: 100%; justify-content: center; }
            .action-strip { flex-direction: column; }
            .card { padding: 1.5rem 1.2rem; }
        }

        /* limited seats tag */
        .limited-seats {
            background: #ffd966;
            color: #1e4b56;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-block;
            margin-left: 1rem;
            vertical-align: middle;
        }       


        .popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
}

.popup-content input,
.popup-content select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.popup-content button {
    background: #0a4d5c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}



        .main-card {
            /* max-width: 1200px;
            width: 100%;
            background: #ffffff;
            border-radius: 48px 48px 40px 40px;
            box-shadow: 0 30px 60px -15px rgba(18, 52, 77, 0.2), 0 10px 25px -8px rgba(0, 40, 70, 0.1);
            overflow: hidden;
            transition: all 0.2s ease; */
               max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 2.5rem 2.5rem 2rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.25);
    overflow: hidden;

    margin: 0 auto;   /* ADD THIS */
        }

        /* gradient bar */
        .hero-glow {
            background: linear-gradient(135deg, #1b2f4f, #1f3a5f, #1e4b6e);
            padding: 24px 28px 40px 28px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .hero-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255, 215, 100, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .logo-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: -0.5px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(4px);
            width: fit-content;
            padding: 8px 22px 8px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255,255,255,0.25);
            margin-bottom: 28px;
        }

        .logo-badge i {
            font-size: 1.8rem;
            color: #ffd966;
        }

        .hero-title {
            font-size: clamp(2.2rem, 8vw, 3.6rem);
            font-weight: 700;
            line-height: 1.15;
            max-width: 750px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .hero-title span {
            background: linear-gradient(120deg, #ffe791, #c0e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.3rem;
            margin-top: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            /* max-width: 600px; */
            font-weight: 350;
            line-height: 1.5;
             font-family: 'Nunito', sans-serif;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 10px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat-icon {
            background: rgba(255,255,255,0.15);
            width: 48px;
            height: 48px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(2px);
        }

        .stat-text {
            font-weight: 500;
        }

        .stat-text small {
            display: block;
            font-size: 0.8rem;
            opacity: 0.7;
            font-weight: 300;
        }

        /* content area */
        .content-panel {
            padding: 32px 28px 40px;
            background: #ffffff;
        }

        .section-title1 {
            font-size: 1.9rem;
            font-weight: 650;
            letter-spacing: -0.02em;
            color: #0f293f;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Nunito', sans-serif;
        }

        .section-title1 i {
            color: #1f5e8e;
            font-size: 2rem;
        }

        .grid-3, .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 22px;
            margin: 30px 0 20px;
        }

        .feature-card {
            background: #f8faff;
            border-radius: 28px;
            padding: 22px 18px;
            box-shadow: 0 8px 18px -10px rgba(0,60,100,0.15);
            transition: 0.2s;
            border: 1px solid #eef4fd;
            text-align: center;
        }

        .feature-card:hover {
            background: #ffffff;
            box-shadow: 0 20px 25px -12px #1f4e7c33;
            border-color: #c9ddf8;
        }

        .feature-card i {
            font-size: 2.4rem;
            background: linear-gradient(145deg, #164863, #2d6a9f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: #142b44;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: #2d4059;
            font-weight: 350;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .pill-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
            margin: 25px 0 15px;
        }

        .pill {
            background: #e6f0fa;
            color: #113755;
            padding: 8px 22px;
            border-radius: 60px;
            font-weight: 500;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: inset 0 -1px 0 #b6d2ed;
             font-family: 'Nunito', sans-serif;
        }

        .pill i {
            color: #1e5d8e;
            font-size: 1rem;
        }

        .badge-mastery {
            background: #1f3f5c;
            color: white;
            padding: 20px 28px;
            border-radius: 40px;
            margin: 40px 0 25px;
            background-image: radial-gradient(circle at 0% 30%, #3c6e9c30 0%, transparent 50%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .badge-mastery span {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.5px;
             font-family: 'Nunito', sans-serif;
        }

        .badge-mastery small {
            font-weight: 300;
            opacity: 0.9;
            font-size: 1.1rem;
             font-family: 'Nunito', sans-serif;
        }

        .ridge-box {
            background: linear-gradient(115deg, #f1f5fb, #ffffff);
            border-radius: 42px;
            padding: 30px 28px;
            border: 2px solid #b8d5f1;
            margin: 35px 0;
        }

        .ridge-box h2 {
            font-size: 2.2rem;
            font-weight: 650;
            color: #003153;
        }

        .ridge-box h2 i {
            color: #f3aa5a;
        }

        .code-block {
            background: #162b3c;
            color: #c7e2ff;
            padding: 16px 28px;
            border-radius: 60px;
            /* font-family: 'SF Mono', monospace; */
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
            margin: 25px 0 15px;
            border: 2px solid #ecc36b;
            box-shadow: 0 6px 0 #0e1d29;
        }

        
        .footer-message {
            text-align: center;
            font-size: 1.2rem;
            padding: 30px 0 15px;
            color: #3d5269;
            border-top: 2px dashed #bed6f0;
            margin-top: 30px;
        }

        .footer-message i {
            color: #c95b5b;
        }

        /* unique design touches */
        .wavy-line {
            width: 100%;
            height: 12px;
            background: repeating-linear-gradient(45deg, #d8e6ff, #d8e6ff 10px, transparent 10px, transparent 20px);
        }

        /* mobile fine-tuning */
        @media (max-width: 500px) {
            .hero-glow { padding: 18px 16px 30px; }
            .content-panel { padding: 22px 16px; }
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 1.7rem; }
            .badge-mastery span { font-size: 1.4rem; }
            .ridge-box h2 { font-size: 1.9rem; }
            .code-block { font-size: 1.2rem; padding: 12px 18px; }
            .btn { padding: 8px 24px; font-size: 1.1rem; width: 100%; justify-content: center; }
            .grid-3 { gap: 14px; }
        }

        /* extra micro-interaction */
        .hover-lift:hover {
            transform: translateY(-5px);
        }




            .containerx {
      max-width: 1280px;
      margin: 0 auto;
      background: white;
      border-radius: 2.5rem 2.5rem 2rem 2rem;
      box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.25);
      overflow: hidden;
    }

    /* header hero */
    .scholar-header {
      background: linear-gradient(135deg, #0b2b3b 0%, #123d4f 100%);
      padding: 2.8rem 2.5rem 2.5rem 2.5rem;
      color: white;
      position: relative;
      z-index: 1;
      font-family: 'Nunito', sans-serif;
    }
    .scholar-header::after {
      content: "✦";
      font-size: 15rem;
      opacity: 0.05;
      position: absolute;
      bottom: -2rem;
      right: 2rem;
      font-weight: 300;
      pointer-events: none;
      transform: rotate(12deg);
      color: #b0e0ff;
    }

    .logo-tag {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
    }
    .logo-icon {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(4px);
      padding: 0.5rem 1.1rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: 1px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .logo-icon i {
      margin-right: 8px;
      color: #ffd966;
    }
    .badge {
      background: #ea981f;
      color: #0b2b3b;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .badge i {
      font-size: 0.9rem;
    }

    /* h1 {
      font-size: 3.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      max-width: 700px;
    } */
    .highlight {
      color: #fba01c;
      border-bottom: 2px dashed #ffe48480;
    }
    .subhead {
      font-size: 1.3rem;
      opacity: 0.85;
      margin-top: 1rem;
      max-width: 620px;
      font-weight: 350;
    }
    .vision-strip {
      background: #eef4ff;
      padding: 1.3rem 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      border-bottom: 1px solid #dbe5f0;
    }
    .vision-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-weight: 500;
      color: #103c4a;
      font-family: 'Nunito', sans-serif;
    }
    .vision-item i {
      background: white;
      border-radius: 50%;
      padding: 0.5rem;
      color: #0b2b3b;
      box-shadow: 0 4px 8px #00000010;
      font-size: 1rem;
      width: 2.2rem;
      height: 2.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* main content */
    .main-grid {
      padding: 2.5rem 2.5rem 2rem 2.5rem;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
    }

    /* cards */
    .section-titlexx {
      font-size: 1.8rem;
      font-weight: 650;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      border-left: 6px solid #fedb5f;
      padding-left: 1.2rem;
      font-family: 'Nunito', sans-serif;
    }
    .section-titlexx i {
      color: #1d5b74;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.4rem;
      margin-bottom: 2.5rem;
    }

    .cardxx {
      background: #f9fcff;
      border-radius: 1.8rem;
      padding: 1.8rem 1.4rem;
      box-shadow: 0 4px 12px rgba(0,30,40,0.04);
      transition: all 0.15s ease;
      border: 1px solid #e7edf5;
    }
    .cardxx:hover {
      transform: translateY(-4px);
      border-color: #ffd966c0;
      box-shadow: 0 18px 30px -10px #0b2b3b20;
    }

    .cardxx h3 {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
    }
    .cardxx h3 i {
      color: #0b2b3b;
      background: #faa522;
      border-radius: 50%;
      padding: 0.6rem;
      font-size: 1.2rem;
      width: 2.6rem;
      height: 2.6rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cardxx ul, .elig-list {
      list-style: none;
      font-family: 'Nunito', sans-serif;
    }
    .cardxx li, .elig-list li {
      margin-bottom: 0.9rem;
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      font-family: 'Nunito', sans-serif;
    }
    .cardxx li i, .elig-list i {
      color: #1f7a8c;
      font-size: 1.2rem;
      min-width: 1.6rem;
      margin-top: 0.1rem;
    }

    .badge-percent {
      background: #103c4a;
      color: #FFE484;
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      display: inline-block;
      margin-top: 1rem;
      font-family: 'Nunito', sans-serif;
    }

    /* process steps */
    .process-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1.8rem 0;
    }
    .stepxx {
      flex: 1 1 180px;
      background: white;
      border-radius: 1.8rem;
      padding: 1.4rem 1rem;
      border: 1px solid #dbe9f2;
      background: #ffffff;
    }
    .stepxx .step-num {
      background: #fedb5f;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #103c4a;
    }
    .stepxx h4 {
      font-size: 1.25rem;
      margin-bottom: 0.4rem;
    }
    .stepxx p {
      color: #3d5567;
      font-size: 0.95rem;
    }

    /* right panel */
    .info-panel {
      background: #eaf1fa;
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      border: 1px solid #cbddee;
    }

    .doc-list {
      background: white;
      border-radius: 1.6rem;
      padding: 1.8rem;
      margin-bottom: 2rem;
    }
    .doc-list h4 {
      font-size: 1.5rem;
      margin-bottom: 1.4rem;
      display: flex;
      gap: 0.6rem;
      align-items: center;
    }
    .doc-list ul {
      list-style: none;
    }
    .doc-list li {
      padding: 0.5rem 0;
      border-bottom: 1px dashed #bacfdf;
      display: flex;
      gap: 0.8rem;
      align-items: center;
      font-family: 'Nunito', sans-serif;
    }
    .doc-list i {
      color: #1f7a8c;
      width: 1.8rem;
    }

    .alert-box {
      background: #103c4a;
      color: white;
      border-radius: 1.5rem;
      padding: 1.8rem;
      margin: 1.8rem 0;
    }
    .alert-box i {
      color: #fedb5f;
      margin-right: 0.5rem;
    }
    .alert-box .limited {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .message-student {
      background: white;
      padding: 1.8rem;
      border-radius: 1.5rem;
      margin-top: 1.8rem;
      border-left: 8px solid #fedb5f;
      font-size: 1.2rem;
      font-weight: 450;
      box-shadow: 0 8px 16px -8px #00000010;
    }
    .message-student i {
      color: #1f7a8c;
      margin-right: 0.3rem;
    }
    .message-student span {
      font-size: 1.5rem;
      display: block;
      margin-top: 0.7rem;
      font-weight: 600;
      color: #0b2b3b;
    }

    /* cta buttons */
    .cta-sectionn {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin: 2.8rem 0 1rem 0;
    }
    .btn1 {
      padding: 1rem 2.2rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.2rem;
      border: none;
      background: white;
      cursor: pointer;
      transition: 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      box-shadow: 0 8px 18px -10px #00000030;
      text-decoration: none;
      color: inherit;
    }
    .btn-primary {
      background: #fba01c;
      color: #0b2b3b;
    }
    .btn-primary i {
      color: #0b2b3b;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #ffffffc0;
      color: white;
    }
    .btn-outline:hover {
      background: #ffffff20;
    }
    .btn-primary:hover {
      background: #ffd94a;
      transform: scale(1.02);
    }

    .footer-note {
      background: #eaf1fa;
      padding: 1.5rem 2.5rem;
      font-size: 1rem;
      text-align: center;
      border-top: 1px solid #cbdeed;
      color: #2e4f60;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }

    /* responsive */
    @media (max-width: 900px) {
      .main-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
      }
      h1 {
        font-size: 2.8rem;
      }
    }
    @media (max-width: 550px) {
      .scholar-header {
        padding: 1.8rem 1.2rem;
      }
      .vision-strip {
        padding: 1rem 1.2rem;
        gap: 1rem;
      }
      .main-grid {
        padding: 1.5rem;
      }
    }



    .sv-adm-section{
    padding:60px 20px;
    /* background:#f4f7fb; */
    display:flex;
    justify-content:center;
}

/* ===== FORM CONTAINER ===== */
.sv-adm-container{
    background:#ffffff;
    width:100%;
    max-width:500px;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.sv-adm-title{
    text-align:center;
    margin-bottom:25px;
    font-size:26px;
    color:#0d2c54;
}

/* ===== INPUTS ===== */
.sv-adm-input,
.sv-adm-select,
.sv-adm-textarea{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:15px;
    outline:none;
}

.sv-adm-input:focus,
.sv-adm-select:focus,
.sv-adm-textarea:focus{
    border-color:#0f5c63;
}

/* ===== BUTTON ===== */
.sv-adm-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#0f5c63;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.sv-adm-btn:hover{
    background:#0a444a;
}

@media(max-width:480px){
    .sv-adm-container{
        padding:25px;
    }
}
        .faculty-wrapper {
            max-width: 1200px;
            width: 100%;
            background: #ffffff;
            border-radius: 3rem 3rem 2rem 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            padding: 2.5rem 2rem;
            margin: 0 auto; 
        }

        /* headings & typography */
        .section-tag {
            display: inline-block;
            background: #eef5ff;
            color: #1d4ed8;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            margin-bottom: 1rem;
            border: 1px solid #d9e6ff;
        }

        /* h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0a2540;
            margin-bottom: 1rem;
        }

        h1 span {
            color: #1e3a8a;
            border-bottom: 4px solid #b1cdff;
            display: inline-block;
            padding-bottom: 4px;
        } */

        .subheadd {
            font-size: 1.2rem;
            color: #2d3c5e;
            max-width: 1100px;
            margin-bottom: 2.5rem;
            line-height: 1.5;
                font-family: Nunito, sans-serif;
        }

        /* bullet grid (why stand out / beyond teaching) */
        .strength-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            /* background: #f9fcff; */
            border-radius: 2rem;
            padding: 1.8rem 1.5rem;
            margin-bottom: 2.8rem;
            /* border: 1px solid #e5efff; */
        }

               .strength-gridd {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            /* background: #f9fcff; */
            border-radius: 2rem;
            padding: 1.8rem 1.5rem;
            margin-bottom: 2.8rem;
            margin-top:-50px;
            /* border: 1px solid #e5efff; */
        }
        .strength-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
            color: #122b44;
            background: white;
            padding: 0.8rem 1.2rem;
            border-radius: 60px;
            box-shadow: 0 2px 6px rgba(0, 55, 120, 0.05);
            font-size: 0.95rem;
                font-family: Nunito, sans-serif;
        }

        .strength-item i {
            color:#170e44;
            font-size: 1.2rem;
            width: 1.8rem;
            text-align: center;
        }

        /* faculty cards leadership */
        .leadership-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f2b4f;
            margin: 2.2rem 0 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .leadership-title i {
            background: #1e3a8a;
            color: white;
            border-radius: 50%;
            padding: 0.7rem;
            font-size: 1.4rem;
        }

        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .faculty-card {
            background: white;
            border-radius: 2rem;
            padding: 2rem 1.5rem 1.8rem 1.5rem;
            box-shadow: 0 12px 30px rgba(0, 20, 60, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #ddeeff;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .faculty-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 40px rgba(27, 58, 112, 0.12);
            border-color: #aac8ff;
        }

        /* online image (UI faces) – using ui-avatars as online image API (diverse, safe) */
        .faculty-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 8px 16px rgba(0, 45, 80, 0.15);
            margin-bottom: 1rem;
            background: #eaf1fd;
        }

        .faculty-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0b2b4a;
            margin-bottom: 0.25rem;
        }

        .faculty-subject {
            font-weight: 600;
            color: #1e4fd0;
            background: #ecf3ff;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            display: inline-block;
            margin: 0.5rem 0 0.4rem 0;
            font-size: 14px;
        }

        .faculty-qual {
            font-size: 1rem;
            color: #3c4a62;
            margin-bottom: 0.3rem;
        }

        .faculty-exp {
            font-size: 0.9rem;
            background: #f2f6fc;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            color: #2d4670;
            font-weight: 500;
            margin: 0.7rem 0 0.8rem 0;
        }

        .faculty-desc {
            font-size: 0.95rem;
            color: #3d506e;
            margin: 0.5rem 0 1rem 0;
            line-height: 1.4;
            padding: 0 0.2rem;
        }

        .view-profile {
            background: none;
            border: 1.5px solid #1e4fd0;
            color: #1e4fd0;
            font-weight: 600;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-size: 0.9rem;
            cursor: default;
            transition: 0.15s;
            display: inline-block;
            margin-top: 0.5rem;
            text-decoration: none;
        }

        .view-profile i {
            font-size: 0.8rem;
            margin-left: 0.3rem;
        }

        .view-profile:hover {
            background: #e1edff;
        }

        /* teaching methodology highlight */
        .methodology {
            background: linear-gradient(145deg, #152c4e, #11223b);
            color: white;
            border-radius: 2.5rem;
            padding: 2.5rem 2.5rem;
            margin: 3rem 0 2rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .methodology-left h4 {
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .methodology-left p {
            color: #b8d2ff;
            font-size: 1rem;
            /* max-width: 400px; */
        }

        .method-steps {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            font-weight: 600;
        }

        .method-steps span {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-size: 1.1rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .mastery-note {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 1.5rem 0 0.5rem 0;
            color: #dfeaff;
            font-size: 0.95rem;
        }

        .mastery-note div i {
            color: #ffcd7a;
            margin-right: 0.5rem;
        }

        /* double column for faculty strengths & beyond teaching */
        .two-col-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0 2rem;
        }
        .col-box {
            flex: 1 1 280px;
            background: #f9fdff;
            border-radius: 2rem;
            padding: 2rem 1.8rem;
            border: 1px solid #dbebff;
        }
        .col-box h3 {
            font-size: 1.5rem;
            color: #0a284a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .col-list {
            list-style: none;
        }
        .col-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            color: #1f3757;
                font-family: Nunito, sans-serif;
        }
        .col-list li i {
            color: #2266cc;
            width: 1.7rem;
            font-size: 1.2rem;
        }

        /* CTA buttons */
        .cta-section {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 3.5rem 0 1rem;
            justify-content: center;
        }
        .cta-btn {
            background: #0d2849;
            color: white;
            font-weight: 600;
            padding: 1.1rem 3rem;
            border-radius: 60px;
            font-size: 1.2rem;
            border: none;
            box-shadow: 0 8px 16px rgba(0, 40, 80, 0.2);
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            cursor: default;
            text-decoration: none;
        }
        .cta-btn-light {
            background: white;
            color: #0d2849;
            border: 2px solid #0d2849;
            box-shadow: none;
        }
        .cta-btn-light i {
            color: #0d2849;
        }
        .cta-btn:hover {
            background: #133456;
            transform: scale(1.02);
        }
        .cta-btn-light:hover {
            background: #ecf3ff;
        }

        /* footer / integrity */
        .integrity-strip {
            margin-top: 3rem;
            background: #e7f0fe;
            border-radius: 3rem;
            padding: 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            font-weight: 500;
            color: #1f3c6b;
        }
        .integrity-strip i {
            color: #cb3b3b;
            margin-right: 0.4rem;
        }

        /* mobile fine-tune */
        @media (max-width: 600px) {
            .faculty-wrapper {
                padding: 1.8rem 1rem;
                border-radius: 2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            .strength-item {
                font-size: 0.85rem;
                padding: 0.6rem 0.8rem;
            }
            .methodology {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .faculty-card {
                padding: 1.5rem 0.8rem;
            }
            .view-profile {
                padding: 0.5rem 1.2rem;
            }
        }

        /* online images (via random avatar api) – using placeholder images but real-looking */
        .avatar-img {
            background: #cadfff;
        }
 
 

.main-container{
  max-width:1400px;
  margin:auto;
    background:#f2f5fb;
  padding:2rem 1.5rem;
      margin-top: -95px;
          margin-bottom: -47px;
}

/* HEADER */
.inquiry-header{
  margin-bottom:2.5rem;
}

.inquiry-header h1{
  font-size:2.5rem;
  font-weight:700;
  background:linear-gradient(145deg,#0b2f5c,#1b4a8b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.inquiry-header .sub{
  font-size:1.1rem;
  margin-top:.5rem;
  /* border-left:5px solid #3b82f6; */
  padding-left:1rem;
  /* background:#eaf2ff; */
  border-radius:0 8px 8px 0;
}

/* GRID */
.grid-2{
  display:grid;
  grid-template-columns:1.1fr 2fr;
  gap:2rem;
}

/* CARDS */
.card{
  background:#fff;
  padding:1.8rem;
  border-radius:28px;
  box-shadow:0 18px 35px -12px rgba(0,20,50,.15);
  margin-bottom:1.8rem;
}

.badge-why{
  background:#e6f0ff;
  padding:.4rem 1rem;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  margin-bottom:1rem;
  color:#1e4f8a;
}

.feature-list{
  list-style:none;
}
.feature-list li{
  display:flex;
  align-items:center;
  gap:.7rem;
  margin-bottom:1rem;
}

.feature-list i{
  background:#e8f0fe;
  padding:6px;
  border-radius:8px;
  color:#1e4f8a;
}

/* STEP */
.step-item{
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:.8rem;
}
.step-num{
  width:34px;
  height:34px;
  background:#1e4f8a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

/* SUPPORT */
.support-block{
  background:#0b2f5c;
  color:#fff;
  padding:1.8rem;
  border-radius:28px;
}

.contact-row a{
  display:flex;
  align-items:center;
  gap:.7rem;
  background:rgba(255,255,255,.15);
  padding:.7rem 1rem;
  border-radius:40px;
  text-decoration:none;
  color:#fff;
  margin-bottom:.7rem;
}

/* FORM */
.form-card{
  background:#fff;
  padding:2.3rem;
  border-radius:36px;
  box-shadow:0 25px 40px -15px rgba(0,30,70,.25);
}

.form-title{
  font-size:2rem;
  font-weight:650;
  margin-bottom:.5rem;
  color:#0b2f5c;
}

.form-sub{
  margin-bottom:1.5rem;
  border-bottom:1px solid #e2ecff;
  padding-bottom:1rem;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.2rem 1.8rem;
}

.full-width{
  grid-column:span 2;
}

.field{
  display:flex;
  flex-direction:column;
  gap:.4rem;
}

.field label{
  font-weight:600;
  font-size:.9rem;
}

.field input,
.field select,
.field textarea{
  padding:.9rem 1rem;
  border-radius:18px;
  border:1.5px solid #dbe7f5;
  background:#f8fcff;
  outline:none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:#3b82f6;
  background:#fff;
}

.field textarea{
  resize:vertical;
  min-height:90px;
}

.section-title{
  font-weight:700;
  color:#0f3a70;
  margin-top:1rem;
}

.btn-submit{
  margin-top:2rem;
  background:linear-gradient(115deg,#0b2f5c,#1f4e8c);
  color:#fff;
  border:none;
  padding:1rem;
  border-radius:50px;
  font-size:1.2rem;
  font-weight:600;
  width:100%;
  cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:1000px){
  .grid-2{
    grid-template-columns:1fr;
  }
}

@media(max-width:650px){

  

  .inquiry-header{
    text-align:center;
  }

  .inquiry-header h1{
    font-size:1.8rem;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .full-width{
    grid-column:span 1;
  }

  .card,
  .form-card,
  .support-block{
    padding:1.3rem;
    border-radius:22px;
  }

}



.custom-gallery-section {
    padding: 60px 20px;
    background: #f8fbff;
    margin-top: -100px;
    margin-bottom: -50px;
}

.custom-gallery-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.custom-gallery-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a2b4c;
}

.custom-gallery-title i {
    margin-right: 10px;
    color: #0d6efd;
}

.custom-gallery-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Grid */
.custom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.custom-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.custom-gallery-item:hover img {
    transform: scale(1.08);
}

/* Tablet */
@media (max-width: 992px) {
    .custom-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .custom-gallery-grid {
        grid-template-columns: 1fr;
    }

    .custom-gallery-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .footer-copy-text {
        font-size: 14px;
    }
}

.custom-float-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.custom-float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* Call */
.call-btn {
    background: #007bff;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

.custom-float-btn:hover {
    transform: scale(1.1);
    color:white;
}

/* Mobile size adjust */
@media (max-width: 600px) {
    .custom-float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
