/*========================================================================
                           BASE STYLES
========================================================================*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Roboto:wght@400;700&family=Open+Sans:wght@400;700&family=Lato:wght@400;700&family=Montserrat:wght@400;700&family=Oswald:wght@400;700&family=Raleway:wght@400;700&family=Merriweather:wght@400;700&family=Nunito:wght@400;700&family=PT+Sans:wght@400;700&family=Source+Sans+Pro:wght@400;700&family=Ubuntu:wght@400;700&family=Droid+Serif:wght@400;700&family=Slabo+27px&family=Indie+Flower&family=Lobster&family=Pacifico&family=Caveat&family=Sacramento&family=Cookie&family=Roboto+Slab:wght@400;700&family=Playfair+Display+SC:wght@400;700&family=Bebas+Neue&family=Anton&family=Acme&family=Righteous&family=Paytone+One&family=Alfa+Slab+One&family=Passion+One:wght@400;700&family=Sigmar+One&display=swap');

/* CSS Variables */
:root {
    --primary-color: #ffd700;
    --secondary-color: #ffb700;
    --accent-color: #ff8c00;
    --text-dark: #ffffff;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --card-bg: #1a1a1a;
    --font-family-primary: 'Poppins', sans-serif;
    --font-family-display: 'Playfair Display', serif;
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.6);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*========================================================================
                           HEADER & NAVIGATION
========================================================================*/

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(30, 30, 30, 0.35);
    backdrop-filter: blur(16px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.glass-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-word {
    color: var(--primary-color);
    transition: font-family 0.5s ease-in-out;
}

.glass-nav-menu a {
    font-family: 'Poppins', sans-serif;
}

.glass-nav-menu {
    display: none; /* Hidden on mobile */
    list-style: none;
}

.glass-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 4000;
}

.glass-menu-btn span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.glass-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.glass-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.glass-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 3000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-overlay.active {
    display: flex;
}

.glass-overlay-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glass-overlay-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.glass-overlay-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}



/*========================================================================
                           HERO SECTION
========================================================================*/

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("hero-africa.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--primary-color);
}

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

.hero-btn.secondary:hover {
    background: white;
    color: #000;
}

/*========================================================================
                           SOCIAL MEDIA BAR
========================================================================*/

.social-media-bar {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
}

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

/*========================================================================
                           STORY SECTION
========================================================================*/

.story-section {
    padding: 80px 0;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.story-content .section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.story-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.story-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.story-visual {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: url('INSTRUMENTALS.jpg') center/cover no-repeat;
    border-radius: 20px;
}

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


.team {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), rgba(0, 0, 0, 0.4)), url('leadership-background.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: var(--font-family-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    animation: underline-animation 2s ease-out forwards;
    animation-delay: 0.5s;
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes underline-animation {
    from {
        width: 0;
    }
    to {
        width: 150px;
    }
}

.founder-row,
.team-row-2,
.team-row-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.founder-card-static,
.team-member {
    perspective: 1000px;
}

.founder-card-static {
    text-align: center;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px 20px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-card-static:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255, 215, 0, 0.2);
}

.founder-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    background-color: #fff;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.founder-info p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 10px;
}

.founder-info .founder-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    padding: 0 15px;
    font-style: italic;
}

.founder-social a {
    color: var(--text-gray);
    font-size: 1.8rem;
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.founder-social a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 450px;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.team-member:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.team-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #1a1a1a, var(--bg-darker));
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.member-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.member-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.member-social a {
    color: var(--text-gray);
    font-size: 1.4rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.member-social a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.team-card-back h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-card-back p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Remove the JS-based flipping class */
.team-card-inner.is-flipped {
    transform: none;
}

/*========================================================================
                           COMMUNITY SECTION
========================================================================*/

.community {
    padding: 80px 0;
    background: url('backgroundstyle.jpeg') top center/cover no-repeat fixed;
}

.community-organized {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.community-info .section-tag {
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 24px;
    text-decoration: none;
    margin-right: 10px;
}

.community-info h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.community-info p {
    font-size: 1.15rem;
    color: #f5f5f5;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.community-image img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 32px;
}

/*========================================================================
                           LABELS SECTION
========================================================================*/

.labels {
    padding: 80px 0;
}

.labels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.label-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.label-logo img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 20px;
}

.label-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-full-section {
    margin-top: 60px;
}

#astute-video {
    width: 100%;
    height: auto;
}

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


.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 0;
    color: var(--text-gray);
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-family-display);
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icon {
    font-size: 1.8rem;
    color: var(--text-gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/*========================================================================
                           RADIO INTERVIEW PAGE
========================================================================*/

.interview-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
}

.search-bar input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.search-bar button {
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #000;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.filter-bar select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.interview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.interview-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.interview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.interview-info {
    padding: 20px;
}

.interview-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .interview-toolbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .interview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/*========================================================================
                           KENTUNEZ PAGE
========================================================================*/

.leader-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.leader-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.leader-contact a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}

.company-description {
    margin-bottom: 40px;
}

.company-stats {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.pricing-section {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.contact-section {
    text-align: center;
}

@media (min-width: 768px) {
    .leader-profile {
        flex-direction: row;
        text-align: left;
    }

    .leader-image {
        margin-right: 40px;
        margin-bottom: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*========================================================================
                           ABOUT US PAGE
========================================================================*/

.company-header {
    padding: 60px 0;
    text-align: center;
    background-color: #111;
}

.back-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.company-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.company-subtitle {
    font-size: 1.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px 0;
}

.about-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-card ul {
    list-style: none;
}

.about-card ul li {
    margin-bottom: 10px;
}

/*========================================================================
                           MEDIA QUERIES
========================================================================*/

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 1200px) {
    .glass-nav-menu {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .glass-nav-menu a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.3s ease;
        padding-bottom: 5px;
    }

    .glass-nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .glass-nav-menu a:hover {
        color: var(--primary-color);
    }

    .glass-nav-menu a:hover::after {
        width: 100%;
    }


    .glass-menu-btn {
        display: none;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .hero-btn {
        width: auto;
    }

    .story-container {
        flex-direction: row;
        text-align: left;
    }

    .story-content {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .team-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-organized {
        flex-direction: row;
        text-align: left;
    }

    .labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .labels-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/*========================================================================
                       KENTUNEZ PAGE STYLES
========================================================================*/

.kentunez-page {
    background-color: #050505;
    color: #f1f1f1;
}

/* Header */
.kp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kp-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.kp-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kp-nav a:hover {
    color: var(--primary-color);
}

.kp-nav-btn {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

/* Hero Section */
.kp-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('diana-radio.png') no-repeat center center/cover;
}

.kp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.kp-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.leader-profile-hero {
    margin-bottom: 30px;
}

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

.leader-image-hero {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.leader-info-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 15px;
    color: #fff;
}

.leader-info-hero p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.kp-hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.kp-hero-subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-gray);
}

.kp-hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kp-hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* About Section */
.kp-about {
    padding: 100px 0;
    background-color: #0a0a0a;
}

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

@media (min-width: 992px) {
    .kp-about-content {
        grid-template-columns: 2fr 1fr;
    }
}

.kp-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.kp-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.leader-contact-about a {
    color: #fff;
    text-decoration: none;
    margin-right: 25px;
    font-size: 1.1rem;
}

.leader-contact-about i {
    margin-right: 10px;
    color: var(--primary-color);
}

.kp-about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item-kp {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.stat-item-kp h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Section */
.kp-services {
    padding: 100px 0;
}

.kp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kp-service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.kp-service-card:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
}

.kp-service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.kp-service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.kp-pricing {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.pricing-grid-kp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card-kp {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card-kp:hover {
    transform: scale(1.05);
}

.pricing-card-kp.popular {
    border-color: var(--primary-color);
    transform: scale(1.08);
}

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

.price-kp {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-kp span {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-card-kp ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card-kp ul li {
    margin-bottom: 15px;
}

.pricing-card-kp ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.kp-pricing-btn {
    display: block;
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

.kp-pricing-btn:hover, .kp-pricing-btn.primary {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.popular-badge {
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* CTA Section */
.kp-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #000;
}

.kp-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Footer */
.kp-footer {
    padding: 30px 0;
    background-color: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kp-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/*========================================================================
                               TABS SECTION
========================================================================*/

.kp-tabs {
    width: 100%;
    margin-top: 3rem;
}

.kp-tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0; /* Remove bottom margin */
    flex-wrap: wrap;
}

.kp-tab-link {
    background: none;
    border: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    color: var(--text-light);
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 2px; /* To align with the top border of the content */
}

.kp-tab-link i {
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.kp-tab-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.kp-tab-link:hover i {
    transform: scale(1.2);
}

.kp-tab-link.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2) transparent;
    border-bottom: 2px solid var(--bg-light);
}

.kp-tab-content-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.kp-tab-content {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
    text-align: center;
}

.kp-tab-content.active {
    display: block;
}

.kp-tab-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kp-tab-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 2.5rem;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.85);
}

.video-container {
    position: relative;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    overflow: hidden; /* Ensures overlay corners are rounded */
    transition: box-shadow 0.4s ease;
}

.video-container:hover {
    box-shadow: 0 0 25px var(--primary-color), 0 0 10px var(--primary-color) inset;
}

.interview-video {
    width: 100%; /* Make video responsive */
    height: auto;
    display: block; /* Removes bottom space under video */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* Allows clicks to go through to video controls */
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay-text {
    color: var(--text-light);
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

.video-container:hover .video-overlay-text {
    transform: translateY(0);
}

.video-overlay-text h5 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.video-overlay-text p {
    font-size: 1.2rem;
    margin: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.content-placeholder {
    margin-bottom: 2.5rem;
    background-color: var(--bg-dark);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.content-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.content-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Button hover effect inside tabs */
.kp-tab-content .kp-pricing-btn {
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kp-tab-content .kp-pricing-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}