/* ===============================
   ROUTELK WEBSITE STYLE
   =============================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}


html {
    scroll-behavior: smooth;
}


/* RouteLK theme styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --bg: #07111f;
    --panel: rgba(255, 255, 255, .06);
    --panel-strong: rgba(255, 255, 255, .12);
    --text: #f8fafc;
    --muted: #9caac0;
    --blue: #1f6feb;
    --blue-deep: #0f4fb8;
    --gold: #f8c63d;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    filter: blur(180px);
    opacity: .15;
    z-index: -1;
}

body::before {
    background: var(--blue);
    top: -150px;
    left: -150px;
}

body::after {
    background: var(--gold);
    bottom: -150px;
    right: -150px;
}

header {
    position: relative;
    width: 100%;
    z-index: 10;
}

.navbar {
    width: 90%;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 35px;
    background: var(--panel);
    backdrop-filter: blur(20px);
    border: 1px solid var(--panel-strong);
    border-radius: 30px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo i,
.logo span,
.nav-links a:hover,
.tag,
.card i,
.arrow,
.footer h2,
.social i:hover {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #d8e2f0;
    transition: .3s;
}

.nav-btn,
.primary {
    background: linear-gradient(135deg, var(--gold), #ffe08a);
    color: #102033;
    border: none;
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - 120px);
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 8% 60px;
    gap: 90px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        linear-gradient(90deg, rgba(7, 17, 31, .96) 0%, rgba(7, 17, 31, .82) 38%, rgba(7, 17, 31, .18) 100%),
        url("../assets/icons/hero-image.png");
    background-repeat: no-repeat;
    background-position: center, center right;
    background-size: cover, clamp(500px, 50vw, 760px) auto;
    pointer-events: none;
    z-index: -1;
}

.hero-content,
.dashboard {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    text-align: left;
    padding-top: 35px;
}

.tag {
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--gold), #ffe08a);
    -webkit-background-clip: text;
    color: transparent;
}

.description,
.subtitle,
.card p,
.route,
footer p {
    color: var(--muted);
}

.description {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.primary,
.secondary {
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: #fff;
}

.dashboard {
    width: 360px;
    max-width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 0 50px rgba(248, 198, 61, .18), 0 0 90px rgba(31, 111, 235, .14);
}

.dash-header,
.stats,
.social {
    display: flex;
}

.dash-header {
    justify-content: space-between;
}

.online {
    color: #22c55e;
}

.location,
.traffic,
.architecture div,
.hardware div,
.card,
footer {
    background: #0d1830;
}

.location,
.traffic {
    margin-top: 25px;
    padding: 15px;
    border-radius: 15px;
}

.stats {
    justify-content: space-between;
}

.stats div,
.card,
footer {
    text-align: center;
}

.stats h2 {
    color: var(--gold);
}

.traffic span {
    float: right;
    color: var(--gold);
}

.section {
    padding: 100px 8%;
}

.title {
    text-align: center;
    font-size: 45px;
}

.subtitle {
    text-align: center;
    margin: 20px;
}

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

.card {
    padding: 35px;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: .3s;
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(248, 198, 61, .26);
}

.card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 25px;
}


.architecture {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.architecture div {
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
}

.arrow {
    font-size: 40px;
}

.hardware {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hardware div {
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.hardware div:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}

footer {
    padding: 70px;
}

footer h2 {
    font-size: 45px;
}

footer p {
    margin: 10px;
}

.social {
    margin-top: 25px;
    font-size: 30px;
    justify-content: center;
    gap: 25px;
}

.social a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.social i {
    cursor: pointer
}

@media(max-width:900px) {
    .navbar {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(7, 17, 31, 0.96);
        backdrop-filter: blur(25px);
        border: 1px solid var(--panel-strong);
        border-radius: 20px;
        flex-direction: column;
        gap: 15px;
        padding: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        z-index: 99;
        text-align: center;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        min-height: auto;
        padding: 30px 8% 60px
    }

    .hero h1 {
        font-size: 45px
    }

    .hero::before {
        background-position: center, center 112%;
        background-size: cover, clamp(440px, 92vw, 680px) auto;
        opacity: .95
    }

    .cards {
        grid-template-columns: 1fr
    }

    .architecture {
        flex-direction: column
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap
    }
}


.architecture {

    flex-direction: column;

}

/* =====================================
   ROUTELK NEW SECTIONS STYLE
===================================== */


/* ===============================
   SOLUTION SECTION
================================ */

#solution .card i {

    color: var(--gold);

}


#solution .card:hover {

    transform: translateY(-12px) scale(1.02);

}





/* ===============================
   ARCHITECTURE IMPROVEMENTS
================================ */


.architecture {

    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;

}


.architecture div {

    width: 240px;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: .4s;

}



.architecture div:hover {

    transform: translateY(-10px);

    border-color: var(--gold);

    box-shadow:
        0 0 30px rgba(248, 198, 61, .25);

}



.architecture i {

    font-size: 45px;

    color: var(--gold);

    margin-bottom: 20px;

}




/* ===============================
   DATA FLOW SECTION
================================ */





/* ===============================
   HARDWARE SECTION
================================ */



.hardware div {


    width: 220px;

    text-align: center;


    font-size: 18px;


}



.hardware i {


    font-size: 40px;


    color: var(--gold);


    margin-bottom: 15px;


}






/* ===============================
   TECHNOLOGY STACK
================================ */


#technology .card {


    min-height: 220px;


}



#technology .card i {


    color: var(--gold);


}





/* ===============================
   TESTING SECTION
================================ */



.test-container {


    margin-top: 60px;


    display: grid;


    grid-template-columns:
        repeat(3, 1fr);


    gap: 30px;


}




.test-card {


    background: #0d1830;


    padding: 35px;


    border-radius: 25px;


    text-align: center;


    border: 1px solid rgba(255, 255, 255, .08);


}



.test-card h3 {


    margin-bottom: 25px;


}




.progress {


    height: 15px;


    background: #16243d;


    border-radius: 20px;


    overflow: hidden;


}




.progress span {


    display: block;


    height: 100%;


    background:

        linear-gradient(90deg,
            var(--blue),
            var(--gold));


    border-radius: 20px;


}




.test-card p {


    margin-top: 15px;


    color: var(--gold);


    font-size: 25px;


    font-weight: 700;


}






.table-responsive {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.budget-table {


    width: 100%;


    margin: 50px auto;


    border-collapse: collapse;


    background: #0d1830;


    border-radius: 20px;


    overflow: hidden;


}




.budget-table th {


    background: var(--blue);


    padding: 20px;


    font-size: 20px;


}




.budget-table td {


    padding: 18px;


    text-align: center;


    border-bottom:
        1px solid rgba(255, 255, 255, .1);


    color: #d5dfef;


}



.budget-table tr:hover {


    background: rgba(248, 198, 61, .1);


}







/* ===============================
   TIMELINE
================================ */



.timeline {


    margin-top: 60px;


    display: flex;


    justify-content: center;


    align-items: center;


    gap: 20px;


    flex-wrap: wrap;


}



.timeline div {


    padding: 25px 35px;


    background: #0d1830;


    border-radius: 20px;


    border: 1px solid rgba(255, 255, 255, .1);


    position: relative;


    transition: .3s;


}



.timeline div:hover {


    transform: translateY(-10px);


    border-color: var(--gold);


}






/* ===============================
   TEAM SECTION
================================ */



#team .card {


    min-height: 230px;


}



#team .card i {


    width: 90px;


    height: 90px;


    display: flex;


    align-items: center;


    justify-content: center;


    margin: auto;


    border-radius: 50%;


    background:
        rgba(248, 198, 61, .15);


    color: var(--gold);


}







/* ===============================
   FOOTER IMPROVEMENT
================================ */



footer {


    border-top:

        1px solid rgba(255, 255, 255, .1);


}




footer .social i {


    transition: .3s;


}



footer .social i:hover {


    transform: scale(1.3);


}







/* ===============================
   EXTRA ANIMATIONS
================================ */



.architecture-card,
.architecture div,
.hardware div,
.test-card,
.timeline div {


    animation:
        fadeUp .8s ease forwards;


}



@keyframes fadeUp {


    from {

        opacity: 0;

        transform:
            translateY(40px);

    }


    to {

        opacity: 1;

        transform:
            translateY(0);

    }


}







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



@media(max-width:900px) {



    .architecture {


        flex-direction: column;


    }



    .test-container {


        grid-template-columns: 1fr;


    }



    .budget-table {


        width: 100%;


    }


    .timeline {


        flex-direction: column;


    }



    .hardware {


        flex-direction: column;


        align-items: center;


    }



}

.mouse-glow {

    position: fixed;

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background: #f8c63d;

    opacity: .08;

    filter: blur(50px);

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: -1;

}


.particle {

    position: absolute;

    width: 5px;

    height: 5px;

    background: #f8c63d;

    border-radius: 50%;

    opacity: .5;

    animation: particleMove 8s infinite alternate;

}



@keyframes particleMove {


    from {

        transform: translateY(0);

    }


    to {

        transform: translateY(-100px);

    }


}


/* =====================================
   ARCHITECTURE IMAGES & CARD LAYOUT
===================================== */
.architecture-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.architecture-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: zoom-in;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.architecture-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(31, 111, 235, 0.2);
}

.architecture-card h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
}

.architecture-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.architecture-card:hover img {
    transform: scale(1.01);
}

/* IMAGE LIGHTBOX MODAL */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 17, 31, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.image-modal-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.image-modal-caption {
    position: absolute;
    bottom: 30px;
    color: var(--muted);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

/* Responsiveness for Architecture Cards */
@media (max-width: 992px) {
    .architecture-images {
        gap: 30px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(7, 17, 31, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-strong);
    color: var(--gold);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--gold);
    color: #102033;
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(248, 198, 61, 0.3);
}



/* =====================================
   SOLUTION SECTION
===================================== */

.solution-intro {

    max-width: 1100px;

    margin: 50px auto;

    text-align: center;

    color: var(--muted);

    line-height: 1.9;

    font-size: 18px;

}

.solution-intro p {

    margin-bottom: 20px;

}





/* =====================================
   SOLUTION HIGHLIGHTS
===================================== */

.solution-highlights {

    margin: 70px auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;

}





.highlight {

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 25px;

    padding: 35px;

    text-align: center;

    transition: .35s;

}





.highlight:hover {

    transform: translateY(-12px);

    border-color: var(--gold);

    box-shadow:

        0 0 25px rgba(248, 198, 61, .18);

}





.highlight i {

    font-size: 42px;

    color: var(--gold);

    margin-bottom: 20px;

}





.highlight h4 {

    font-size: 22px;

    margin-bottom: 15px;

    color: white;

}





.highlight p {

    color: var(--muted);

    line-height: 1.7;

}







/* =====================================
   SOLUTION CARDS
===================================== */

#solution .cards {

    margin-top: 60px;

}





#solution .card {

    min-height: 350px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}





#solution .card i {

    font-size: 45px;

    color: var(--gold);

    margin-bottom: 20px;

}





#solution .card h3 {

    margin-bottom: 18px;

    color: white;

}





#solution .card p {

    color: var(--muted);

    line-height: 1.8;

}







/* =====================================
   SOLUTION ANIMATION
===================================== */

.highlight {

    opacity: 0;

    transform: translateY(40px);

    animation: fadeSolution .8s forwards;

}





.highlight:nth-child(1) {

    animation-delay: .1s;

}

.highlight:nth-child(2) {

    animation-delay: .2s;

}

.highlight:nth-child(3) {

    animation-delay: .3s;

}

.highlight:nth-child(4) {

    animation-delay: .4s;

}





@keyframes fadeSolution {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}







/* =====================================
   SOLUTION TITLE
===================================== */

#solution .title {

    margin-bottom: 20px;

}





#solution .subtitle {

    max-width: 900px;

    margin: auto;

    line-height: 1.8;

}







/* =====================================
   SECTION BACKGROUND
===================================== */

#solution {

    position: relative;

}





#solution::before {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: var(--gold);

    filter: blur(180px);

    opacity: .08;

    top: 120px;

    right: -150px;

    z-index: -1;

}





#solution::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: var(--blue);

    filter: blur(160px);

    opacity: .08;

    left: -120px;

    bottom: 0;

    z-index: -1;

}







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

@media(max-width:992px) {

    .solution-intro {

        font-size: 16px;

        text-align: justify;

    }

}



@media(max-width:768px) {

    .solution-highlights {

        grid-template-columns: 1fr;

    }

}



@media(max-width:600px) {

    #solution .card {

        min-height: auto;

    }

}

/* =====================================
   ROLE FEATURES SECTION
===================================== */
#role-features {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

.role-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.role-card {
    background: #0d1830;
    padding: 35px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Specific glows for different roles */
.passenger-role:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(248, 198, 61, 0.12);
}

.driver-role:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.12);
}

.operator-role:hover {
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.12);
}

.admin-role:hover {
    border-color: #ec4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.12);
}

.role-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

.role-header i {
    font-size: 36px;
    color: var(--gold);
}

/* Color variations for header icons */
.driver-role .role-header i {
    color: #3b82f6;
}

.operator-role .role-header i {
    color: #10b981;
}

.admin-role .role-header i {
    color: #ec4899;
}

.role-header h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.role-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px 30px;
    flex-grow: 1;
}

.role-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.4;
}

.role-feature-list li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.driver-role .role-feature-list li i {
    color: #3b82f6;
}

.operator-role .role-feature-list li i {
    color: #10b981;
}

.admin-role .role-feature-list li i {
    color: #ec4899;
}

/* Responsive */
@media (max-width: 768px) {
    .role-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px;
    }

    .role-header {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 15px;
    }

    .role-header i {
        font-size: 28px;
    }

    .role-feature-list {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* =====================================
   TECHNOLOGY STACK CATEGORIZED
===================================== */
.tech-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-category-card {
    background: #0d1830;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.tech-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(248, 198, 61, 0.12);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-category-header i {
    font-size: 28px;
    color: var(--gold);
}

.tech-category-header h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    position: relative;
    padding-left: 18px;
}

.tech-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.tech-item h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.tech-item p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.45;
}

/* Highlight the last row and text in the budget table */
.budget-table tr:last-child {
    background: rgba(248, 198, 61, 0.15) !important;
    border-top: 2px solid var(--gold) !important;
}

.budget-table tr:last-child td {
    color: var(--gold) !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-shadow: 0 0 10px rgba(248, 198, 61, 0.3);
}

/* =====================================
   TEAM SECTION STYLE
   ===================================== */
.team-subsection-title {
    text-align: center;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    font-weight: 700;
}

.team-subsection-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.supervisors-grid {
    grid-template-columns: repeat(1, minmax(280px, 350px));
    justify-content: center;
}

.members-grid {
    grid-template-columns: repeat(4, 1fr);
}

.team-card {
    background: #0d1830;
    padding: 35px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(248, 198, 61, 0.15);
}

.team-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.team-card:hover .team-img-wrapper {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(248, 198, 61, 0.3);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.team-card .reg-no,
.team-card .role {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-card .role {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-email i {
    font-size: 14px;
    color: var(--gold);
}

.team-card:hover .team-email {
    color: #fff;
    background: rgba(31, 111, 245, 0.1);
    border-color: rgba(31, 111, 245, 0.3);
}

.team-email:hover {
    background: var(--gold) !important;
    color: #0d1830 !important;
    border-color: var(--gold) !important;
}

.team-email:hover i {
    color: #0d1830 !important;
}

/* Responsive details for team grid */
@media (max-width: 1100px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

/* =====================================
   PROJECT TIMELINE SECTION
===================================== */

#timeline {
    position: relative;
    padding: 100px 8%;
    background: #07111f;
    overflow: hidden;
}

/* Progress Indicator */
.timeline-progress-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.timeline-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.timeline-progress-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.timeline-progress-label i {
    color: var(--gold);
    margin-right: 6px;
}

.timeline-progress-percentage {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(248, 198, 61, 0.3);
}

.timeline-progress.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline-progress.progress span {
    display: block;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe08a 100%);
    box-shadow: 0 0 15px var(--gold);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Roadmap Track */
.timeline-roadmap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.timeline-line-wrapper {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.timeline-line-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.timeline-line-progress {
    position: absolute;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe08a 100%);
    box-shadow: 0 0 12px var(--gold);
    border-radius: 2px;
    transition: width 1.8s ease-in-out;
}

.timeline-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.timeline-node .node-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d1830;
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-node.completed .node-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d1830;
    box-shadow: 0 0 15px var(--gold);
}

.timeline-node.active .node-dot {
    background: #07111f;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(248, 198, 61, 0.6);
}

.node-pulse-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    animation: nodePulse 2s infinite ease-out;
}

.timeline-week-markers {
    position: relative;
    height: 20px;
    margin-top: 10px;
}

.week-marker {
    position: absolute;
    transform: translateX(-50%);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.timeline-roadmap .timeline-node:hover .node-dot {
    transform: scale(1.15);
}

/* Milestone Cards */
.timeline-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-card {
    position: relative;
    padding: 35px 25px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(248, 198, 61, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-card:hover .card-glow {
    opacity: 1;
}

.timeline-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(248, 198, 61, 0.35) !important;
    box-shadow: 0 15px 30px rgba(7, 17, 31, 0.5), 0 0 25px rgba(248, 198, 61, 0.15) !important;
}

.milestone-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.completed-card .milestone-badge {
    color: var(--gold);
    background: rgba(248, 198, 61, 0.08);
    border-color: rgba(248, 198, 61, 0.15);
}

.active-card .milestone-badge {
    color: #fff;
    background: rgba(31, 111, 235, 0.15);
    border-color: rgba(31, 111, 235, 0.25);
}

.milestone-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--muted);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.completed-card .milestone-icon-wrapper {
    color: var(--gold);
    background: rgba(248, 198, 61, 0.04);
    border-color: rgba(248, 198, 61, 0.12);
}

.active-card .milestone-icon-wrapper {
    background: linear-gradient(135deg, var(--gold) 0%, #ffe08a 100%);
    color: #07111f;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(248, 198, 61, 0.4);
}

.timeline-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-weeks {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 22px;
    display: block;
}

.milestone-status {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted);
    margin-top: auto;
}

.completed-card .milestone-status {
    color: var(--gold);
    background: rgba(248, 198, 61, 0.04);
    border-color: rgba(248, 198, 61, 0.1);
}

.active-card {
    border-color: rgba(248, 198, 61, 0.45) !important;
    box-shadow: 0 0 25px rgba(248, 198, 61, 0.15), inset 0 0 15px rgba(248, 198, 61, 0.02) !important;
    animation: activeCardGlow 3s infinite alternate ease-in-out;
}

.active-card .milestone-status.in-progress {
    color: var(--gold);
    background: rgba(248, 198, 61, 0.08);
    border-color: rgba(248, 198, 61, 0.2);
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes nodePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes dotPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(248, 198, 61, 0.7);
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(248, 198, 61, 0);
    }
    100% {
        transform: scale(0.85);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(248, 198, 61, 0);
    }
}

@keyframes activeCardGlow {
    0% {
        border-color: rgba(248, 198, 61, 0.25);
        box-shadow: 0 0 15px rgba(248, 198, 61, 0.05);
    }
    100% {
        border-color: rgba(248, 198, 61, 0.65);
        box-shadow: 0 0 30px rgba(248, 198, 61, 0.22);
    }
}

/* Media Queries for Timeline Section */
@media (max-width: 1100px) {
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .timeline-roadmap {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .timeline-roadmap {
        display: none; /* Hide top roadmap tracker on vertical stacked mode */
    }
    
    .timeline-cards {
        grid-template-columns: 1fr;
        position: relative;
        padding-left: 35px;
        max-width: 600px;
    }
    
    /* Vertical connecting line */
    .timeline-cards::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 40px;
        bottom: 40px;
        width: 3px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
        z-index: 1;
    }
    
    /* Active vertical progress fill */
    .timeline-cards::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 40px;
        height: 75%; /* Spans 3/4ths of the stack height */
        width: 3px;
        background: linear-gradient(180deg, var(--gold) 0%, #ffe08a 100%);
        box-shadow: 0 0 10px var(--gold);
        border-radius: 2px;
        z-index: 1;
    }
    
    .timeline-card {
        text-align: left;
        align-items: flex-start;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .timeline-card h3 {
        justify-content: flex-start;
        min-height: auto;
        margin-top: 5px;
    }
    
    /* Connecting nodes on mobile stacked list */
    .timeline-card::after {
        content: "";
        position: absolute;
        left: -32px;
        top: 45px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #0d1830;
        border: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 3;
        transition: all 0.3s ease;
    }
    
    .completed-card::after {
        background: var(--gold);
        border-color: var(--gold);
        box-shadow: 0 0 10px var(--gold);
    }
    
    .active-card::after {
        background: #07111f;
        border-color: var(--gold);
        box-shadow: 0 0 10px rgba(248, 198, 61, 0.6);
        animation: dotPulse 1.5s infinite ease-in-out;
    }
}