/* Global Vars & Reset */
:root {
    --eagle-green: #0E4D38;
    --eagle-gold: #D4AF37;
    --eagle-dark: #111111;
    --eagle-light: #F3F4F6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--eagle-light);
    color: var(--eagle-dark);
    line-height: 1.6;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* Color Helpers */
.text-gold {
    color: var(--eagle-gold) !important;
}

.text-green {
    color: var(--eagle-green) !important;
}

.extra-small {
    font-size: 0.75rem !important;
}

.bg-gold {
    background-color: var(--eagle-gold) !important;
}

.bg-green {
    background-color: var(--eagle-green) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--eagle-gold);
    color: #111111;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: #ffffff;
    color: var(--eagle-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section V3 - Contained Luxury */
.hero-v3 {
    min-height: 100vh;
    background: #080808;
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
}

.hero-v3::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 77, 56, 0.3) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-v3 .container {
    position: relative;
    z-index: 10;
}

.hero-v3-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-v3-title span {
    background: linear-gradient(135deg, #D4AF37 0%, #fff 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-gradient 3s linear infinite;
}

@keyframes shine-gradient {
    to {
        background-position: 200% center;
    }
}

.hero-v3-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 550px;
    margin-bottom: 45px;
    border-left: 2px solid #D4AF37;
    padding-left: 30px;
    line-height: 1.8;
}

.hero-v3-image-frame {
    position: relative;
    padding: 20px;
}

.hero-v3-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 4px solid #D4AF37;
    border-left: 4px solid #D4AF37;
}

.hero-v3-image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid #D4AF37;
    border-right: 4px solid #D4AF37;
}

.hero-v3-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: transform 0.5s ease;
}

.hero-v3-image-frame:hover .hero-v3-img {
    transform: scale(1.02);
}

.stats-badge-floating {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #0E4D38;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 20;
}

/* Hero Stats Boxes */
.hero-stats-row {
    margin-top: 80px;
    position: relative;
    z-index: 15;
}

.hero-stats-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    height: 100%;
}

.hero-stats-box:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--eagle-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.h-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--eagle-gold);
    display: block;
    margin-bottom: 5px;
}

.h-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.h-stat-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--eagle-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMove 2s infinite;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.text-muted-light {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Capability Cards V3 */
.capability-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(14, 77, 56, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.capability-img-wrapper {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.capability-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.capability-card:hover .capability-img-wrapper img {
    transform: scale(1.1);
}

.capability-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 77, 56, 0.8) 0%, transparent 60%);
    opacity: 0.8;
}

.capability-icon-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eagle-green);
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon-floating {
    background: var(--eagle-gold);
    color: #fff;
    transform: rotate(10deg);
}

.capability-body {
    padding: 20px;
    position: relative;
}

.capability-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--eagle-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.capability-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eagle-green);
    margin-bottom: 8px;
}

.capability-link {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eagle-green);
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 12px;
}

.capability-link:hover {
    background: var(--eagle-gold);
    color: #fff;
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.capability-link i {
    transition: transform 0.3s ease;
}

.capability-link:hover i {
    transform: translateX(3px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Stats Redesign V3 */
.stats-v3 {
    background: #080808;
    position: relative;
    padding: 100px 0;
}

.metric-card {
    background: transparent;
    padding: 40px;
    border-radius: 30px;
    transition: all 0.5s ease;
    border: 2px solid var(--eagle-gold);
}

.metric-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.metric-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--eagle-gold);
    font-size: 28px;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon-box {
    background: var(--eagle-gold);
    color: #111;
    transform: rotate(15deg);
}

.metric-value-v3 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.metric-label-v3 {
    color: var(--eagle-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
}

.metric-desc-v3 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Featured Section */
.featured-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 15;
}

/* Section Title Styling */
.section-tag {
    color: var(--eagle-gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--eagle-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--eagle-gold);
}

/* Strategic Future V4 Styles */
.vision-v4-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vision-v4-card.active {
    background: linear-gradient(135deg, rgba(14, 77, 56, 0.2) 0%, rgba(5, 5, 5, 1) 100%);
    border-color: var(--eagle-green);
}

.vision-v4-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--eagle-gold);
    transform: translateY(-10px);
}

.vision-v4-icon {
    width: 60px;
    height: 60px;
    background: var(--eagle-gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 24px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.vision-v4-card:hover .vision-v4-icon {
    transform: rotate(10deg) scale(1.1);
}

.vision-v4-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Page Header (Internal Pages) */
.page-header {
    padding: 160px 0 80px;
    background: var(--eagle-green);
    color: white;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.hover-gold:hover {
    color: var(--eagle-gold) !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Navbar Scrolled State (managed by components.js) */
.shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
}

/* Competitive Edge V5 Styles */
.edge-v5 {
    background: linear-gradient(180deg, #050505 0%, #081a14 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.edge-v5::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(100px);
}

.edge-card-v5 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 40px;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.edge-card-v5:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--eagle-gold);
    transform: translateY(-10px);
}

.edge-number-float {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
    transition: all 0.5s ease;
}

.edge-card-v5:hover .edge-number-float {
    color: rgba(212, 175, 55, 0.1);
    top: -30px;
}

.edge-icon-v5 {
    width: 70px;
    height: 70px;
    background: var(--eagle-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 28px;
    margin-bottom: 35px;
    box-shadow: 0 15px 30px rgba(14, 77, 56, 0.3);
}

.edge-title-v5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.edge-desc-v5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
}

.edge-highlight-v5 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.edge-highlight-v5 i {
    color: var(--eagle-gold);
    font-size: 14px;
}

.edge-highlight-v5 span {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Radiating Legacy Section Styles */
.radiating-section {
    position: relative;
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
}

/* CTA Form Styles */
.cta-form-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    z-index: 10;
}

.cta-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cta-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--eagle-gold);
    outline: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-input option {
    background: #fff;
    color: #000;
}

/* Footprint Section Background Typography */
.footprint-section {
    position: relative;
}

.footprint-section::before {
    content: 'EXCELLENCE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: var(--eagle-green);
    opacity: 0.02;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5px;
}

/* Capabilities Section Background Typography */
.capabilities-section {
    position: relative;
}

.capabilities-section::before {
    content: 'SOLUTIONS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: var(--eagle-green);
    opacity: 0.02;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5px;
}

.cta-form-submit {
    background: var(--eagle-gold);
    color: #000;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.cta-form-submit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 77, 56, 0.3);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--eagle-gold), transparent);
    opacity: 0.8;
}

/* About Page Refinements */
.about-header {
    background: linear-gradient(rgba(14, 77, 56, 0.9), rgba(17, 17, 17, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

.about-title-impact {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.about-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--eagle-gold);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 800;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Services Page Specific Refinements */
.service-monumental {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.service-num-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(14, 77, 56, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.service-v5-card {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(14, 77, 56, 0.05);
    border: 1px solid rgba(14, 77, 56, 0.03);
    transition: all 0.5s ease;
}

.service-v5-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 60px 100px rgba(14, 77, 56, 0.1);
    border-color: var(--eagle-gold);
}

.service-v5-icon-box {
    width: 80px;
    height: 80px;
    background: var(--eagle-light-bg);
    color: var(--eagle-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 35px;
    font-size: 32px;
    transition: all 0.4s ease;
}

.service-v5-card:hover .service-v5-icon-box {
    background: var(--eagle-gold);
    color: #000;
    transform: rotate(10deg);
}

.benefit-pill-v5 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--eagle-green);
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.radiating-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(14, 77, 56, 0.03);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
    white-space: nowrap;
}

.story-img-container {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.story-img-main {
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.story-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: var(--eagle-green);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: #fff;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(14, 77, 56, 0.3);
}

.story-feature-box {
    background: var(--eagle-light-bg, #f8f9fa);
    padding: 35px;
    border-radius: 30px;
    border: 1px solid rgba(14, 77, 56, 0.05);
    transition: all 0.4s ease;
}

.story-feature-box:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 77, 56, 0.08);
    border-color: var(--eagle-gold);
}

.story-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--eagle-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Luxury CTA Redesign Styles */
.cta-luxury {
    background: #050505;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.cta-title-impact {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    color: #fff;
    text-transform: uppercase;
}

.cta-tag-luxury {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--eagle-gold);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.cta-btn-premium {
    background: var(--eagle-gold);
    color: #000;
    padding: 22px 50px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    position: relative;
    text-decoration: none;
}

.cta-btn-premium:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    color: #000;
}

.cta-architectural-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2), transparent);
    left: 50%;
    top: 0;
    z-index: 1;
}

/* Strategic Future V5 Styles */
.strategic-v5 {
    background: #080808;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.strategic-v5::before {
    content: 'VISION 2030';
    position: absolute;
    top: 5%;
    right: -5%;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.strategic-card-v5 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 3px solid rgba(212, 175, 55, 0.4);
    padding: 60px 40px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 2;
}

.strategic-card-v5:hover {
    background: rgba(14, 77, 56, 0.2);
    border-color: var(--eagle-gold);
    transform: translateY(-15px);
}

.strategic-card-v5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--eagle-gold);
    transition: width 0.5s ease;
}

.strategic-card-v5:hover::after {
    width: 100%;
}

.s-v5-icon {
    font-size: 40px;
    color: var(--eagle-gold);
    margin-bottom: 40px;
    display: block;
}

.s-v5-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.s-v5-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.s-v5-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 10px;
    font-weight: 900;
    color: var(--eagle-gold);
    letter-spacing: 3px;
    opacity: 0.3;
}

.strategic-card-v5:hover .s-v5-tag {
    opacity: 1;
}

/* CEO Section V5 Redesign */
.ceo-v5 {
    background: #fff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.ceo-image-container-v5 {
    position: relative;
    padding: 30px;
}

.ceo-img-v5 {
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.ceo-frame-v5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 15px solid var(--eagle-light-bg);
    border-radius: 40px;
    z-index: 1;
}

.ceo-signature-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--eagle-green);
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.ceo-signature-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--eagle-gold);
}

.ceo-quote-v5 {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    position: relative;
    padding-left: 60px;
}

.ceo-quote-v5::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: var(--eagle-gold);
    opacity: 0.3;
}

/* Section Dividers */
.section-divider-premium {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

/* Leadership Section Decoration */
.leadership-section-bg {
    position: relative;
    background: #fff;
}

.leadership-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--eagle-gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.leadership-section-bg::after {
    content: 'LEADERSHIP';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: var(--eagle-green);
    opacity: 0.02;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5px;
}

/* Leadership Cards - Premium Redesign */
.leadership-card {
    background: #fff;
    border: 1px solid #000000;
    padding: 50px 40px;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(14, 77, 56, 0.12);
    transform: translateY(-15px);
    z-index: 1;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--eagle-gold), transparent);
    transform: scaleX(1);
    transition: transform 0.5s ease;
    z-index: 2;
}



.leadership-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(3);
    transition: all 0.6s ease;
}

.leadership-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 100px rgba(14, 77, 56, 0.18);
}

.leadership-role {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--eagle-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50px;
}

.leadership-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--eagle-green);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.leadership-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: var(--eagle-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: scale(1.1);
}



.contact-item:hover {
    color: var(--eagle-green);
}

/* Marquee Styles */
.hero-marquee {
    background: var(--eagle-green);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
    width: 100%;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--eagle-gold);
    border-bottom: 1px solid var(--eagle-gold);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.marquee-item i {
    color: var(--eagle-gold);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-v3 {
    margin-bottom: 0px;
}

/* Service Card V7 Redesign */
/* Service Card V9 - Static 2-Row Design */
.service-card-v9 {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.s-v9-img-container {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.s-v9-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-v9:hover .s-v9-img {
    transform: scale(1.1);
}

.s-v9-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(14, 77, 56, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-v9:hover .s-v9-overlay {
    opacity: 1;
}

.s-v9-icon-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--eagle-gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-v9:hover .s-v9-icon-box {
    transform: translateY(-10px) rotate(15deg);
    background: #fff;
    color: var(--eagle-green);
}

.s-v9-content {
    padding: 35px 30px;
    flex-grow: 1;
    background: #fff;
    transition: background 0.4s ease;
}

.s-v9-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--eagle-green);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.s-v9-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card-v9:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(14, 77, 56, 0.12);
    border-color: var(--eagle-gold);
}

.service-card-v9:hover .s-v9-content {
    background: #fafafa;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    display: none !important;
}