:root {
    /* Logo Colors */
    /* Primary: Yellow (Sun) */
    --primary-color: #fbde04;
    /* Secondary: Blue (Text/Segments) */
    --secondary-color: #2fe7f0;
    /* Accents */
    --dark-bg: #072e58;
    --light-bg: #f4f6f9;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #072e58;
}

/* Navbar Customization */
.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(7, 46, 88, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    /* Remove default padding to let image dictate size */
}

.navbar-logo {
    max-height: 80px;
    /* Larger base size */
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        max-height: 60px;
        /* Smaller on mobile */
    }
}

.nav-link {
    font-weight: 500;
    color: #072e58 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #072e58;
    /* Corporate Navy */
    border-color: #072e58;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #072e58;
    border-color: #072e58;
    color: white;
}

/* Hero Section Carousel */
/* Hero Section Carousel */
.hero-carousel {
    position: relative;
    height: 75vh;
    /* High impact height */
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-color: #333;
    /* Fallback color */
}

.hero-carousel .carousel-item {
    height: 75vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Consistent dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    /* Reduced padding */
    text-align: center;
    color: white;
    max-width: 600px;
    /* Reduced from 800px */
    width: 85%;
    /* Reduced from 90% */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

/* Animate card on active slide */
.carousel-item.active .glass-card {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Hero Mobile */
@media (max-width: 768px) {

    .hero-carousel,
    .hero-carousel .carousel-item {
        min-height: 80vh;
        height: auto;
    }

    .hero-overlay {
        position: relative !important;
        height: auto !important;
        min-height: 80vh;
        padding-top: 80px;
        /* Header clearance */
        padding-bottom: 50px;
        display: flex;
        align-items: flex-end;
        /* Align to bottom can look nice, or center */
        justify-content: center;
    }

    .glass-card {
        padding: 1.5rem 1rem !important;
        /* Smaller padding */
        width: 90% !important;
        /* Keep it away from edges */
        max-width: 100%;
        /* Limit width on mobile */
        margin-bottom: 20px;
    }

    .glass-card .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

.glass-card h1 {
    /* Fluid typography: min 1.5rem, preferred 5vw, max 3.5rem */
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.glass-card p {
    /* Fluid typography: min 0.9rem, preferred 2vw, max 1.25rem */
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal Form Styling */
.modal-content label,
.modal-content input,
.modal-content select,
.modal-content h6,
.modal-content p,
.modal-content .form-check-label {
    color: #072e58 !important;
}

.modal-content input::placeholder {
    color: rgba(7, 46, 88, 0.6) !important;
}

/* Custom Form Styles */
.form-control,
.form-select {
    border: 1px solid rgba(7, 46, 88, 0.2);
    /* Subtle Navy border */
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #072e58;
}

.form-control:focus,
.form-select:focus {
    border-color: #072e58;
    /* Solid Navy border on focus */
    box-shadow: none;
    /* No shadow as requested */
    background-color: #ffffff;
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #072e58;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Group Styles (if used) */
.input-group-text {
    background-color: #e9ecef;
    border: 2px solid #e9ecef;
    border-right: none;
    color: #072e58;
}

.input-group .form-control:focus {
    border-color: var(--secondary-color);
}

/* ... existing styles ... */

.z-index-1 {
    z-index: 1;
}

/* Typing Effect Cursor */
.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary-color);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Fade In Delays */
.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.5s;
    /* Increased delay to wait for typing */
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 3s;
}

/* Pulse Animation for Button */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 238, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #bbb;
    padding: 60px 0 30px;
}

footer h5 {
    color: white;
}

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

/* Utilities */
.text-primary {
    color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--primary-color) !important;
}

/* Hover effects */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(7, 46, 88, 0.1) !important;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* References Section - Brand Ticker (Text Based) */
.brand-ticker {
    background: white;
    height: 100px;
    /* Compact height */
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-track {
    animation: scroll-ticker 20s linear infinite;
    /* Faster speed for text */
    display: flex;
    white-space: nowrap;
    width: calc(250px * 18);
    /* 18 items total, 250px each */
    align-items: center;
    height: 100%;
}

/* Pause on hover */
.brand-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set of 6 items (1500px) */
        transform: translateX(-1500px);
    }
}

.brand-item {
    width: 250px;
    /* Fixed width */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 100%;
}

.brand-item img {
    max-height: 60px;
    /* Constrain height */
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Fixed Quote Button */
.fixed-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(45deg, var(--secondary-color), #072e58);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(7, 46, 88, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-quote-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(7, 46, 88, 0.4);
    color: white;
}

.navbar-quote-btn,
.mobile-quote-btn {
    background: linear-gradient(45deg, var(--secondary-color), #072e58);
    border: none;
    color: white !important;
    box-shadow: 0 4px 15px rgba(7, 46, 88, 0.2);
    transition: all 0.3s ease;
}

.navbar-quote-btn:hover,
.mobile-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 46, 88, 0.3);
    color: white !important;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.fullscreen-menu li {
    margin: 20px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.fullscreen-menu.active li {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger delays for menu items */
.fullscreen-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
}

.fullscreen-menu.active li:nth-child(6) {
    transition-delay: 0.6s;
}

.fullscreen-menu.active li:nth-child(7) {
    transition-delay: 0.7s;
}

.fullscreen-menu.active li:nth-child(8) {
    transition-delay: 0.8s;
}

/* Quote Button Special Entry */
.fullscreen-menu li:last-child {
    transform: translateY(100px);
    /* Start from lower down */
}

.fullscreen-menu.active li:last-child {
    transform: translateY(0);
}

.fullscreen-menu a {
    font-size: 2rem;
    font-weight: 700;
    color: #072e58;
    text-decoration: none;
    position: relative;
}

.fullscreen-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Service Process Timeline */
.process-roadmap {
    position: relative;
    padding: 50px 0;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 20px;
    /* Space for icon sitting mostly above line */
}

/* The Timeline Line (Desktop) */
@media (min-width: 992px) {
    .process-roadmap::before {
        content: '';
        position: absolute;
        top: 90px;
        /* Aligned with center of icon (20px pad + 40px half-icon) */
        left: 0;
        right: 0;
        height: 4px;
        /* Gradient from Yellow (Start) to Navy (End) */
        background: linear-gradient(90deg, #fbde04, #072e58);
        /* Dashed effect using mask */
        -webkit-mask-image: linear-gradient(to right, #000 60%, transparent 40%);
        -webkit-mask-size: 20px 100%;
        mask-image: linear-gradient(to right, #000 60%, transparent 40%);
        mask-size: 20px 100%;
        mask-repeat: repeat-x;
        z-index: 1;
        border-radius: 4px;
    }
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #072e58;
    /* Corporate Navy Background */
    border-radius: 50%;
    border: 3px solid #fbde04;
    /* Yellow Border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    /* Space between icon and text */
    /* Glowing Effect */
    box-shadow: 0 0 0 5px rgba(251, 222, 4, 0.3), 0 0 20px rgba(251, 222, 4, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 5;
    /* Above the line */
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: white;
    /* White icon on Navy bg */
}

/* Hover Effects */
.process-step:hover .step-icon-wrapper {
    transform: scale(1.1);
    background: #fbde04;
    border-color: #072e58;
    box-shadow: 0 0 0 8px rgba(7, 46, 88, 0.2), 0 0 30px rgba(7, 46, 88, 0.4);
}

.process-step:hover .step-icon-wrapper i {
    color: #072e58;
}

.step-title {
    font-weight: 800;
    color: #072e58;
    margin-bottom: 8px;
    position: relative;
}

.step-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    padding: 0 10px;
}

/* Mobile Vertical Flow */
@media (max-width: 991px) {
    .process-roadmap {
        padding: 0;
    }

    .process-step {
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        /* Align items vertically center */
        text-align: left;
        padding-top: 0;
    }

    /* Vertical Line */
    .process-roadmap::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 40px;
        /* Center of the 80px icon */
        width: 4px;
        /* Vertical Gradient */
        background: linear-gradient(180deg, #fbde04, #072e58);
        -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 40%);
        -webkit-mask-size: 100% 20px;
        mask-image: linear-gradient(to bottom, #000 60%, transparent 40%);
        mask-size: 100% 20px;
        mask-repeat: repeat-y;
        z-index: 1;
        transform: translateX(-50%);
    }

    .step-icon-wrapper {
        margin: 0 25px 0 0;
        /* Clear space for text on right */
        flex-shrink: 0;
    }

    .step-content {
        /* Wrapper for text to ensure it aligns right of icon */
        flex: 1;
    }
}

/* --- 2026 Modern Design Updates --- */

/* Investor Benefits Section */
.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(7, 46, 88, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 46, 88, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 46, 88, 0.15);
    border-color: var(--secondary-color);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--dark-bg), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Service Standards Section (Grid) */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.standard-card {
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(7, 46, 88, 0.1);
    background: white;
}

.standard-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(7, 46, 88, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.standard-card:hover .standard-icon-box {
    background: var(--dark-bg);
    color: var(--primary-color);
    transform: rotate(5deg) scale(1.1);
}

/* Typography Enhancements */
.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--dark-bg), #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}


/* --- Sticky Scroll Services Section (2026 Trend) --- */
.services-sticky-wrapper {
    position: relative;
    width: 100%;
    /* Ensure it handles the full height content */
}

/* Left Sidebar (Sticky) */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.sticky-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
    position: relative;
}

/* Vertical Line for Navigation */
.sticky-nav-menu ul::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(7, 46, 88, 0.1);
}

.sticky-nav-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: #bbb;
    /* Inactive color */
    margin-bottom: 2rem;
    padding-left: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

/* Active Indicator Line */
.sticky-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--primary-color);
    /* Yellow highlight */
    transition: height 0.4s ease;
    box-shadow: 0 0 10px rgba(251, 222, 4, 0.5);
}

.sticky-nav-item.active {
    color: var(--dark-bg);
    font-size: 1.8rem;
}

.sticky-nav-item.active::before {
    height: 100%;
    /* Expand line on active */
    width: 4px;
    /* Slightly thicker */
}

/* Right Content (Scrolling) */
.scroll-content {
    position: relative;
    /* Added positioning context */
}

.service-scroll-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

/* Background Image/Video Wrapper */
.service-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-scroll-section:hover .service-bg-media img {
    transform: scale(1.05);
    /* Gentle zoom on hover */
}

/* Dark Overlay */
.service-bg-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Glass Content Box */
.service-info-box {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 24px;
    max-width: 600px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

/* Reveal animation when section is active (handled by JS adding 'in-view' class) */
.service-scroll-section.in-view .service-info-box {
    transform: translateY(0);
    opacity: 1;
}


.service-info-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #fbde04);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Mobile Responsive Fixes for Sticky Services --- */
@media (max-width: 991px) {

    /* Disable Sticky Sidebar */
    .sticky-sidebar {
        position: relative;
        height: auto;
        padding: 3rem 1.5rem;
        text-align: center;
        background: #fff;
        /* Ensure contrast */
    }

    .sticky-sidebar .ps-lg-5 {
        padding-left: 0 !important;
    }

    .sticky-sidebar .section-subtitle-modern {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide Navigation Menu on Mobile (Content is stacked, so no need for nav) */
    .sticky-nav-menu {
        display: none;
    }

    /* Adjust Scroll Content Sections */
    .service-scroll-section {
        min-height: 60vh;
        /* Shorter height for mobile */
        padding: 4rem 1rem;
    }

    .service-info-box {
        opacity: 1 !important;
        /* Always visible */
        transform: translateY(0) !important;
        background: rgba(255, 255, 255, 0.25);
        /* Slightly more opaque */
        padding: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .service-info-box h3 {
        font-size: 1.8rem;
        /* Smaller title */
    }

    .service-info-box .lead {
        font-size: 1rem;
    }
}

/* Global Gradient Text Utility */
.text-gradient {
    background: linear-gradient(45deg, var(--brand-dark), var(--brand-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* Navbar Dropdown Customization */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
}

.dropdown-item {
    color: #072e58 !important;
    text-align: center;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(47, 231, 240, 0.15) !important;
    color: #072e58 !important;
    transform: translateX(5px);
}

/* reCAPTCHA Badge Styling */
.grecaptcha-badge {
    z-index: 10000 !important;
    visibility: visible !important;
}