/* ============================================
   STRATOS CORPORATE LUXURY - HOMEPAGE OVERRIDES
   ============================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --stratos-navy: #13224a;
    --stratos-royal: #2a4b9b;
    --stratos-white: #ffffff;
    --stratos-light: #f8f9fa;
    --stratos-text: #111c2c;
    --stratos-muted: #45464e;
    
    --radius-soft: 8px;
    --shadow-ambient: 0px 4px 20px rgba(19, 34, 74, 0.05);
    --shadow-hover: 0px 10px 30px rgba(19, 34, 74, 0.1);
}

/* Global Overrides for Homepage */
body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--stratos-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--stratos-navy) !important;
}

/* Base Titles */
.stratos-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--stratos-navy) !important;
    letter-spacing: -0.01em;
}

.stratos-eyebrow {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--stratos-royal) !important;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
#hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .slider a::after {
    /* Safe fallback, remove any inherited borders/underlines on pseudo elements */
    border: none !important;
    text-decoration: none !important;
}

.hero-content {
    position: absolute;
    z-index: 2;
    padding-left: 10%;
    width: 100%;
}

.hero-title {
    color: var(--stratos-white) !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    border: none !important;
    color: var(--stratos-white) !important;
    padding: 10px 0;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    position: relative;
}

/* Nuke the legacy gold/yellow underline from home-v2.css */
.hero-cta::after, .hero-cta::before {
    display: none !important;
}

.hero-cta:hover, .hero-cta:focus, .hero-cta:active {
    background: transparent !important;
    color: var(--stratos-white) !important;
    border: none !important;
    text-decoration: none !important;
    outline: none !important;
    opacity: 0.8;
}

.hero-cta .hero-arrow {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

#hero a:hover .hero-cta .hero-arrow {
    transform: translateX(5px);
}

#hero a, #hero a:hover, #hero a:focus, #hero a:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* ==========================================
   WHO WE ARE
   ========================================== */
.who-are-section {
    padding: 100px 0;
    background: var(--stratos-white);
}

.who-are-text {
    font-size: 16px;
    color: var(--stratos-muted);
    line-height: 1.8;
}

.stratos-btn {
    display: inline-block;
    background: var(--stratos-navy);
    color: var(--stratos-white) !important;
    padding: 14px 36px;
    border-radius: var(--radius-soft);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.stratos-btn:hover {
    background: var(--stratos-royal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Stats Counter */
.stratos-stats {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e7eeff;
}

/* ==========================================
   SMOOTH SLIDER EASING
   ========================================== */
#hero .owl-carousel .owl-stage {
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hard-crop the Vista Regency grass (Cache-Busted) */
#hero .vista-regency-img {
    object-position: center 5% !important;
    transform: scale(1.05) !important;
}

@media (max-width: 1024px) {
    #hero .vista-regency-img {
        object-position: center top !important;
        transform: scale(1.22) translateY(6%) !important;
    }
}

.stat-item {
    text-align: center;
}

.stat-num, 
.stratos-stats-container .counter, 
.stratos-stats-container .counter-2 {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: var(--stratos-royal) !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1 !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--stratos-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.stratos-features {
    background: var(--stratos-light);
    padding: 100px 0;
}

.stratos-feature-card {
    background: var(--stratos-white);
    border: 1px solid #e7eeff;
    border-radius: var(--radius-soft);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-ambient);
    position: relative;
    height: 100%;
}

.stratos-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stratos-royal);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-bottom-left-radius: var(--radius-soft);
    border-bottom-right-radius: var(--radius-soft);
}

.stratos-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 75, 155, 0.15);
}

.stratos-feature-card:hover::after {
    opacity: 1;
}

.stratos-feature-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--stratos-navy) !important;
    margin-bottom: 0;
    margin-top: 20px;
}

.stratos-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(42, 75, 155, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--stratos-royal);
    font-size: 26px;
    transition: all 0.4s ease;
}

.stratos-feature-card:hover .stratos-feature-icon {
    background: var(--stratos-royal);
    color: var(--white);
    transform: scale(1.1);
}

/* ==========================================
   PORTFOLIO (OUR PROJECTS)
   ========================================== */
.stratos-portfolio {
    padding: 100px 0;
    background: var(--stratos-white);
}

.stratos-proj-card {
    background: var(--stratos-white);
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
    transition: all 0.4s ease;
    border: 1px solid #e7eeff;
    margin-bottom: 30px;
}

.stratos-proj-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stratos-proj-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stratos-proj-card:hover .stratos-proj-img {
    transform: scale(1.08);
}

.stratos-proj-content {
    padding: 24px;
}

.stratos-proj-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--stratos-light);
    color: var(--stratos-navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stratos-proj-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stratos-proj-loc {
    font-size: 14px;
    color: var(--stratos-muted);
    margin-bottom: 16px;
}

.stratos-proj-link {
    color: var(--stratos-royal) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stratos-proj-link:hover {
    color: var(--stratos-navy) !important;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.stratos-testimonials {
    padding: 100px 0;
    background: var(--stratos-navy);
    color: var(--stratos-white);
}

.stratos-testimonials h2 {
    color: var(--stratos-white) !important;
}

.stratos-test-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-soft);
    margin: 15px;
}

.stratos-test-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--stratos-white) !important;
    margin-bottom: 24px;
}

.stratos-test-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--stratos-royal);
}

/* ==========================================
   OUR JOURNEY
   ========================================== */
#journey.stratos-journey {
    padding: 100px 0;
    background: var(--stratos-light) !important;
}

#journey.stratos-journey h2, 
#journey.stratos-journey p,
#journey.stratos-journey h4 {
    color: var(--stratos-navy) !important;
}

.stratos-timeline-wrapper {
    padding: 20px 0;
    overflow: hidden;
}

@keyframes marqueeTimeline {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stratos-timeline-grid {
    display: flex;
    position: relative;
    padding: 20px 0;
    width: max-content;
    align-items: flex-start;
    animation: marqueeTimeline 40s linear infinite;
}

.stratos-timeline-grid:hover {
    animation-play-state: paused;
}

    .stratos-timeline-grid::before {
        content: '';
        position: absolute;
        top: 180px; /* Center of 360px height */
        left: 0;
        right: 0;
        height: 2px;
        background: #d0def0;
        z-index: 1;
    }

.stratos-timeline-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center; /* Center on the horizontal line */
    padding: 0 60px; /* Space around the badge */
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.stratos-timeline-divider-badge {
    background: linear-gradient(135deg, var(--stratos-royal), var(--stratos-navy));
    color: var(--stratos-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(19, 34, 74, 0.2);
    border: 4px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.stratos-timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 260px;
    height: 360px; /* Fixed height for alternating layout */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stratos-timeline-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(19, 34, 74, 0.08);
    border: 1px solid #e7eeff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 4;
}

/* Chat bubble pointer */
.stratos-timeline-card::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #e7eeff;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}

/* ODD ITEMS: Pointer at the top */
.stratos-timeline-item:nth-child(odd) .stratos-timeline-card::before {
    top: -8px;
    border-bottom: none;
    border-right: none;
}

/* EVEN ITEMS: Pointer at the bottom */
.stratos-timeline-item:nth-child(even) .stratos-timeline-card::before {
    bottom: -8px;
    border-top: none;
    border-left: none;
}

.stratos-timeline-item:hover .stratos-timeline-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(19, 34, 74, 0.12);
}

.stratos-timeline-dot {
    position: absolute;
    top: 172px; /* Exactly on the 180px line */
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--stratos-royal);
    border: 4px solid var(--stratos-white);
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(42, 75, 155, 0.1);
}

.stratos-timeline-item:hover .stratos-timeline-dot {
    transform: translateX(-50%) scale(1.3);
    background: var(--stratos-navy);
    box-shadow: 0 0 0 6px rgba(42, 75, 155, 0.2);
}

/* ODD ITEMS (Content Below Line) */
.stratos-timeline-item:nth-child(odd) {
    padding-top: 196px; /* Gap of 16px to line */
}

/* EVEN ITEMS (Content Above Line) */
.stratos-timeline-item:nth-child(even) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 196px; /* Gap of 16px to line */
}

.stratos-timeline-year {
    display: inline-block;
    background: #f0f4f8;
    color: var(--stratos-royal);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid #e1e8f0;
}

.stratos-timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--stratos-navy) !important;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.stratos-timeline-item:hover .stratos-timeline-title {
    color: var(--stratos-royal) !important;
}

.stratos-timeline-desc {
    font-size: 14px;
    color: var(--stratos-muted) !important;
    margin: 0;
}

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.stratos-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--stratos-navy), #0a1733);
    position: relative;
    overflow: hidden;
}
.stratos-cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(42, 75, 155, 0.4) 0%, transparent 50%);
}
.stratos-cta-section .stratos-eyebrow {
    color: #c9a84c !important; /* Elegant gold for dark background */
    letter-spacing: 4px;
}
.stratos-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 24px;
}
.stratos-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.stratos-cta-section .stratos-btn-primary {
    background: #ffffff !important;
    color: var(--stratos-navy) !important;
    border-color: #ffffff !important;
}
.stratos-cta-section .stratos-btn-primary:hover {
    background: #e7eeff !important;
    color: var(--stratos-royal) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================
   QUICK LINKS SECTION
   ========================================== */
.stratos-quick-links {
    padding: 80px 0;
    background: var(--stratos-light);
}
.stratos-link-card {
    background: var(--stratos-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-ambient);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stratos-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(19, 34, 74, 0.08);
}
.stratos-link-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stratos-navy);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 15px;
}
.stratos-link-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--stratos-royal);
    border-radius: 2px;
}
.stratos-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.stratos-link-list li {
    margin-bottom: 12px;
}
.stratos-link-list li:last-child {
    margin-bottom: 0;
}
.stratos-link-list a {
    color: var(--stratos-muted);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}
.stratos-link-list a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--stratos-royal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stratos-link-list a:hover {
    padding-left: 16px;
    color: var(--stratos-royal);
}
.stratos-link-list a:hover::before {
    left: 0;
    opacity: 1;
}



/* ==========================================
   CONTACT CTA
   ========================================== */
.stratos-cta {
    background: var(--stratos-royal);
    padding: 80px 0;
    text-align: center;
}

.stratos-cta h2 {
    color: var(--stratos-white) !important;
}

.stratos-cta p {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.stratos-cta-btn {
    background: var(--stratos-white);
    color: var(--stratos-navy) !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.stratos-cta-btn:hover {
    transform: scale(1.05);
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: 32px !important;
        margin-bottom: 15px;
    }
    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-cta {
        padding: 8px 0;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    /* Section Titles & Paddings */
    .stratos-section-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    .who-are-section {
        padding: 60px 0 !important;
    }
    .stratos-cta-section {
        padding: 60px 0 !important;
    }
    
    /* Stats */
    .stat-num {
        font-size: 32px !important;
    }
    .stat-label {
        font-size: 13px !important;
    }
    .stratos-stats {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    
    /* Timeline adjustments */
    .stratos-timeline-node {
        width: 30px !important;
        height: 30px !important;
        left: -15px !important;
    }
    .stratos-timeline-icon {
        font-size: 12px !important;
    }
    .stratos-timeline-date {
        font-size: 20px !important;
    }
}

/* ==========================================
   TESTIMONIALS (REDESIGN)
   ========================================== */
.stratos-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px 30px;
    margin: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.stratos-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stratos-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: var(--stratos-navy);
    opacity: 0.05;
    z-index: 0;
}

.stratos-stars {
    color: #f6b93b;
    margin-bottom: 20px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.stratos-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stratos-navy);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.stratos-testimonial-author {
    border-top: 1px solid rgba(19, 34, 74, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.stratos-testimonial-author .author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--stratos-royal);
    margin-bottom: 4px;
}

.stratos-testimonial-author .author-title {
    display: block;
    font-size: 13px;
    color: var(--stratos-muted);
}

.stratos-testimonial-author .author-project {
    display: block;
    font-size: 13px;
    color: var(--stratos-navy);
    font-weight: 600;
    margin-top: 4px;
}

/* Override Legacy Testimonial Background */
.testimonial-bg {
    background: #f4f7fb !important;
    position: relative;
    padding: 100px 0 !important;
}

.testimonial-bg::before {
    display: none !important;
}

#section5 .page-title h2 {
    color: var(--stratos-navy) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.stratos-stats-container {
    background: #f4f7fb;
    border-radius: 20px;
    padding: 60px 20px;
    box-shadow: inset 0 0 0 1px rgba(19, 34, 74, 0.05);
}

.stratos-stats-container .stat-item {
    position: relative;
}

@media (min-width: 768px) {
    .stratos-stats-container .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(19, 34, 74, 0.1);
    }
}

/* ==========================================
   FOOTER (STRATOS THEME)
   ========================================== */
.stratos-footer {
    background: var(--stratos-navy);
    color: var(--white);
}

.stratos-footer-heading {
    color: var(--white) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.stratos-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stratos-footer-list li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.stratos-footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.stratos-footer-list li a:hover {
    color: var(--white);
}

.stratos-footer-list i {
    color: var(--stratos-royal);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.stratos-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.stratos-social a:hover {
    background: var(--stratos-royal);
    transform: translateY(-3px);
}

.stratos-copyright {
    background: #0d1836;
    padding: 20px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.stratos-copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.stratos-copyright a:hover {
    color: var(--white);
}

.stratos-footer-text,
.stratos-footer p,
.stratos-copyright p,
.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-links a:hover {
    color: #ffffff !important;
}

/* ==========================================
   HEADER NAVBAR (STRATOS THEME)
   ========================================== */
/* Lock navbar visually permanently */
nav#navBar,
nav#navBar.fixed-top,
nav#navBar.fixed-top.menu-bg,
nav#navBar.top-nav-collapse,
.top-area-1.menu-bg,
.top-area-1.top-nav-collapse,
.top-area-1 {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    margin-top: 20px !important;
    padding: 5px 30px !important;
    border: none !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 50px !important;
    width: auto !important;
    max-width: 1200px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    top: 0 !important;
    transition: none !important;
}

.top-area-1 .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* On mobile/tablet, make the pill wider since the menu items are hidden */
@media (max-width: 1199px) {
    nav#navBar,
    nav#navBar.fixed-top,
    nav#navBar.fixed-top.menu-bg,
    nav#navBar.top-nav-collapse,
    .top-area-1.menu-bg,
    .top-area-1.top-nav-collapse,
    .top-area-1 {
        width: 95% !important;
        border-radius: 50px !important;
        justify-content: space-between !important;
    }
}

.top-area-1 .navbar-brand img,
.top-area-1.menu-bg .navbar-brand img {
    max-height: 45px !important;
    height: 45px !important;
    width: auto !important;
    transition: none !important;
}

.top-area-1 .navbar-brand:hover img {
    transform: scale(1.05);
}

.top-area-1 .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    color: #13224A !important;
    text-transform: uppercase !important;
    margin: 0 12px !important;
    position: relative;
    transition: color 0.3s ease !important;
    text-shadow: none !important;
    white-space: nowrap !important;
}

.top-area-1 .nav-link:hover,
.top-area-1 .nav-link.active {
    color: #e2a850 !important;
}

/* Custom underline effect on hover */
.top-area-1 .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e2a850 !important;
    border: none !important;
    transition: width 0.3s ease;
}

.top-area-1 .nav-link:hover::after,
.top-area-1 .nav-link.active::after {
    width: 20px;
}

/* ==========================================
   MOBILE RESPONSIVE TWEAKS (STRATOS)
   ========================================== */
@media (max-width: 1199px) {
    .top-area-1 {
        width: 95% !important;
        max-width: 100% !important;
        border-radius: 30px !important;
        padding: 5px 20px !important;
        justify-content: space-between !important;
    }
    .top-area-1 .container {
        justify-content: space-between !important;
    }
    .top-area-1 .navbar-toggler,
    .top-area-1.menu-bg .navbar-toggler,
    .top-area-1.top-nav-collapse .navbar-toggler {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 5px !important;
        margin: 0 !important;
        color: #13224A !important;
    }
    .top-area-1 .navbar-toggler i {
        font-size: 26px;
        color: #ffffff !important;
    }
    .top-area-1.top-nav-collapse .navbar-toggler i,
    .top-area-1.menu-bg .navbar-toggler i {
        color: #13224A !important;
    }
    .top-area-1 .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 20px !important;
        padding: 15px !important;
        margin-top: 15px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
        text-align: center;
    }
    .top-area-1 .nav-link {
        margin: 10px 0 !important;
    }
}

/* ==========================================
   FLOATING ACTION BUTTONS (FAB) OVERHAUL
   ========================================== */
.whatsapp, .view-360-btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255,255,255,0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 20px !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.view-360-btn-link {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 9999 !important;
    text-decoration: none !important;
}

.view-360-btn {
    background: linear-gradient(135deg, var(--stratos-royal), var(--stratos-navy)) !important;
    animation: pulse-vr-btn 2s infinite !important;
}

@keyframes pulse-vr-btn {
    0% { box-shadow: 0 0 0 0 rgba(15, 98, 254, 0.6) !important; }
    70% { box-shadow: 0 0 0 15px rgba(15, 98, 254, 0) !important; }
    100% { box-shadow: 0 0 0 0 rgba(15, 98, 254, 0) !important; }
}

@media (max-width: 767px) {
    .tour360-guide {
        display: none !important;
    }
}

/* Hover effects */
.whatsapp:hover, .view-360-btn-link:hover .view-360-btn {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255,255,255,0.4) !important;
}

@keyframes tour360SlideInStratos {
    from { opacity: 0; transform: translate(30px, 50%); }
    to   { opacity: 1; transform: translate(0, 50%); }
}

/* Tooltip Realignment - Mathematically centered */
.tour360-guide {
    bottom: 127.5px !important;
    right: 85px !important;
    animation: tour360SlideInStratos 0.5s ease-out !important;
    transform: translate(0, 50%) !important;
}

/* ==========================================
   TOOLTIP RE-INNOVATION (Premium Dark Mode)
   ========================================== */
.tour360-guide {
    background: var(--stratos-navy) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    color: var(--stratos-white) !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    max-width: 310px !important;
}

.tour360-guide-icon {
    background: linear-gradient(135deg, var(--stratos-royal), var(--stratos-navy)) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(15, 98, 254, 0.4) !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    flex-shrink: 0;
}

.tour360-guide-text strong {
    color: #fff !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    margin-bottom: 6px !important;
}

.tour360-guide-text p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.tour360-guide-close {
    color: rgba(255, 255, 255, 0.4) !important;
    text-shadow: none !important;
    transition: color 0.3s ease !important;
    font-size: 24px !important;
    top: 10px !important;
    right: 15px !important;
    position: absolute !important;
}

.tour360-guide-close:hover {
    color: #fff !important;
}

.tour360-guide-arrow {
    border-left: 10px solid var(--stratos-navy) !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    right: -10px !important;
}

/* ==========================================================================
   Hero Banners (About, Projects, Buyer's Guide, etc.)
   ========================================================================== */
.bg-title-page {
    position: relative;
    padding: 180px 0 120px !important;
    background-size: cover !important;
    background-position: center center !important;
    background: url(../images/title-page.jpg);
}

.bg-title-page::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0.4) 100%);
    z-index: 0;
}

.bg-title-page .breadcrumb-box {
    position: relative;
    z-index: 2;
}

.bg-title-page h1,
.bg-title-page h2 {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif !important;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .bg-title-page h1,
    .bg-title-page h2 {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   Mission & Vision Section Overrides
   ========================================================================== */
.mission-vison h3 {
    color: #ffffff !important;
    font-family: 'Playfair Display', 'Georgia', serif !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mission-vison p {
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.8;
}

/* ==========================================================================
   Career Page Hero Overrides
   ========================================================================== */
.career-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.career-hero p {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

/* RERA Number Styling */
.rera-number {
    font-size: 13px;
    color: #13224A !important;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: #f8f8f8;
    border-left: 3px solid #13224A;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.3px;
}

.rera-number strong {
    color: #13224A;
}

.career-hero .btn-apply-v2 {
    background: #ffffff !important;
    color: var(--stratos-navy) !important;
    border: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}
.career-hero .btn-apply-v2:hover {
    background: var(--stratos-gold) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}
