/* ===================================
   HBS-Style Design System for Elevantra
   Academic Excellence & Professional Growth
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Elevantra Brand */
    --primary-color: #003366;
    /* Deep Blue */
    --secondary-color: #E6B800;
    /* Gold */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;

    /* Typography */
    --font-heading: 'Roboto', 'Arial', sans-serif;
    --font-body: 'Open Sans', 'Helvetica', sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;

    /* Spacing */
    --section-padding: 50px 0;
    --container-max-width: 1200px;

    /* Shadows */
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-bg);
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* ===================================
   MAIN HEADER
   =================================== */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 28px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 400px;
    /* Reduced specific height to tighten spacing */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}


.hero-content h1 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    /* Reduced gap below title */
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 56px;
    margin-bottom: 15px;
    /* Reduced gap below subtitle */
    color: var(--secondary-color);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    /* Added gap between buttons */
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    /* Slightly reduced gap below description */
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   SECTION TITLE
   =================================== */
.section-title {
    margin-bottom: 40px;
}

.title-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===================================
   CARDS
   =================================== */
.feature-card {
    background-color: var(--white);
    padding: 25px 25px 15px 25px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.feature-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
    /* Pushes the button to the bottom */
    padding-top: 15px;
    /* Ensures some space above the button */
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background-color: var(--white);
}

.home-founder-margin {
    padding-top: 0 !important;
    margin-top: -30px;
    /* Reduced gap, but not too close */
    position: relative;
    z-index: 10;
    padding-bottom: 0;
    /* Reduced bottom gap */
}

.about-section .row {
    align-items: flex-start;
}

.about-img-wrapper {
    position: relative;
}

.about-img-1 {
    border-radius: 4px;
    overflow: hidden;
}

.founder-profile-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img {
    background-image: url('https://via.placeholder.com/600x700?text=Founder');
    background-size: cover;
    background-position: center;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.experience-badge .text {
    display: block;
    font-size: 14px;
    font-weight: 600;
}



.about-content .section-title {
    margin-bottom: 0px;
    /* Reduced gap between title and text */
}

.about-content .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-voice-title {
    font-size: 28px !important;
    color: var(--secondary-color) !important;
    text-transform: none;
    letter-spacing: normal;
}

.founder-signature {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.founder-details h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-details span {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===================================
   PARALLAX CTA
   =================================== */
.parallax-cta {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.parallax-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.9);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   PAGE TITLE BANNER
   =================================== */
.page-title-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: var(--white);
}

.page-title-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.8);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb li {
    color: var(--white);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--secondary-color);
}

.breadcrumb li a:hover {
    color: var(--secondary-color);
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 60px 0;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   REVERSED HIERARCHY TITLES
   =================================== */
.section-title.reverse-hierarchy .title-tag {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: normal;
}

.section-title.reverse-hierarchy h2 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

    .hero-content h1 {
        font-size: 42px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===================================
   CREDENTIALS SECTION
   =================================== */
.credentials-section {
    background-color: var(--white);
}

.credentials-slide {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: var(--white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.credentials-slide:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.credentials-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   LEAD FRAMEWORK SECTION
   =================================== */
.lead-section {
    background-color: var(--light-bg);
}

.lead-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.lead-image-wrapper:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.lead-framework-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   PACE SECTION
   =================================== */
.pace-section {
    background-color: var(--white);
}

.pace-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.pace-image-wrapper:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.pace-framework-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   BENEFIT & IMPACT SECTION
   =================================== */
.benefit-section {
    background-color: var(--light-bg);
}

.benefit-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.benefit-image-wrapper:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.benefit-framework-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment-section {
    background-color: var(--white);
    padding: 60px 0;
}

.commitment-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.commitment-image-wrapper:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.commitment-full-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
}

.menu-close {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        color: var(--white);
        border-bottom: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--secondary-color);
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 10px;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--white);
        cursor: pointer;
        padding: 5px;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .menu-overlay.active {
        display: block;
    }

    .header-btn {
        display: none;
    }
}

/* Footer Layout Refinement */
.footer-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.footer-brand {
    flex: 0 0 35%;
    max-width: 35%;
}

.footer-links-group {
    display: flex;
    gap: 60px;
    /* Adjust this value to control space between Quick Links and Contact Us */
}

@media (max-width: 992px) {
    .footer-flex-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-links-group {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FOUNDER CARD
   =================================== */
.founder-card {
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #004e7c 0%, #002b4d 100%);
    border-radius: 40px 0 40px 0;
    padding: 60px 30px;
    position: relative;
    color: var(--white);
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Responsive adjustment for Founder Layout */
@media (min-width: 992px) {
    .about-section .row {
        justify-content: center;
        align-items: flex-start;
        /* Force top alignment for both Home and About */
    }

    .about-section .col-lg-6 {
        flex: 0 0 42%;
        /* Narrower columns to increase outer spacing */
        max-width: 42%;
    }

    .founder-card {
        margin-right: 0;
        /* Align to right side of left column */
        margin-left: auto;
    }

    .about-content {
        padding-left: 30px;
        /* Small gap between card and text */
        text-align: left;
        /* Keep text left-aligned as requested */
    }
}

@media (max-width: 992px) {
    .about-content {
        text-align: center;
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Dots decoration matching reference */
.founder-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 30px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 6px 6px;
    z-index: 0;
}

.founder-card-logo {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* White bg circle for logo containment */
.founder-card-logo img {
    height: 100px;
    width: 100px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 10px;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #cca43b;
    /* Gold border from logo color */
}

.founder-card-img {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.founder-card-img img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid var(--white);
    object-fit: cover;
    object-position: top;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.founder-card-info {
    position: relative;
    z-index: 1;
}

.founder-card-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

.founder-card-info p {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   BLOG CARD CUSTOMIZATION
   =================================== */
.blog-card {
    padding: 30px;
    /* Reduced from 40px */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.blog-card .date {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    width: 100%;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.blog-card .read-more {
    margin-top: auto;
}

/* ===================================
   EXPERTISE LIST STYLING
   =================================== */
.expertise-list {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 10px;
}

.expertise-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-light);
}

.expertise-list li::before {
    content: '\f00c';
    /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 12px;
}

/* ===================================
   PROGRAMS LIST STYLING
   =================================== */
.programs-list {
    text-align: left;
    margin-bottom: 20px;
}

.programs-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.programs-list strong {
    color: var(--primary-color);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-content .subtitle {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* ===================================
   EXPERTISE PAGE STYLES (Clean Layout)
   =================================== */
.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
}

.expertise-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(230, 184, 0, 0.15);
    /* Light Gold/Secondary */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 184, 0, 0.3);
}

.expertise-item:hover .expertise-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-content {
    flex: 1;
}

.expertise-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.expertise-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.expertise-item:hover .expertise-content h3::after {
    width: 60px;
}

.expertise-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   BEHAVIORS PAGE STYLES
   =================================== */
.behavior-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.behavior-section:last-child {
    border-bottom: none;
}

.behavior-section:nth-child(even) {
    background-color: var(--light-bg);
}

.behavior-row {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.behavior-section:nth-child(even) .behavior-row {
    gap: 50px;
}

.behavior-section:nth-child(even) .behavior-row {
    flex-direction: row-reverse;
}

.behavior-content {
    flex: 1;
}

.behavior-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.behavior-icon-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #004d99);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
    transition: transform 0.3s ease;
}

.behavior-section:nth-child(even) .behavior-icon-box {
    background: linear-gradient(135deg, var(--secondary-color), #ffcc00);
}

.behavior-icon-box:hover {
    transform: scale(1.05);
}

.behavior-icon-box i {
    font-size: 80px;
    color: var(--white);
}

.behavior-section:nth-child(even) .behavior-icon-box i {
    color: var(--primary-color);
}

.behavior-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.behavior-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.behavior-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .behavior-row,
    .behavior-section:nth-child(even) .behavior-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .behavior-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===================================
   HIDING SOCIAL MEDIA ICONS (USER REQUEST)
   =================================== */
.social-links,
.footer-social {
    display: none !important;
}