/* Homepage styles — extracted from inline <style> in index.html */

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #C9A84C;
            --secondary-color: #0C1A0E;
            --accent-gold: #C9A84C;
            --dark-bg: #080C18;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-light: #ccc;
            --transition: all 0.3s ease;
        }

        body {
            background-color: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Video Backgrounds */
        .back-vid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.7;
        }

        .blackhole-box {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            z-index: -1;
            overflow: hidden;
            opacity: 0.8;
        }

        .blackhole-box video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: relative;
            z-index: 10;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .left img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-color);
        }

        .left h2 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        header ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        header ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        header ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), #E0C070);
            transition: var(--transition);
        }

        header ul li a:hover {
            color: var(--primary-color);
        }

        header ul li a:hover:after {
            width: 100%;
        }

        .box-icons {
            display: flex;
            gap: 15px;
        }

        .box-icons p {
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .box-icons p:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .menu-icon {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 100;
            padding: 80px 30px 30px;
            transition: right 0.5s;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        }

        .sidebar.active {
            right: 0;
        }

        .close-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
            transition: var(--transition);
        }

        .close-icon:hover {
            color: var(--primary-color);
        }

        .sidebar ul {
            list-style: none;
            margin-bottom: 40px;
        }

        .sidebar ul li {
            margin-bottom: 20px;
        }

        .sidebar ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar ul li a:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }

        .social-sidebar {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-sidebar p {
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .social-sidebar p:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 120px 5% 80px;
            min-height: 90vh;
            position: relative;
        }

        .hero-info {
            width: 50%;
        }

        .hero-info-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .hero-info h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .gradient {
            background: linear-gradient(90deg, #C9A84C, #E0C070);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-info p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 90%;
        }

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

        .hero-info button {
            background: linear-gradient(90deg, var(--primary-color), #E0C070);
            border: none;
            padding: 14px 28px;
            border-radius: 3px;
            color: #080C18;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        }

        .hero-info button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
        }

        .hero-info button.outline {
            background: transparent;
            border: 2px solid rgba(201,168,76,0.6);
            color: #C9A84C;
        }

        .impact-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .metric {
            text-align: center;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metric h3 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }

        .metric p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .skills-video-box {
            width: 48%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .skills-video {
            width: 100%;
            height: auto;
            max-height: 540px;
            object-fit: contain;
            mix-blend-mode: screen;
            clip-path: circle(47% at 50% 50%);
            filter: drop-shadow(0 0 30px rgba(100, 180, 255, 0.5));
        }

        .scroll-down {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid #fff;
            border-radius: 15px;
        }

        .scroll-down::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background-color: #fff;
            border-radius: 2px;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { top: 8px; opacity: 1; }
            100% { top: 25px; opacity: 0; }
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            font-weight: 700;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), #E0C070);
        }

        /* About Section */
        .about-section {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            margin: 0 5%;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 25px;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .core-principles {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .principle {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-gold);
        }

        .principle h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Info Cards Section */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(201, 168, 76, 0.3);
        }

        .card h1 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .card p {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .card img, .card video {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .card button {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            align-self: flex-start;
        }

        .card button:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Project Section */
        .my-project {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            margin: 0 5%;
        }

        .project-card {
            display: flex;
            gap: 40px;
            margin-bottom: 80px;
            align-items: center;
        }

        .project-card:last-child {
            margin-bottom: 0;
        }

        .project-card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .project-vidbox {
            width: 50%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .project-vidbox video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-vidbox:hover video {
            transform: scale(1.05);
        }

        .project-info {
            width: 50%;
        }

        .project-info h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 600;
        }

        .project-info p {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .project-info button {
            background: linear-gradient(90deg, var(--primary-color), #E0C070);
            border: none;
            padding: 14px 28px;
            border-radius: 3px;
            color: #080C18;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        }

        .project-info button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
        }

        /* Leadership Section */
        .leadership-section {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            margin: 0 5%;
        }

        .executive-team {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .leader-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .leader-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            margin: 0 auto 15px;
            border: 3px solid var(--accent-gold);
        }

        .leader-card h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .leader-card .title {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .leader-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .leadership-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .pillar {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--accent-gold);
        }

        .pillar h3 {
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            justify-content: center;
            gap: 50px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            padding: 60px 5%;
        }

        .social-box {
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-box a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            transition: var(--transition);
            padding: 8px 0;
        }

        .social-box a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-icons a {
            font-size: 1.5rem;
            padding: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        /* Footer */
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.7);
        }

        .footer .box-icons {
            display: flex;
            gap: 15px;
        }

        .footer .box-icons p {
            cursor: pointer;
            transition: var(--transition);
        }

        .footer .box-icons p:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-info h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .hero-info, .skills-video-box {
                width: 100%;
            }
            
            .hero-info p {
                max-width: 100%;
            }
            
            .impact-metrics {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .project-card, .project-card:nth-child(even) {
                flex-direction: column;
                gap: 30px;
            }
            
            .project-vidbox, .project-info {
                width: 100%;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            header ul, .box-icons {
                display: none;
            }
            
            .menu-icon {
                display: block;
            }
            
            .hero-info h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-section {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .card img, .card video {
                height: 200px;
            }
            
            .project-vidbox {
                height: 300px;
            }
            
            .info-cards {
                grid-template-columns: 1fr;
            }
            
            .impact-metrics {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-info h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .card img, .card video {
                height: 180px;
            }
            
            .project-vidbox {
                height: 250px;
            }
            
            .skills-video-box {
                height: 300px;
            }
        }
    
/* ── NAV FIXES for index page ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
body { padding-top: 0; }
section.hero { padding-top: 0 !important; }