/* ===== Levante Projects - PROFESSIONAL STYLES ===== */

/* Root Variables for Modern Design System */
:root {
    /* Primary Colors */
    --primary-gold: #896f3d;
    --dark-gold: #6b5730;
    --light-gold: #a89665;
    --light-gold2: #c4b896;

    /* Dark Theme Colors */
    --primary-dark: #102134;
    --secondary-dark: #1a293f;
    --tertiary-dark: #404751;

    /* Accent Colors */
    --accent-blue: #896f3d;
    --accent-light: #a89665;
    --accent-dark: #6b5730;

    /* Text Colors */
    --text-light: #f9f9fb;
    --text-gray: #b2b2c8;
    --text-dark: #1a293f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f4f4f9;

    /* Borders & Effects */
    --border-light: rgba(137, 111, 61, 0.25);
    --shadow-sm: 0 2px 10px rgba(137, 111, 61, 0.08);
    --shadow-md: 0 10px 30px rgba(137, 111, 61, 0.12);
    --shadow-lg: 0 20px 50px rgba(137, 111, 61, 0.15);
    --shadow-xl: 0 30px 70px rgba(137, 111, 61, 0.2);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #896f3d 0%, #a89665 100%);
    --gradient-dark: linear-gradient(135deg, #102134 0%, #404751 100%);
    --gradient-accent: linear-gradient(135deg, #6b5730 0%, #a89665 100%);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== ADVANCED HEADER STYLES ===== */
.header {
    background: var(--secondary-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: var(--secondary-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo img {
    width: 350px;
}

.footer-logo {
    width: 350px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-blue);
    transition: all 0.3s ease;
}


/* ===== ENHANCED HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #112250;
    overflow: hidden;
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 108, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Geometric Pattern Overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.01) 40.5%, rgba(255, 255, 255, 0.01) 41%, transparent 41.5%),
        linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.01) 40.5%, rgba(255, 255, 255, 0.01) 41%, transparent 41.5%);
    background-size: 60px 60px;
}

/* Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Main Content Grid */
.hero-content {
    align-items: center;
    text-align: center;
    padding-top: 0rem;
}

/* Left Content */
.hero-left {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInLeft 1s ease-out 0.2s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 0rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160, 108, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 108, 213, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Right Content - Visual Element */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D Building Cards */
.building-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.building-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.building-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.building-card:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.building-card:nth-child(2) {
    animation: float 6s ease-in-out infinite 1s;
}

.building-card:nth-child(3) {
    animation: float 6s ease-in-out infinite 2s;
}

.building-card:nth-child(4) {
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-gold2);
    margin-bottom: 0.5rem;
}

.hero .card-text {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.4;
}

/* Stats Section */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    z-index: 5;
}


/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.hero-divider i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1.6s backwards;
}

.hero-scroll-indicator span {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Animated Background Elements with Floating Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 108, 213, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(108, 99, 255, 0.08) 0%, transparent 50%);
    animation: floatingGradient 12s ease-in-out infinite alternate;
}

@keyframes floatingGradient {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: translate(-20px, 20px) scale(1);
        opacity: 1;
    }
}

/* Enhanced Geometric Pattern with Animation */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.02) 40.5%, rgba(255, 255, 255, 0.02) 41%, transparent 41.5%),
        linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.02) 40.5%, rgba(255, 255, 255, 0.02) 41%, transparent 41.5%);
    background-size: 60px 60px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* Floating Particles Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(160, 108, 213, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(108, 99, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(160, 108, 213, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 90% 60%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 70% 70%, 20% 80%, 10% 40%;
    }
}

/* Enhanced Badge with Pulse Animation */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.8rem;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(26, 41, 63, 0.2);
    animation: fadeInDown 0.8s ease-out, badgePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(26, 41, 63, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(108, 99, 255, 0.4);
    }
}

.hero-badge i {
    animation: iconRotate 4s ease-in-out infinite;
}

@keyframes iconRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Title with Gradient Animation */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(193, 169, 84, 0.3));
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Hero Divider with Animation */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-divider span {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    position: relative;
    overflow: hidden;
}

.hero-divider span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: lineShimmer 2s infinite;
}

@keyframes lineShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-divider i {
    color: var(--light-gold);
    font-size: 1.3rem;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(160, 108, 213, 0.5));
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Enhanced Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 0 2px 10px rgba(160, 108, 213, 0.2);
}

/* Enhanced Description */
.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Enhanced Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: fadeInUp 1.2s ease-out 1.2s backwards;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll-indicator span {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-scroll-indicator i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: smoothBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(160, 108, 213, 0.4));
}

@keyframes smoothBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

/* Core Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-divider {
        margin: 1.5rem 0;
    }

    .hero-divider span {
        width: 60px;
    }

    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        gap: 0.5rem;
    }

    .hero-divider span {
        width: 40px;
    }

    .hero-scroll-indicator span {
        font-size: 0.75rem;
    }
}










/* ===== SECTION STYLES ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ===== OVERVIEW SECTION ===== */

.overview {
    background: var(--off-white);
    padding: 7rem 0;
    position: relative;
}

.overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: var(--gradient-dark);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    opacity: 0.03;
}

.overview-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--accent-blue);
    position: relative;
    overflow: hidden;
}

.overview-intro::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    opacity: 0.08;
    border-radius: 50%;
}

.overview-intro p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    position: relative;
}

/* .overview-intro p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 10px;
    color: var(--primary-gold);
} */

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.overview-card {
    background: var(--white);
    padding: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.card-header {
    background: var(--gradient-accent);
    padding: 2.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.card-body {
    padding: 0 2.5rem 2.5rem;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    text-align: center;
}

.card-text {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: center;
}

.overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.overview-card:hover .card-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 255, 255, 0.35);
}

.overview-card:nth-child(1) .card-header {
    background: #112250;
}

.overview-card:nth-child(2) .card-header {
    background: #112250;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-on-scroll {
    animation: float 6s ease-in-out infinite;
}

.animate-on-scroll:nth-child(2) {
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .overview {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .overview-intro {
        padding: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



/* ===== PARTNERS SECTION - ENHANCED DESIGN ===== */
.partners {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.partners::before {
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(98, 71, 170, 0.03) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.partners::after {
    content: '';
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(108, 99, 255, 0.03) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.partners-showcase {
    position: relative;
    z-index: 1;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

/* Timeline Style Cards */
.partner-showcase-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0;
    margin-bottom: 5rem;
    position: relative;
}

/* Timeline Dot and Line */
.partner-showcase-card::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -80px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--border-light) 100%);
}

.partner-showcase-card:last-child::before {
    display: none;
}

.timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(98, 71, 170, 0.1), var(--shadow-md);
    position: relative;
    z-index: 2;
}

.partner-showcase-card:nth-child(2) .timeline-dot {
    background: var(--gradient-dark);
    box-shadow: 0 0 0 10px rgba(108, 99, 255, 0.1), var(--shadow-md);
}

.timeline-number {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Card Content - Diagonal Cut Design */
.partner-content-section {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.partner-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
}

.partner-showcase-card:hover .partner-content-section {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-xl);
}

/* Partner Badge - Ribbon Style */
.partner-badge {
    position: absolute;
    top: 1rem;
    right: -2px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.6rem 2rem 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
    box-shadow: var(--shadow-sm);
}

.partner-showcase-card:nth-child(2) .partner-badge {
    background: var(--gradient-dark);
}

/* Content Styling */
.partner-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
}

.partner-tagline {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Details - Hexagon Style */
.partner-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 15px 15px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.detail-item i {
    color: var(--accent-blue);
    font-size: 1.3rem;
    min-width: 25px;
}

.partner-description {
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-light);
}

.small-text {
    display: block;
    padding: 0px 10px;
    text-align: justify;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Services - Pill Style */
.services-showcase {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, transparent 100%);
    padding: 2rem 10px;
    border-radius: 20px;
}

.services-showcase h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: var(--accent-blue);
    transform: scale(1.05);
}

.service-tag:hover i,
.service-tag:hover span {
    color: var(--white);
}

.service-tag i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-tag span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Capabilities - Card Grid */
.partner-capabilities {
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    border: 2px dashed var(--border-light);
}

.partner-capabilities h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-capabilities ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.partner-capabilities li {
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    padding-left: 3rem;
    position: relative;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.partner-capabilities li:hover {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, var(--off-white) 100%);
    transform: translateX(5px);
}

.partner-capabilities li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(26, 41, 63, 0.2);
}

/* Synergy - Split Design */
.partnership-synergy {
    background: #112250;
    padding: 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 5rem;
    position: relative;
}

.synergy-content {
    padding: 4rem;
    color: var(--white);
    text-align: center;
}

.synergy-content h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.synergy-content>p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.synergy-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.synergy-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.synergy-item:last-child {
    border-right: none;
}

.synergy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
}

.synergy-item:hover::before {
    height: 100%;
}

.synergy-item:hover {
    transform: translateY(-10px);
}

.synergy-item i {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
}

.synergy-item span {
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.animate-on-scroll {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-on-scroll:nth-child(2) {
    animation-delay: 0.3s;
}

@media (max-width: 1200px) {
    .partner-showcase-card {
        grid-template-columns: 1fr;
    }

    .partner-showcase-card::before {
        display: none;
    }

    .timeline-marker {
        display: none;
    }

    .partner-content-section {
        border-radius: 30px;
        clip-path: none;
    }

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

    .synergy-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .partner-content-section {
        padding: 2rem;
    }

    .service-tags {
        flex-direction: column;
    }

    .synergy-highlights {
        grid-template-columns: 1fr;
    }
}



/* ===== COMPETENCIES SECTION - ENHANCED ===== */
.competencies {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 6rem 0;
}

.competency-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.competency-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.competency-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding: 0px 14px;
    color: var(--white);
}

.category-header h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.competency-list {
    list-style: none;
}

.competency-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.competency-list li:last-child {
    border-bottom: none;
}

.competency-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.competency-list li:hover {
    padding-left: 2.3rem;
    color: var(--primary-dark);
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-proposition {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(108, 99, 255, 0.02) 100%) !important;
    padding: 6rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}
 .target-sectors {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.target-sectors::before {
    display: none;
}

.target-sectors .section-title {
    color: var(--primary-dark);
    font-size: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.target-sectors .section-subtitle {
    color: var(--text-dark);
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.sectors-wrapper {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sector-item {
    position: relative;
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 420px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    gap: 2rem;
    align-items: center;
}

.sector-item:nth-child(even) {
    grid-template-columns: 52% 48%;
}

.sector-item:nth-child(even) .sector-image {
    order: 2;
}

.sector-item:nth-child(even) .sector-content {
    order: 1;
}

.sector-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.sector-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 16px;
    background: #f0f2f5;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    border-radius: 16px;
}

.sector-item:hover .sector-image img {
    transform: scale(1.06);
}

.sector-image::before {
    display: none;
}

.sector-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-icon {
    padding: 14px;
    width: 65px;
    height: 65px;
    background: var(--accent-blue);
    border: none;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.sector-item:hover .sector-icon {
    transform: rotate(8deg) scale(1.1);
}

.sector-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.sector-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    opacity: 0.85;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.sector-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.2rem;
    background: var(--accent-light);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 25px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sector-features span i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.sector-features span:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.sector-features span:hover i {
    color: var(--white);
}

.sector-item::after {
    content: attr(data-number);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(108, 99, 255, 0.05);
    z-index: 1;
    line-height: 1;
    transition: all 0.5s ease;
}

.sector-item:hover::after {
    color: rgba(108, 99, 255, 0.1);
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .sector-item,
    .sector-item:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .sector-image,
    .sector-item:nth-child(even) .sector-image {
        order: 1;
        min-height: 280px;
    }

    .sector-content,
    .sector-item:nth-child(even) .sector-content {
        order: 2;
        padding: 1rem 0;
    }

    .sector-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .target-sectors {
        padding: 4rem 0;
    }

    .target-sectors .section-title {
        font-size: 2.2rem;
    }

    .sectors-wrapper {
        margin-top: 3rem;
        gap: 2rem;
    }

    .sector-item {
        padding: 1rem;
        min-height: auto;
    }

    .sector-image {
        min-height: 240px;
    }

    .sector-content {
        padding: 1rem 0.5rem;
    }

    .sector-content h3 {
        font-size: 1.5rem;
    }

    .sector-content p {
        font-size: 0.9rem;
    }

    .sector-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .sector-item::after {
        font-size: 3.5rem;
    }
}

/* ===== QUALITY AND SAFETY SECTION ===== */
.quality-safety {
    background: var(--white);
    padding: 6rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    border-color: var(--dark-gold);
    border: 2px solid var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.commitment-card:hover::before {
    opacity: 1;
}

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

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.1);
}

.commitment-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== FUTURE OUTLOOK SECTION ===== */

.future-outlook {
    background: radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.08), transparent 70%),
        linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.future-outlook::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 71, 170, 0.08) 0%, transparent 70%);
    animation: rotate 50s linear infinite;
    z-index: 0;
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.future-outlook .section-title {
    color: var(--primary-dark);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 1px;
}

.future-outlook .section-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 10px;
}

.outlook-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.outlook-box {
    background: var(--white);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.outlook-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 58, 123, 0.25);
}

.outlook-icon {
    width: 110px;
    height: 110px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.35);
    position: relative;
}

.outlook-icon::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--light-gold);
    animation: spin 8s linear infinite;
    opacity: 0.6;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.outlook-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.outlook-text strong {
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.outlook-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    background: rgba(98, 71, 170, 0.08);
    padding: 0.8rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}






/* ===== PROJECT HIGHLIGHTS ===== */
.project-highlight {
    background: var(--white);
    padding: 6rem 0;
}

.project-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    border-radius: 25px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.project-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(160, 108, 213, 0.1) 0%, transparent 70%);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.detail-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}

.detail-label {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    max-width: 400px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--text-light);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--text-light);
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-contact a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.95rem;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .overview-grid,
    .competencies-grid {
        grid-template-columns: 1fr;
    }

    .project-details {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem !important;
    }

    .partner-badge {
        display: none;
    }

    .partner-details {
        display: flex;
        gap: 10px;
    }

    .synergy-content {
        padding: 2rem;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

/* ABOUT US CSS */

/* ===== UPDATED VISION & MISSION SECTION ===== */
.vision-mission {
    padding: 6rem 0 3rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(160, 108, 213, 0.04) 0%, transparent 60%);
    z-index: 0;
}

/* Header */
.vm-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.vm-header .section-title {
    font-size: 3.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.vm-header .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1.5rem auto 0;
}

.vm-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-gold);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Vision & Mission Sections */
.vm-section {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.vm-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.vm-content:hover {
    box-shadow: 0 8px 30px rgba(160, 108, 213, 0.12);
    transform: translateY(-5px);
}

/* Floating Icon */
.vm-icon-float {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.08) 0%, rgba(98, 71, 170, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.vm-icon-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.vm-icon-float i {
    font-size: 2rem;
    color: var(--primary-gold);
    z-index: 1;
}

.vm-section:hover .vm-icon-float {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-color: var(--primary-gold);
}

.vm-section:hover .vm-icon-float i {
    color: var(--white);
}

/* Text Content */
.vm-text-content {
    flex: 1;
}

.vm-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.vm-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
}

.vm-statement {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

.vm-lead {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* Enhanced Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-point {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.02) 0%, rgba(98, 71, 170, 0.01) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.mission-point:hover {
    padding-left: 2rem;
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.05) 0%, rgba(98, 71, 170, 0.03) 100%);
    border-left-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(160, 108, 213, 0.1);
}

.point-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(160, 108, 213, 0.25);
    line-height: 1;
    transition: all 0.3s ease;
}

.mission-point:hover .point-number {
    color: var(--primary-gold);
}

.point-content h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.point-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Decorative Divider */
.vm-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
    opacity: 0.3;
}

.vm-divider span {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.vm-divider span:last-child {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.vm-divider i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* Animations */
.vision-section {
    animation: fadeInUp 0.8s ease-out;
}

.mission-section {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .vm-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
        padding: 2.5rem;
    }

    .vm-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .mission-point {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .vision-mission {
        padding: 5rem 0;
    }

    .vm-header .section-title {
        font-size: 2.5rem;
    }

    .vm-title {
        font-size: 2rem;
    }

    .vm-statement {
        font-size: 1.1rem;
    }

    .vm-icon-float {
        width: 70px;
        height: 70px;
    }

    .vm-icon-float i {
        font-size: 1.8rem;
    }

    .mission-grid {
        gap: 1.5rem;
    }

    .mission-point {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vm-header .section-title {
        font-size: 2.2rem;
    }

    .vm-title {
        font-size: 1.8rem;
    }

    .point-number {
        font-size: 2.5rem;
    }

    .point-content h4 {
        font-size: 1.15rem;
    }

    .vm-divider {
        gap: 1.5rem;
    }

    .vm-divider span {
        width: 60px;
    }

    .vm-content {
        padding: 2rem;
    }
}


/* ===== LEADERSHIP SECTION ===== */
.leadership {
    padding: 6rem 0;
    background: #112250 !important;
    position: relative;
}

.leadership .section-title {
    color: var(--white);
}

.leadership-philosophy {
    text-align: center;
    margin: 3rem auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    border: 4px solid var(--border-light);
    max-width: 800px;
    position: relative;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(160, 108, 213, 0.3);
}

.philosophy-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.philosophy-text {
    font-size: 2rem;
    color: var(--accent-light) !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.philosophy-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Leadership Section Styling */
.leadership.section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.leadership.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(160, 108, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.leadership .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title */
.leadership .section-title {
    text-align: center;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Leadership Philosophy */
.leadership-philosophy {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 40px rgba(160, 108, 213, 0.3);
}

.philosophy-icon i {
    font-size: 2rem;
    color: var(--white);
}

.philosophy-text {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
    font-style: italic;
}

.leadership-philosophy p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    color: var(--text-light);
    opacity: 0.8;
}

.philosophy-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Leaders Grid - Vertical List Layout */
.leaders-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

/* Leader Card - Enhanced Horizontal Card */
.leader-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--border-light);
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s ease;
}

.leader-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.leader-card:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 80px rgba(160, 108, 213, 0.25);
    border-color: var(--primary-gold);
}

.leader-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(160, 108, 213, 0.03));
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.leader-card:hover::after {
    opacity: 1;
}

/* Leader Image Section */
.leader-image {
    background: var(--gradient-gold);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 320px;
    max-width: 320px;
}

.leader-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.leader-avatar {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    overflow: hidden;
}

.leader-avatar::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.leader-card:hover .leader-avatar::before {
    opacity: 1;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.leader-card:hover .leader-avatar {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(160, 108, 213, 0.35);
}

.leader-badge {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.leader-card:hover .leader-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-gold);
    transform: scale(1.05);
}

/* Leader Content */
.leader-content {
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(160, 108, 213, 0.02) 100%);
}

.leader-name {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.leader-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.5s ease;
}

.leader-card:hover .leader-name::after {
    width: 100%;
}

.leader-designation {
    color: var(--primary-gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.leader-designation::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

/* Leader Credentials */
.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.leader-credentials span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.leader-credentials span:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 108, 213, 0.3);
    border-color: var(--primary-gold);
}

.leader-credentials i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* Leader Bio */
.leader-bio {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1rem;
    flex: 1;
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

.leader-bio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Leader Expertise */
.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.leader-expertise span {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.08) 0%, rgba(160, 108, 213, 0.03) 100%);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.leader-expertise span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.leader-expertise span:hover::before {
    left: 0;
}

.leader-expertise span:hover {
    color: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(160, 108, 213, 0.3);
}

/* Experience Summary */
.experience-summary {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.experience-summary h3 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.exp-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.exp-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exp-stat:hover::before {
    opacity: 0.1;
}

.exp-stat:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.exp-stat i {
    font-size: 3rem;
    color: var(--light-gold);
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.exp-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    opacity: 0.7;
}

/* Core Strengths */
.core-strengths {
    text-align: center;
}

.core-strengths h4 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.strength-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.strength-tags span {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-light);
    border-radius: 30px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.strength-tags span:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(160, 108, 213, 0.4);
}

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

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

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leader-card {
        flex-direction: column;
    }

    .leader-image {
        min-width: 100%;
        max-width: 100%;
        padding: 40px 30px;
    }

    .leader-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .leadership.section {
        padding: 60px 15px;
    }

    .leadership .section-title {
        font-size: 2.2rem;
    }

    .philosophy-text {
        font-size: 1.8rem;
    }

    .leaders-grid {
        gap: 30px;
        padding: 15px;
    }

    .leader-card {
        flex-direction: column;
    }

    .leader-image {
        min-width: 100%;
        max-width: 100%;
    }

    .leader-name {
        font-size: 1.8rem;
    }

    .leader-content {
        padding: 30px 25px;
    }

    .experience-summary {
        padding: 30px 20px;
    }

    .experience-summary h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .core-strengths h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .leader-name {
        font-size: 1.6rem;
    }

    .leader-avatar {
        width: 130px;
        height: 130px;
        font-size: 2.5rem;
    }

    .leader-content {
        padding: 25px 20px;
    }

    .leader-bio {
        padding-left: 15px;
    }

    .experience-stats {
        grid-template-columns: 1fr;
    }

    .exp-stat i {
        font-size: 2.5rem;
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }

    .leader-credentials {
        flex-direction: column;
    }

    .strength-tags {
        gap: 0.5rem;
    }
}

/* ===== BREADCRUMBS SECTION WITH HEADING ===== */
.breadcrumbs-section {
    background: #112250;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 4rem;
}

/* Background Pattern */
.breadcrumbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 50%, rgba(160, 108, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(160, 108, 213, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated Background Elements */
.breadcrumbs-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(160,108,213,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    opacity: 0.5;
}

@keyframes drift {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Page Title */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
    text-transform: uppercase;
    display: inline-block;
}

/* Title Decorative Elements */
.page-title::before,
.page-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
    transform: translateY(-50%);
}

.page-title::before {
    right: calc(100% + 30px);
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.page-title::after {
    left: calc(100% + 30px);
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* Breadcrumb Navigation */
.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(160, 108, 213, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.breadcrumb-item a:hover::before {
    width: 100%;
    height: 100%;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.breadcrumb-item a i {
    font-size: 1.1rem;
    color: var(--text-light);
}

.breadcrumb-item.active {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--primary-gold);
    font-weight: 600;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

/* Alternative Centered Style with Box */
.breadcrumbs-section.boxed .container {
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--border-light);
}

/* Alternative Light Style */
.breadcrumbs-section.light {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 3rem 0;
}

.breadcrumbs-section.light .page-title {
    color: var(--primary-dark);
}

.breadcrumbs-section.light .breadcrumb-item a {
    color: var(--text-dark);
}

.breadcrumbs-section.light .breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumbs-section.light .breadcrumb-item.active {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(160, 108, 213, 0.1) 0%, rgba(160, 108, 213, 0.05) 100%);
}

.breadcrumbs-section.light .breadcrumb-separator {
    color: var(--border-light);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumbs-section {
        padding: 3rem 0 2rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-title::before,
    .page-title::after {
        width: 30px;
    }

    .page-title::before {
        right: calc(100% + 15px);
    }

    .page-title::after {
        left: calc(100% + 15px);
    }

    .breadcrumb-list {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .page-title::before,
    .page-title::after {
        display: none;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .breadcrumb-item:first-child a span,
    .breadcrumb-item.active span {
        display: inline;
    }

    .breadcrumb-item a {
        padding: 0.4rem 0.8rem;
    }
}



/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

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

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

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

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.text-gold {
    color: var(--primary-gold);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: var(--text-dark);
}

.text-dark {
    color: var(--primary-dark);
}

.bg-white {
    background: var(--white);
}

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

.bg-dark {
    background: var(--primary-dark);
}

.bg-gold {
    background: var(--primary-gold);
}

/* Contact Us */

/* Contact Section Styling */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 25px;
    font-weight: 400;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Contact Card */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Card Title */
.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Card Content */
.card-content {
    color: var(--text-dark);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content>p {
    margin-bottom: 15px;
}

.card-content strong {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* Address Block */
.address-block {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.address-block i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.address-block>div {
    flex: 1;
}

.address-block p {
    margin: 3px 0;
    line-height: 1.5;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Multiple Addresses Container */
.addresses-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
    flex: 1;
}

.addresses-container .address-block {
    margin: 0;
}

.addresses-container .address-block:last-child {
    margin-bottom: 0;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 20px 0 15px 0;
    flex-shrink: 0;
}

/* Highlight Text */
.highlight-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
    border-radius: 10px;
    color: var(--primary-dark);
    font-weight: 500;
    margin-top: auto;
    flex-shrink: 0;
}

.highlight-text i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(160, 108, 213, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p:not(.label) {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Quick Connect Section */
.quick-connect {
    background: #112250;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease;
}

.quick-connect h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 600;
}

/* Connect Options */
.connect-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Connect Button */
.connect-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    z-index: 0;
}

.connect-btn:hover::before {
    width: 100%;
}

.connect-btn:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.connect-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.connect-btn span {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .quick-connect {
        padding: 40px 20px;
    }

    .quick-connect h3 {
        font-size: 1.5rem;
    }

    .connect-options {
        flex-direction: column;
        align-items: stretch;
    }

    .connect-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.6rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }
}

.space-between {
    display: flex;
    flex-direction: column;
    gap: 87px;
}

/* Hidden by default */
.custom-br {
  display: none;
}

/* Visible on medium screens (≥768px) */
@media (min-width: 1144px) {
  .custom-br {
    display: block;
  }
}

/* Hidden again on large screens (≥992px) */
@media (min-width: 1348px) {
  .custom-br {
    display: none;
  }
}
