
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #2c3e50;
            --accent-color: #27ae60;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

     
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
            color: white;
            padding: 80px 0 40px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .page-header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb-item a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
        }

        .page-header .breadcrumb-item a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .page-header .breadcrumb-item.active {
            color: white;
            font-weight: 600;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: white;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary-color);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Founder Highlight Section */
        .founder-highlight-section {
            padding: 60px 0;
            background: white;
        }

        .founder-image {
            border-radius: 0px;
            overflow: hidden;
           
           
        }

        .founder-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .founder-image:hover img {
            transform: scale(1.05);
        }

        .founder-info {
            padding-left: 40px;
        }

        .founder-info h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .founder-info h2 span {
            color: var(--primary-color);
            display: block;
            font-size: 2.5rem;
        }

        .founder-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .founder-bio {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .founder-social {
            margin-top: 30px;
        }

        .founder-social a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: var(--light-bg);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            color: var(--text-dark);
            margin-right: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .founder-social a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

                    .partner-section {
                    position: relative;
                    padding: 60px 0;
                    background: url('../images/better-ogen.png') no-repeat center center;
                    background-size: cover;
                    background-attachment: fixed;
                    color: white;
                }

                .partner-section::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(20, 20, 20, 0.671); /* dark overlay */
                }

                .partner-section * {
                    position: relative;
                    z-index: 1;
                }

        .partner-card {
            background: rgb(255, 255, 255);
            padding: 50px;
            border-radius: 0px;
            text-align: center;
           
            border: 0px solid var(--primary-color);
        }

        .partner-logo {
            width: 120px;
            height: 120px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            border: 4px solid white;
        }

        .partner-logo i {
            font-size: 3.5rem;
            color: white;
        }

        .partner-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: orangered;
        }

        .partner-card p {
            color: black;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Team Section */
        .team-section {
            padding: 60px 0;
            background: white;
        }

        .team-card {
            background: white;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255,107,0,0.15);
            border-color: var(--primary-color);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            transition: bottom 0.3s ease;
        }

        .team-card:hover .team-social {
            bottom: 0;
        }

        .team-social a {
            color: white;
            font-size: 1.2rem;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .team-info {
            padding: 20px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .team-info p {
            color: var(--primary-color);
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .team-info small {
            color: var(--text-light);
            font-size: 0.85rem;
            display: block;
            margin-top: 5px;
        }

        /* Join Section */
        .join-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), #ff8c00);
            color: white;
            text-align: center;
        }

        .join-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .join-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-cta {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-cta:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
        }

        /* CTA Mini Cards */
        .cta-mini-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .cta-mini-card {
            display: block;
            text-align: center;
            padding: 35px 25px;
            background: white;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }

        .cta-mini-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(255,107,0,0.1);
        }

        .cta-mini-card i {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .cta-mini-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cta-mini-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .founder-info {
                padding-left: 0;
                margin-top: 40px;
                text-align: center;
            }

            .founder-info h2 span {
                display: inline;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .founder-info h2 {
                font-size: 2.5rem;
            }

            .founder-info h2 span {
                font-size: 2rem;
            }

            .partner-card {
                padding: 30px;
            }

            .partner-card h3 {
                font-size: 1.6rem;
            }

            .join-section h2 {
                font-size: 2rem;
            }
        }