/*
Theme Name: Optivance
Text Domain: optivance
Version: 1.0
Description: Dynamic WordPress theme for Optivance, built with Bootstrap 5.
Author: Your Name
*/

:root {
    /* Black & Gold Theme derived from logo.png */
    --primary-gold: #c5a059; 
    --primary-gold-hover: #b08d4a;
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --light-bg: #fafafa;
    --text-dark: #111111;
    --text-muted: #666666;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}
/* ==========================================================================
   Global Responsive Fix (Prevent Horizontal Scrolling)
   ========================================================================== */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* Ensure images don't break their containers on mobile */
img {
    max-width: 100%;
    height: auto;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

/* Buttons */
.btn-circle-gold {
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg);
    color: var(--primary-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
}
.btn-circle-gold:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.btn-gold-pill {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.btn-gold-pill:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

/* --- Smooth Sticky Navbar --- */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    padding: 25px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-custom.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.navbar-custom .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.navbar-custom .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Logo Visibility Fix */
.logo-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: padding 0.4s ease;
}
.navbar-custom.scrolled .logo-wrapper {
    padding: 5px 15px;
}
.navbar-brand img, .custom-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}
.navbar-custom.scrolled .navbar-brand img, 
.navbar-custom.scrolled .custom-logo {
    height: 35px;
}

/* Mobile Menu Fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(15px);
        padding: 25px;
        border-radius: 16px;
        margin-top: 15px;
        border: 1px solid rgba(197, 160, 89, 0.3);
        box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    }
    .navbar-custom .nav-link {
        margin: 12px 0;
        text-align: center;
        font-size: 1rem;
    }
    .mobile-cta {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.95)), url('https://img.magnific.com/premium-photo/beautiful-skyscrapers-city-building-pudong-shanghai-china_501530-11443.jpg?w=1060') center/cover;
    display: flex;
    align-items: center;
    padding-top: 150px;
}
.hero h1 {
    color: white;
    font-size: calc(1.525rem + 2.5vw);
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Floating Bottom Bar in Hero */
.hero-floating-bar {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin-top: 60px;
}
.hero-floating-bar .item {
    color: white;
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0 25px;
}
.hero-floating-bar .item:last-child {
    border-right: none;
}
.hero-floating-bar h6 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-gold);
}
.hero-floating-bar p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Section Styling */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(1.5rem, 4vw + 1rem, 2.5rem); color: var(--text-dark); }

/* Abstract Top Cards */
.card-abstract {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    position: relative;
    transition: 0.3s;
}
.card-abstract:hover { border-color: var(--primary-gold); }
.card-abstract.highlight {
    background: var(--dark-surface);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--primary-gold);
}
.card-abstract.highlight h1 {
    font-size: 10rem;
    color: rgba(197, 160, 89, 0.05);
    position: absolute;
    margin: 0;
    line-height: 1;
}

/* Image Grid Cards (Sectors) */
.sector-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    height: 320px;
    border: 1px solid #f0f0f0;
}
.sector-card-img {
    height: 75%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.sector-card:hover .sector-card-img { transform: scale(1.05); }
.sector-card-content {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 25%;
    background: white;
    position: relative;
    z-index: 2;
}
.sector-card-content h6 { margin: 0; font-size: 1rem; font-weight: 600; }
.icon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Dark Premium Info Block */
.premium-info-block {
    background-color: var(--dark-bg);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 80px;
    margin: 60px 0;
    position: relative;
    border: 1px solid #222;
}
.premium-info-block h2 { margin-bottom: 40px; }
.info-col {
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    padding-left: 25px;
}
.info-col h5 { font-size: 1.1rem; margin-bottom: 15px; color: white; }
.info-col p { font-size: 0.9rem; opacity: 0.7; margin: 0; line-height: 1.6; }

/* Dark Market Cards */
.market-card {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=600') center/cover;
    border-radius: var(--border-radius-md);
    padding: 50px 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(197, 160, 89, 0.2);
    height: 100%;
    transition: 0.3s;
}
.market-card:hover { border-color: var(--primary-gold); transform: translateY(-5px); }
.market-card i { font-size: 3rem; color: var(--primary-gold); margin-bottom: 20px; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    border-radius: var(--border-radius-lg);
    padding: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin-bottom: 80px;
    border: 1px solid var(--primary-gold);
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
}
.contact-form-wrap { padding: 80px 60px; }
.contact-image-wrap {
    background: url('https://img.magnific.com/premium-photo/business-partnership-skyscrapers_1254878-109411.jpg?w=1060') center/cover;
    min-height: 100%;
    position: relative;
}

.footer-area {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary-gold);
}
.footer-area a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: 0.2s;
}
.footer-area a:hover { color: var(--primary-gold); }

.form-control {
    background-color: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

.tracking-wider { letter-spacing: 2px; }

.custom-logo-link {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: padding 0.4s ease;
}

/* ==========================================================================
   Sub-Menu (Dropdown) Styling
   ========================================================================== */

/* Add Dropdown Arrow to Parent Links */
.navbar-custom .menu-item-has-children > a::after {
    content: "\F282"; /* Bootstrap Icon Chevron Down */
    font-family: "bootstrap-icons";
    margin-left: 8px;
    font-size: 0.75rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* --- DESKTOP VIEW --- */
@media (min-width: 992px) {
    .navbar-custom .nav-item {
        position: relative;
    }

    /* Sub-menu Base Style */
    .navbar-custom .sub-menu {
        position: absolute;
        top: 100%;
        left: 15px; /* Align with nav-link margin */
        min-width: 320px;
        background-color: var(--dark-bg);
        border: 1px solid rgba(197, 160, 89, 0.2);
        border-top: 3px solid var(--primary-gold);
        border-radius: 0 0 12px 12px;
        padding: 15px 0;
        margin: 0;
        list-style: none;
        
        /* Animation properties */
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }

    /* Multi-level Dropdowns (Sub-menus inside Sub-menus) */
    .navbar-custom .sub-menu .sub-menu {
        top: 0;
        left: 100%;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
        border-left: 3px solid var(--primary-gold);
    }

    /* Show Sub-menu on Hover */
    .navbar-custom .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate Arrow on Hover */
    .navbar-custom .menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }

    /* Sub-menu Links */
    .navbar-custom .sub-menu a {
        display: block;
        padding: 10px 25px;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.9rem;
        text-transform: none; /* Keeps dropdowns readable */
        font-weight: 400;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: all 0.3s ease;
        margin: 0;
    }

    /* Sub-menu Hover Effect */
    .navbar-custom .sub-menu a:hover {
        color: var(--primary-gold) !important;
        background-color: rgba(197, 160, 89, 0.05);
        padding-left: 32px; /* Slight indent effect on hover */
    }
}

 /* --- MOBILE VIEW (Upgraded Premium Design) --- */
 @media (min-width: 991.98px) {
	 .submenu-toggle i {
		 display:none;
	 }
 }
@media (max-width: 991.98px) {
    
    /* Hide the Desktop CSS Arrow */
    .navbar-custom .menu-item-has-children > a::after {
        display: none !important;
    }

    /* Full-Width Sleek Dropdown Panel */
    .navbar-collapse {
        background-color: #05090f !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 25px 35px 25px;
        border-top: 1px solid rgba(197, 160, 89, 0.1);
        border-bottom: 4px solid var(--primary-gold);
        box-shadow: 0 20px 50px rgba(0,0,0,0.7);
        border-radius: 0 0 24px 24px !important;
        margin-top: 0 !important;
    }

    /* Main Menu Links */
    .navbar-custom .nav-link {
        font-size: 1.1rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }

    /* The JS-Injected Toggle Icon */
    .submenu-toggle {
        padding: 5px 15px;
        margin-right: -15px; /* Extends the tap hit-area for better mobile UX */
        cursor: pointer;
        color: var(--primary-gold);
        transition: transform 0.3s ease;
    }

    /* Rotate icon when the submenu is active */
    .menu-item-has-children.active-submenu > a .submenu-toggle {
        transform: rotate(180deg);
    }

    /* Sub-Menu Restyling */
    .navbar-custom .sub-menu {
        display: none; /* Hidden by default */
        list-style: none;
        padding-left: 0;
        margin: 10px 0 10px 15px;
        background: rgba(255, 255, 255, 0.03);
        border-left: 2px solid var(--primary-gold);
        border-radius: 12px;
    }

    /* Show sub-menu smoothly when toggled via JS */
    .menu-item-has-children.active-submenu > .sub-menu {
        display: block;
        animation: submenuSlide 0.3s ease forwards;
    }

    .navbar-custom .sub-menu a {
        display: block;
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.95rem;
        border-bottom: none;
        text-decoration: none;
    }

    .navbar-custom .sub-menu a:hover,
    .navbar-custom .sub-menu a:active {
        color: var(--primary-gold) !important;
        background: rgba(197, 160, 89, 0.1);
        border-radius: 0 12px 12px 0;
    }

    .mobile-cta {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    @keyframes submenuSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ==========================================================================
   Reveal on Scroll Animations
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grids/Cards */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }


  /* ==========================================================================
           Custom Styles for Landing Page Sections
           ========================================================================== */
           
        /* Counter Section - Based on image (11).png */
        .counter-section {
            background-color: #0b1320; /* Deep dark blue/black matching the image */
            padding: 80px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .counter-number {
            color: var(--primary-gold);
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
        }
        .counter-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Business Process Section - Based on image (12).png */
        .process-section {
            background-color: #ffffff;
            padding: 100px 0;
        }
        .subtitle-line {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .subtitle-line::before, .subtitle-line::after {
            content: '';
            height: 1px;
            width: 40px;
            background-color: var(--primary-gold);
            margin: 0 15px;
        }
        .process-heading {
            color: #0b1320;
            font-weight: 700;
            margin-bottom: 60px;
        }
        .process-timeline {
            position: relative;
            display: flex;
            justify-content: space-between;
        }
        /* Dashed Line */
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 11px; /* Aligns with the center of the 24px circles */
            left: 5%;
            right: 5%;
            height: 0;
            border-top: 1px dashed rgba(197, 160, 89, 0.6);
            z-index: 1;
        }
        .process-step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
            padding: 0 5px;
        }
        .process-circle {
            width: 24px;
            height: 24px;
            border: 3px solid var(--primary-gold);
            background-color: #fff;
            border-radius: 50%;
            margin: 0 auto 20px auto;
        }
        .process-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #0b1320;
            line-height: 1.4;
        }

        /* Testimonial Section */
        .testimonial-section {
            background-color: var(--light-bg);
            padding: 100px 0 120px 0;
        }
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius-md);
            border: 1px solid #eaeaea;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }
        .testimonial-card:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
        }
        .testimonial-rating {
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Responsive fixes for Timeline */
        @media (max-width: 991.98px) {
            .process-timeline {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            .process-timeline::before {
                top: 0; bottom: 0;
                left: 50%; right: auto;
                height: 100%; width: 0;
                border-top: none;
                border-left: 1px dashed rgba(197, 160, 89, 0.6);
            }
        }
		
		.modern-markets-section {
            background-color: #05090f; /* Deepest dark blue/black */
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(197, 160, 89, 0.15);
        }

        /* Abstract Globe Background */
        .modern-markets-section::before {
            content: "\F421"; /* Bootstrap bi-globe icon */
            font-family: "bootstrap-icons";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 65rem;
            color: rgba(197, 160, 89, 0.02);
            z-index: 0;
            line-height: 1;
        }

        .modern-market-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-md);
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .modern-market-card:hover {
            background: rgba(20, 20, 20, 0.95);
            border-color: var(--primary-gold);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 160, 89, 0.1);
        }

        .modern-market-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, transparent 100%);
            color: var(--primary-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            border: 1px solid rgba(197, 160, 89, 0.3);
            transition: all 0.4s ease;
        }

        .modern-market-card:hover .modern-market-icon {
            background: var(--primary-gold);
            color: var(--dark-bg);
            border-color: var(--primary-gold);
        }

        .modern-markets-footer {
            background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
            border-left: 4px solid var(--primary-gold);
            padding: 35px 40px;
            margin-top: 50px;
            border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
            position: relative;
            z-index: 1;
        }
		
		.modern-focus-section {
            background-color: var(--light-bg);
            padding: 120px 0;
        }
        
        .modern-focus-card {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            height: 420px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            cursor: pointer;
            z-index: 1;
        }

        .modern-focus-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -2;
        }

        .modern-focus-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.1) 100%);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .modern-focus-card:hover .modern-focus-img {
            transform: scale(1.08);
        }

        .modern-focus-card:hover .modern-focus-overlay {
            background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(197, 160, 89, 0.4) 100%);
        }

        .modern-focus-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            color: white;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(65px); /* Hides the description initially */
        }

        .modern-focus-card:hover .modern-focus-content {
            transform: translateY(0);
        }

        .modern-focus-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .modern-focus-card:hover .modern-focus-icon {
            transform: translateY(-5px);
        }

        .modern-focus-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .modern-focus-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            opacity: 0;
            transition: all 0.5s ease;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .modern-focus-card:hover .modern-focus-desc {
            opacity: 1;
            transition-delay: 0.1s;
        }

        /* Animated Gold Accent Line at bottom */
        .modern-focus-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 5px;
            background-color: var(--primary-gold);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modern-focus-card:hover::after {
            width: 100%;
        }
        
        /* Mobile adjustment for touch screens */
        @media (max-width: 991px) {
            .modern-focus-content { transform: translateY(0); }
            .modern-focus-desc { opacity: 1; }
        }
/* ==========================================================================
   Default Page Template Styles
   ========================================================================== */

/* Hero Section for Default Pages */
.page-default-hero {
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.98)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920') center/cover;
    padding: 200px 0 100px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Gutenberg / Standard Content Formatting */
.default-page-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.default-page-content h1,
.default-page-content h2,
.default-page-content h3,
.default-page-content h4,
.default-page-content h5,
.default-page-content h6 {
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.default-page-content h2 {
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.default-page-content p {
    margin-bottom: 1.5rem;
}

/* Links */
.default-page-content a {
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.default-page-content a:hover {
    color: var(--primary-gold-hover);
    border-bottom-color: var(--primary-gold-hover);
}

/* Unordered & Ordered Lists */
.default-page-content ul,
.default-page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.default-page-content li {
    margin-bottom: 0.5rem;
}

/* Premium Blockquote Styling */
.default-page-content blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-gold);
    padding: 30px 40px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.default-page-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Images & Alignment */
.default-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}
/*********Page Specific Styles for Modern Contact Section ***/
    
        .modern-contact-section {
            position: relative;
            background: linear-gradient(135deg, #05090f 0%, #0b1320 100%);
            padding: 120px 0;
            border-top: 1px solid rgba(197, 160, 89, 0.1);
            overflow: hidden;
        }

        .modern-contact-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920') center/cover;
            opacity: 0.05;
            z-index: 0;
        }

        .contact-info-wrapper {
            position: relative;
            z-index: 1;
            padding-right: 30px;
        }

        .contact-icon-box {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
        }

        .contact-icon-box i {
            font-size: 1.5rem;
            color: var(--primary-gold);
            background: rgba(197, 160, 89, 0.08);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(197, 160, 89, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-icon-box:hover i {
            background: var(--primary-gold);
            color: var(--dark-bg);
        }

        /* Glassmorphism Form Card */
        .contact-glass-form {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(197, 160, 89, 0.15);
            border-radius: var(--border-radius-lg);
            padding: 50px;
            position: relative;
            z-index: 1;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        /* Custom Dark Inputs */
        .custom-input {
            background: rgba(0, 0, 0, 0.3) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: white !important;
            border-radius: 8px;
            padding: 16px 20px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .custom-input:focus {
            background: rgba(0, 0, 0, 0.5) !important;
            border-color: var(--primary-gold) !important;
            box-shadow: 0 0 15px rgba(197, 160, 89, 0.1) !important;
        }

        .custom-input::placeholder {
            color: rgba(255, 255, 255, 0.3) !important;
        }
        
        select.custom-input option {
            background-color: #0b1320;
            color: white;
        }
        
        @media (max-width: 991px) {
            .contact-glass-form {
                padding: 35px 25px;
            }
            .contact-info-wrapper {
                padding-right: 0;
                margin-bottom: 20px;
            }
        }
		
		/***** Page Specific Styles for Cinematic Hero Slider ******/
    
        .hero-slider-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background-color: #05090f;
            overflow: hidden;
        }

        /* Continuous zoom effect for images */
        .hero-bg-img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transform: scale(1.05);
            transition: transform 5s ease-out;
            z-index: 0;
        }

        .carousel-item.active .hero-bg-img {
            transform: scale(1);
        }

        /* Rich gradient overlay for text readability */
        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(5, 9, 15, 0.95) 0%, rgba(5, 9, 15, 0.6) 40%, rgba(5, 9, 15, 0.1) 100%),
                        linear-gradient(to top, rgba(5, 9, 15, 0.8) 0%, transparent 30%);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 2;
        }

        /* Staggered Animations for Text */
        .hero-badge, .hero-title, .hero-desc, .hero-actions {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item.active .hero-badge { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .carousel-item.active .hero-title { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .carousel-item.active .hero-desc  { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
        .carousel-item.active .hero-actions{ transition-delay: 0.9s; opacity: 1; transform: translateY(0); }

        .hero-title {
            font-size:clamp(1.5rem, 4vw + 1rem, 3.5rem);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .hero-title span {
            color: var(--primary-gold);
        }

        /* Custom Modern Carousel Controls (Bottom Right) */
        .hero-controls {
            position: absolute;
            bottom: 50px;
            right: 50px;
            z-index: 10;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .hero-nav-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-nav-btn:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            border-color: var(--primary-gold);
            transform: scale(1.05);
        }

        /* Custom Progress-Bar Indicators (Bottom Left) */
        .hero-indicators {
            position: absolute;
            bottom: 60px;
            left: 50px; /* Adjust if inside container */
            z-index: 10;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        @media (min-width: 1400px) {
            .hero-indicators { left: calc((100vw - 1320px) / 2 + 12px); }
        }
        @media (min-width: 1200px) and (max-width: 1399px) {
            .hero-indicators { left: calc((100vw - 1140px) / 2 + 12px); }
        }

        .indicator-line {
            width: 40px;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .indicator-line.active {
            width: 70px;
        }

        .indicator-line.active::after {
            content: '';
            position: absolute;
            top: 0; left: 0; height: 100%;
            background: var(--primary-gold);
            width: 100%;
            animation: progressIndicator 6s linear forwards; /* Matches carousel interval */
        }

        @keyframes progressIndicator {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            
            .hero-controls { bottom: 30px; right: 20px; }
            .hero-indicators { bottom: 45px; left: 20px; }
            .hero-content { top: 45%; }
        }

/****************** New code ******************/
.inner-form input{
background-color: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
	width: 100%;
}
 .inner-form textarea{
background-color: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
	 width: 100%;
	max-height: 150px;
}

.inner-form-dark input{
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
	width: 100%;
}
 .inner-form-dark textarea{
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
	 width: 100%;
	max-height: 150px;
}