/* ========================= */
/* RESET */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========================= */
/* GLOBAL */
/* ========================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ========================= */
/* HEADER */
/* ========================= */

.header {
    width: 100%;
    padding: 15px 5%;
    background-color: #000000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: #b7ff00;
}


/* =========================================
   HERO SECTION
========================================= */

.hero {
    display: flex;

    min-height: 92vh;

   background: #1a1a1a;
    overflow: hidden;
}

/* =========================================
   LEFT CONTENT
========================================= */

.hero-left {
    width: 45%;

   background: #1a1a1a;

    display: flex;
    align-items: center;

    padding: 70px 60px;
}

.hero-content {
    max-width: 520px;
    line-height: 1.8;
    color: #e5e5e5;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;

    font-weight: 800;
    color: #fff;

    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
}

.hero-tagline {
    color: #b6ff00 !important;

    font-size: .85rem;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    line-height: 1.8;

    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
}

.hero-content p {
    color: rgba(255,255,255,0.85);

    font-size: .85rem;
    line-height: 1.8;

    margin-bottom: 20px;

    max-width: 500px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 24px;

    border-radius: 10px;

    font-size: .9rem;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;

    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: #b6ff00;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;

    transform: translateY(-3px);
}
/*-- Divider*/
.hero-left {
    border-right: 1px solid rgba(255,255,255,0.06);
}
/* =========================================
   RIGHT SLIDESHOW
========================================= */

.hero-right {
    width: 55%;

    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
    
    opacity: 0;

    transform: scale(1);

    transition: 
        opacity 1s ease-in-out
        transform 6s ease-in-out;

     z-index: 1;
}

.hero-slide.active {
    opacity: 1;
     z-index: 2;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {

    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-right {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================= */
/* ABOUT PREVIEW */
/* ========================= */

.about-preview {
    background-color: #f2f2f2;
     padding-top: 70px;
     padding-bottom: 40px;
}

.about-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 680px;
}
.section-accent {
    width: 90px;
    height: 5px;

    background: #b6ff00;

    border-radius: 20px;

    margin: 18px 0 28px 0;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.about-text p {
     color: #333;
     margin-bottom: 20px;
    font-size: .9rem;
    line-height: 1.8;
    max-width: 90%;
}
.about-section {
    background: #f7f7f5;
}
.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 42   0px;
    
}

.about-image img {
    height: 420px;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}
.about-image img:hover {
    transform: scale(1.02);
}
.about-highlights {
       gap: 2px;
}
.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* ========================= */
/* SOLUTIONS SECTION */
/* ========================= */


.solutions-section {
    background-color: #ffffff;
    padding-top: 70px;
    padding-bottom: 40px;
    
    
}
.section-title h2{
    font-size: 2rem;
       font-family: 'Montserrat', sans-serif;
}

.solutions-section p {
         font-size: .9rem;
         max-width: 1100px;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 20px;
    align-items: stretch;
}

.solutions-card {
     background: linear-gradient(
        180deg,
        #111111 0%,
        #171717 100%);
    background-color: #151515;
    color: #ffffff;
    text-align: left;
    padding: 10px;
    border: 1px solid #222;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: 0.3s ease;
}

.card-content {
    flex-grow: 1;
}
.solutions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  
}

.solutions-card h3 {
    font-size: 1rem;
     line-height: 1.3;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.solutions-card p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0px;
    color: #dddddd;
}

.solution-card-list {
    color: #dddddd;
    font-size: 0.7rem;
    padding-left: 18px;
    line-height: 1.3;
}


.solutions-card p1 {
    font-size: 0.7rem;
    line-height: 1.8;
    margin-bottom: 0px;
    color: #dddddd;
}

.program-btn {
    display: block;
    width: fit-content;
    text-decoration: none;

    padding: 14px 24px;

    background-color: #b7ff00;
    color: #000000;

    border-radius: 6px;

    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 6px;
    transition: 0.3s ease;
    
    min-width: 210px;

}

.program-btn:hover {
    background-color: #d6ff63;
    transform: translateY(-2px);
}

/* =========================
   LAKSH MODEL SECTION
========================= */

.laksh-model-section {

    background-color: #f2f2f2;
     padding-top: 70px;
     padding-bottom: 40px;
}


/* HEADER */

.model-header h2 {

    font-size: 1.8rem;

    margin-bottom: 10px;

    font-family: 'Montserrat', sans-serif;

    color: #000;
}

.model-subtitle {

    font-size: .9rem;

    color: #555555;

    max-width: 760px;

    line-height: 1.3;

    margin-top: 20px;
    margin-bottom: 10px;
}


/* MAIN CONTENT */

.model-content {

    display: flex;

    gap: 30px;

    align-items: flex-start;

    margin-top: 20px;
}


/* LEFT */

.model-left {

    flex: 1;
}

.model-intro {

    font-size: .9rem;

    line-height: 2;

    color: #333333;

    margin-bottom: 15px;

    max-width: 580px;
}


/* GRID */

.model-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}


/* ITEM */

.model-item {

    padding: 14px;

    border-top: 1px solid #dddddd;

    transition: 0.3s ease;
}

.model-item:hover {

    transform: translateX(6px);
}

.model-item h3 {

    font-size: .9rem;

    margin-bottom: 10px;

    font-family: 'Montserrat', sans-serif;

    color: #000;
}

.model-item p {

    font-size: 0.8rem;

    line-height: 1.5;

    color: #555555;
}


/* RIGHT IMAGE */

.model-right {

    width: 34%;
}

.model-right img {

    width: 100%;
    height: 100%;
    min-height: 320px;

    border-radius: 18px;

    object-fit: cover;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}


/* RESPONSIVE */

@media(max-width: 992px) {

    .model-content {

        flex-direction: column;
    }

    .model-right {

        width: 100%;
    }

    .model-grid {

        grid-template-columns: 1fr;
    }

    .model-header h2 {

        font-size: 1rem;
    }
}

/* ========================= */
/* COMPETITIVE PATHWAY */
/* ========================= */

.pathway-section {
    background-color: #0a0a0a;
    color: #ffffff;

    padding: 50px 0;
}

.pathway-title {
    text-align: center;
    margin-bottom: 40px;
}

.pathway-title h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;

    font-family: 'Montserrat', sans-serif;
}

.pathway-title p {
    max-width: 750px;
    margin: auto;

    color: #cccccc;

    line-height: 1.7;
}


/* FLOW */

.pathway-flow {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}


/* CARDS */

.pathway-card {
    background-color: #151515;

    border: 1px solid #222222;
    border-top: 3px solid #b7ff00;

    border-radius: 18px;

    padding: 25px 24px;

    width: 180px;
    min-height: 280px;

    display: flex;
    flex-direction: column;
    
    transition: 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-6px);

    border-color: #b7ff00;
}


.pathway-card h3 {
    font-size: 0.9rem;
    line-height: 1.5;

    min-height: 70px;
    margin-bottom: 10px;

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;
}

.pathway-line {
    width: 100%;
    height: 1px;

    background-color: #b7ff00;

    margin-bottom: 22px;
}

.pathway-card p {
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 90px;
    color: #dddddd;
    
    margin: 0;
}


/* ARROWS */

.pathway-arrow {
    font-size: 1rem;

    color: #b7ff00;

    font-weight: bold;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .pathway-flow {
        flex-direction: column;
    }

    .pathway-arrow {
        transform: rotate(90deg);
    }

    .pathway-card {
        width: 100%;
        max-width: 500px;
        min-height: auto;
    }
}

/* ========================= */
/* CONSULTING & OUTREACH SECTION*/
/* ========================= */

.consulting-section {
    background: #f5f5f5;
    padding: 70px 8%;
}

.consulting-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.consulting-section h2 {
    font-size: 2rem;
  
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

.consulting-section .section-header p {
    max-width: 850px;
    margin: 0 auto;
    font-size: .9rem;
    line-height: 1.5;
    color: #444;
}

/* GRID */

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */

.consulting-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #b7ff00;
    min-height: 160px;
}

.consulting-card:hover {
    transform: translateY(-6px);
    border-color: #b7ff00;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */

.consulting-icon {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* TITLE */

.consulting-card h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

/* PARAGRAPH */

.consulting-card p {
    line-height: 1.8;
    color: #444;
    font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .consulting-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .consulting-section {
        padding: 80px 6%;
    }

    .consulting-section h2 {
        font-size: 2.4rem;
    }

    .consulting-section .section-header p {
        font-size: 1rem;
    }

    .consulting-card {
        padding: 32px;
    }

}

/* ========================= */
/* WHY LAKSH */
/* ========================= */

.why-laksh-section {

    background-color: #ffffff;

    padding: 70px;
    
    }
.why-laksh-section h2{

    font-size: 1.8rem;
    
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

.why-laksh-section p{

    font-size: .9rem;
    
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

.why-laksh-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 24px;

    margin-top: 50px;
}

.why-card {

    background-color: #111111;

    color: #ffffff;

    padding: 30px 20px;

    border-radius: 18px;

    transition: 0.3s ease;
}

.why-card:hover {

    transform: translateY(-6px);
}

.why-icon {

    font-size: 2rem;

    margin-bottom: 18px;
}

.why-card h3 {

    font-size: 1rem;

    margin-bottom: 18px;

    font-family: 'Montserrat', sans-serif;
}

.why-card p {

    font-size: .9rem;

    line-height: 1.3;

    color: #dddddd;
}

/* =========================
   GALLERY SECTION
========================= */

    .gallery-section {

        background: #f5f5f5;

        padding-top: 70px;
    }
    .gallery-section h2 {

        font-size: 1.8rem;

        margin-bottom: 10px;

        font-family: 'Montserrat', sans-serif;
    }

    .gallery-section p {

        font-size: .9rem;
        line-height: 1.3;

        color: #0f0f0f;
    }
    .gallery-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

        gap: 20px;

        margin-top: 10px;
    }


    .gallery-item {

        overflow: hidden;

        border-radius: 20px;

        position: relative;

        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .gallery-item img {

        width: 100%;

        height: 160px;

        object-fit: cover;

        display: block;

        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {

        transform: scale(1.06);
    }

/* ========================= */
/* FINAL CTA */
/* ========================= */


.final-cta-section {

    background-color: #ffffff;

    padding-top: 80px;
    padding-bottom: 10px;
    text-align: center;
}

.final-cta-section h2 {

    font-size: 1.8rem;

    color: #000000;

    margin-bottom: 10px;

    font-family: 'Montserrat', sans-serif;

    line-height: 1.2;
}

.final-cta-section p {

    max-width: 760px;

    margin: 0 auto 10px;

    font-size: .9rem;

    line-height: 1.3;

    color: #0f0f0f;
}


/* FINAL CTA */
.contact-section {

    background: #f5f5f5;

    padding-top: 10px;
    padding-bottom: 20px;
}

.contact-section h2 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 10px;
}

.contact-subtitle {

    max-width: 850px;

    font-size: .9rem;

    line-height: 1.3;

    color: #444444;

    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;
}

.contact-card {

    background: #000000;

    color: #ffffff;

    padding: 20px 10px;

    border-radius: 18px;

    transition: 0.3s ease;
}

.contact-card:hover {

    transform: translateY(-6px);
}

.contact-card h3 {

    font-size: 1rem;

    margin-bottom: 20px;
}

.contact-card p {

    font-size: 0.9rem;

    line-height: 1.6;

    color: #dddddd;
}
.location-list {
    margin-top: 15px;
    font-size: 0.8rem;
    padding-left: 18px;
    line-height: 1.3;
}
.social-icons {

    display: flex;

    gap: 22px;

    margin-top: 25px;
}

.social-icons a {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #1a1a1a;

    color: #b7ff00;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;

    text-decoration: none;

    transition: 0.3s ease;
}

.social-icons a:hover {

    background: #b7ff00;

    color: #000000;

    transform: translateY(-4px);
}

.contact-btn {

    display: inline-block;

    margin-top: 25px;

    padding: 12px 24px;

    background: #b7ff00;

    color: #000000;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s ease;
}

.contact-btn:hover {

    background: #d8ff63;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background-color: #111111;
    color: #cccccc;
    text-align: center;
    padding: 20px 10px;
}

.footer h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 10px;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .header {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}