/* -----------------------------------------
    1. GOOGLE FONTS & VARIABLES
----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #1D2245;      /* Updated: Brand Navy */
    --gold: #F7B500;      /* Updated: Brand Gold */
    --orange: #F7B500;    /* Mapped Orange to Gold */
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --border-color: #eeeeee;
    --text-muted: #666666;
    --transition: all 0.3s ease;
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
}
 
 .method i {
     color: #FFFFFF !important;
     /* Forces the icon to be pure white */
     opacity: 1;
     /* Ensures it is fully bright */
 }
/* --- Corporate Button Styled to Match Image --- */
.btn-corp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    
    /* Background and Text Colors from the photo */
    background-color: #FFB800; /* The vibrant gold/yellow */
    color: #152238 !important; /* The Navy blue text */
    
    /* Shape and Sizing */
    padding: 12px 35px;
    border-radius: 50px; /* Creates the pill/capsule shape */
    
    /* Typography */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    
    /* The Glow Shadow from the photo */
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.btn-corp-link:hover {
    background-color: #e6a600; /* Slightly darker on hover */
    transform: translateY(-2px); /* Lifts up slightly */
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6); /* Glow intensifies */
}

/* Adding the arrow spacing */
.btn-corp-link::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-corp-link:hover::after {
    transform: translateX(5px); /* Arrow slides right on hover */
}
/* -----------------------------------------
    2. GLOBAL RESETS
----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
}

a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative { position: relative; }

/* -----------------------------------------
    3. NAVIGATION & SEARCH
----------------------------------------- */
.public-nav {
    width: 100%;
    background: var(--white);
    padding: 10px 0;
    border-bottom: 2px solid var(--navy); /* Updated Color */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.public-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}



.main-menu ul { display: flex; gap: 30px; }
.main-menu ul li a { font-size: 17px; font-weight: 600; color: var(--navy); }
.main-menu ul li a.active, .main-menu ul li a:hover { color: var(--gold); } /* Updated Color */

.search-container { flex: 0 1 300px; }
.search-form {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid var(--navy); /* Updated Color */
}
.search-form input { border: none; background: none; outline: none; padding: 8px; width: 100%; font-size: 0.95rem; }
.search-form button { background: none; border: none; color: var(--navy); cursor: pointer; }

/* -----------------------------------------
    4. FIXED DROPDOWN SYSTEM
----------------------------------------- */
.dropdown-content {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0;
    right:0%;
    min-width: 280px;
    background-color: var(--white);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
    z-index: 9999; 
    border-top: 3px solid var(--gold); /* Updated Color */
    border-radius: 0 0 8px 8px;
    padding: 15px 0;
}

.dropdown-content.show { display: block; }

.dropdown-submenu {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-submenu:last-child { border-bottom: none; }

.submenu-title {
    display: block;
    padding: 0 20px 5px;
    font-size: 0.7rem;
    color: var(--gold); /* Updated Color */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-content a {
    color: var(--navy);
    padding: 8px 25px;
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: #fffcf0 !important; /* Updated soft gold tint */
    color: var(--gold); /* Updated Color */
    padding-left: 35px;
}

/* -----------------------------------------
    5. HERO SECTION
----------------------------------------- */
.hero {
    background-color: var(--navy); /* Updated Color */
    background-image: linear-gradient(rgba(29, 34, 69, 0.8), rgba(29, 34, 69, 0.8)), 
                      url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--gold); /* Updated Color */
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--gold); /* Updated: Brand Gold */
    color: var(--navy); /* Updated: Brand Navy */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}
 
/* ADD THIS TO YOUR .hero CLASS */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden; /* Keeps the video inside the header */
}

/* VIDEO STYLING */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* THE NAVY COLOR OVERLAY */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 34, 69, 0.75); /* Your Navy Blue at 75% opacity */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Ensures text stays above video and overlay */
}
/* -----------------------------------------
    6. FEATURE SLIDER (SMOOTH TRANSITION)
----------------------------------------- */
.slider-wrapper { overflow: hidden; width: 100%; position: relative; padding: 20px 0; }
.feature-container { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    width: 100%; 
}
.feature-box { 
    flex: 0 0 calc(50% - 10px); 
    margin-right: 20px; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid var(--navy); /* Updated Color */
    border-radius: 12px;
    padding: 20px;
}

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(29, 34, 69, 0.9); /* Updated: Navy opacity */
    color: var(--gold); /* Updated Color */
    border: none;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 100;
}


/* -----------------------------------------
    7. RESPONSIVE MEDIA QUERIES
----------------------------------------- */
@media (max-width: 992px) {
    .main-menu { display: none; }
    .pricing-grid-moringa { flex-direction: column; align-items: center; background-color: transparent; }
}

/* Course Grid & Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: #fff;
    border: 2px solid var(--navy); /* Updated Color */
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card-body { padding: 30px; }

.card-body h3 {
    color: var(--gold); /* Updated Color */
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.card-tags span {
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-learn {
    display: block;
    background: var(--navy); /* Updated Color */
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-learn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* -----------------------------------------
    8. MAIN FOOTER STYLING
----------------------------------------- */
.main-footer {
    background-color: #0b1126; /* Deep brand navy */
    color: #ffffff;
    padding: 60px 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h3 {
    color: var(--gold); /* Updated: Brand Gold */
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold); /* Updated: Brand Gold */
}

.tagline {
    color: #a0aec0;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold); /* Updated Color */
    color: var(--navy);
}

/* List Links (Quick Links & FAQs) */
.footer-col ul {
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold); /* Updated Color */
    padding-left: 5px;
}

/* Contact Methods */
.method {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

/* Styling the Ryantech link */
.partner-link {
    color: #007bff;
    /* Professional Blue */
    text-decoration: none;
    /* Removes the underline */
    font-weight: bold;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: var(--orange);
    /* Turns orange when you hover, matching your brand */
    text-decoration: underline;
}
.method a {
    color: #cbd5e0;
}

.method i {
    color: var(--gold); /* Updated Color */
    width: 15px;
}

/* Bottom Bar */
.footer-bottom {
    background: #050814; /* Darker Navy */
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #718096;
    font-size: 0.8rem;
}

/* -----------------------------------------
    9. ABOUT PAGE FAQ STYLING
----------------------------------------- */
.about-faqs {
    max-width: 800px; 
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    transition: var(--transition);
    scroll-margin-top: 120px; 
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.faq-item h4::before {
    content: "?";
    background: var(--gold); /* Updated Color */
    color: var(--navy);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 800;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 39px;
}

/* Hover effect to show active focus */
.faq-item:target {
    background-color: #fffcf0; /* Soft Gold Tint */
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold); /* Updated Color */
}

/* Map specific styling */
.google-map h3 {
    color: var(--gold); /* Updated Color */
    margin-bottom: 25px;
}

.map-container {
    box-shadow: 0 4px 15px rgba(29, 34, 69, 0.3); /* Navy Shadow */
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--navy);
}
/* -----------------------------------------
    10. COURSE HEADER & PRICING THEME
----------------------------------------- */
.course-header-title {
    text-align: center;
    padding: 60px 0 20px;
}

.course-header-title h1 {
    font-size: 2.8rem;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: var(--gold); /* Brand Gold */
    margin: 10px auto;
    border-radius: 10px;
}

/* Pricing Section Logic */
.pricing-comparison {
    background-color: var(--peach-bg);
    padding: 80px 0;
    width: 100%;
}

.pricing-grid-moringa {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 25px;
    justify-content: center;
    align-items: stretch;
}

/* The Card Styling */
.m-price-card {
    background: var(--white);
    border: 2px solid var(--navy); /* Navy authority border */
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(29, 34, 69, 0.1);
    transition: var(--transition);
}

.m-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(29, 34, 69, 0.2);
}

.m-price-card h2, .m-card-title {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold); /* Gold Accent */
    padding-bottom: 10px;
}

/* List Detail Alignment */
.m-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.m-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dotted var(--navy);
    font-size: 0.95rem;
}

.m-details-list li span {
    color: var(--text-muted);
    font-weight: 500;
}

.m-details-list li strong {
    color: var(--navy);
    text-align: right;
}

.m-details-list a {
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
}

.m-short-desc {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-height: 60px;
}

/* Primary Apply Now Button */
.m-apply-btn {
    display: block;
    background: var(--navy);
    color: var(--white) !important;
    text-align: center;
    padding: 18px;
    border: 2px solid var(--navy);
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: var(--transition);
}

.m-apply-btn:hover {
    background: var(--gold);
    color: var(--navy) !important;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* -----------------------------------------
    11. FINAL RESPONSIVE OVERRIDES
----------------------------------------- */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .pricing-grid-moringa {
        flex-wrap: wrap;
    }
    .m-price-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .m-price-card {
        flex: 1 1 100%;
        padding: 30px 20px;
    }
    .course-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
}

/* -----------------------------------------
    FILTER SECTION STYLING
----------------------------------------- */
.filter-section {
    padding: 40px 0 20px;
    background-color: var(--white);
    text-align: center;
}

.filter-pill-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allows pills to wrap on mobile */
    margin-bottom: 20px;
}

.filter-pill {
    background: transparent;
    border: 2px solid var(--navy); /* Brand Navy Border */
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* Hover State */
.filter-pill:hover {
    background-color: #f0f2f5;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Active State (When Selected) */
.filter-pill.active {
    background-color: var(--navy);
    color: var(--gold); /* Gold text on Navy background */
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(29, 34, 69, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .filter-pill {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .filter-pill-container {
        gap: 10px;
    }
}
/* 1. Global Responsive Setup */
:root {
    --navy: #1D2245;
    --gold: #F7B500;
    --white: #ffffff;
    --bg-peach: #FFEADB; /* The soft background from your images */
    --transition: all 0.3s ease;
}

.pricing-comparison {
    background-color: var(--bg-peach);
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

/* 2. The Grid (Laptop View) */
.pricing-grid-moringa {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns on laptop */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. Modern Card Shape & Size */
.m-price-card {
    background: var(--white);
    border-radius: 12px; /* Smoother, more professional curve */
    padding: 25px;       /* Reduced padding to make cards smaller */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(29, 34, 69, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.m-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 34, 69, 0.15);
    border-color: var(--gold);
}

/* 4. Card Content Styling */
.m-price-card h2 {
    color: var(--navy);
    font-size: 1.4rem; /* Scaled down header */
    margin-bottom: 20px;
    font-weight: 800;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.m-details-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.m-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted #ddd;
    font-size: 0.9rem; /* Smaller text for compact feel */
}

.m-details-list li strong {
    color: var(--navy);
    font-weight: 700;
}

.m-details-list a {
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
}

/* 5. Responsive Buttons */
.m-apply-btn {
    display: block;
    background: var(--navy);
    color: var(--white) !important;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--navy);
}

.m-apply-btn:hover {
    background: var(--gold);
    color: var(--navy) !important;
    border-color: var(--gold);
}

/* 6. Phone/Mobile Responsive Logic */
@media (max-width: 992px) {
    .pricing-grid-moringa {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 650px) {
    .pricing-grid-moringa {
        grid-template-columns: 1fr; /* 1 column on phones */
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 2rem; /* Shrink hero text for phone screens */
    }
    
    .m-price-card {
        padding: 20px; /* Even smaller padding on mobile */
    }
}

/* 1. Main Footer Container - Reducing overall padding */
.main-footer {
    background-color: #0b0e21; /* Dark Navy */
    color: #ffffff;
    padding: 30px 0 15px 0; /* Reduced top/bottom padding */
    font-size: 0.85rem; /* Slightly smaller font for professionalism */
}

/* 2. The Grid - Aligning all 4 columns perfectly */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr 1fr; /* Optimized column widths */
    gap: 20px;
    align-items: start;
}

/* 3. Headers - Smaller and Gold */
.footer-col h3 {
    color: #F7B500;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* 4. Contact Methods - Tighter spacing */
.method {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Reduced gap */
}

.method i, .method img {
    width: 16px;
    margin-right: 10px;
    color: #F7B500;
}

.method a {
    color: #ccc;
    text-decoration: none;
}

/* 5. The Map - This is the key to reducing height */
.google-map {
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    height: 120px; /* Force map to stay short */
    border-radius: 8px;
    filter: grayscale(100%) invert(90%); /* Makes map match the dark theme */
}

/* 6. Social Icons - Horizontal and small */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-socials a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* 7. Quick Links & FAQs - Removing bullets */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #F7B500;
}

/* 8. WhatsApp Widget - Float it so it doesn't take space */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: #25d366;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.widget-content {
    margin-right: 10px;
    color: white;
    font-size: 0.75rem;
    line-height: 1.2;
}

.whatsapp-img-container img {
    width: 25px;
    height: 25px;
}

/* 9. Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
    color: #666;
    font-size: 0.75rem;
}
 /* --- Corporate Button Styled to Match Image --- */
 .btn-corp-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-top: 25px;

     /* Background and Text Colors from the photo */
     background-color: #FFB800;
     /* The vibrant gold/yellow */
     color: #152238 !important;
     /* The Navy blue text */

     /* Shape and Sizing */
     padding: 12px 35px;
     border-radius: 50px;
     /* Creates the pill/capsule shape */

     /* Typography */
     text-decoration: none;
     font-weight: 700;
     font-size: 1.05rem;
     transition: all 0.3s ease;

     /* The Glow Shadow from the photo */
     box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
 }

 .btn-corp-link:hover {
     background-color: #e6a600;
     /* Slightly darker on hover */
     transform: translateY(-2px);
     /* Lifts up slightly */
     box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
     /* Glow intensifies */
 }

 /* Adding the arrow spacing */
 .btn-corp-link::after {
     content: '→';
     margin-left: 10px;
     font-size: 1.2rem;
     transition: transform 0.3s ease;
 }

 .btn-corp-link:hover::after {
     transform: translateX(5px);
     /* Arrow slides right on hover */
 }