/* ==========================================================================
   STARDRIFT TECHNOLOGIES LLP - PREMIUM LIGHT THEME CORPORATE STYLESHEET
   ========================================================================== */

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

/* --- CSS Root Custom Properties --- */
:root {
    /* Curated Premium Blue, White, & Grey Palette */
    --primary: #0f62fe;            /* Vibrant Digital Blue */
    --primary-hover: #004ee6;
    --primary-light: #edf4ff;      /* Very soft brand blue */
    --navy-dark: #0a192f;          /* Deep Navy for headings and contrast */
    --navy-hover: #172a45;
    
    /* Neutral & Backgrounds */
    --bg-light: #f8fafc;           /* Light grey/blue background */
    --bg-white: #ffffff;
    --bg-grey: #f1f5f9;            /* Slightly darker grey boundary */
    --border-color: #e2e8f0;       /* Fine grey border */
    
    /* Accents */
    --accent-blue: #00d8ff;        /* Electric cyan */
    --accent-orange: #f97316;      /* Brand orange */
    --accent-purple: #a855f7;      /* Brand purple */
    --accent-success: #25d366;     /* WhatsApp green */
    
    /* Typography & Text colors */
    --text-primary: #1e293b;       /* Slate 800 */
    --text-secondary: #475569;     /* Slate 600 */
    --text-muted: #64748b;         /* Slate 500 */
    --text-light: #94a3b8;         /* Slate 400 */
    
    /* Standardized Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(15, 98, 254, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 98, 254, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 40px -10px rgba(15, 98, 254, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(15, 98, 254, 0.06);
}

/* --- Base Reset & Scroll --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* --- Custom Premium Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-grey);
}

::-webkit-scrollbar-thumb {
    background: rgba(15, 98, 254, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Glassmorphism Light Cards --- */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 98, 254, 0.2);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

/* --- Premium Buttons System --- */
.btn-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-brand-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0050e6 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.35);
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.5);
    color: #fff;
}

.btn-brand-secondary {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(15, 98, 254, 0.15);
}

.btn-brand-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-brand-outline {
    background: transparent;
    color: var(--navy-dark);
    border: 2px solid var(--border-color);
}

.btn-brand-outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-cta-white {
    background: var(--bg-white) !important;
    color: var(--navy-dark) !important;
    border: 2px solid var(--bg-white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.btn-cta-white:hover {
    background: transparent !important;
    color: var(--bg-white) !important;
    border-color: var(--bg-white) !important;
    transform: translateY(-2px);
}


/* --- Navigation Header --- */
header.corporate-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.corporate-header.scrolled {
    padding: 2px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.mega-menu-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mega Menu Support */
.nav-item.dropdown-mega {
    position: static;
}

.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow-xl);
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.nav-item.dropdown-mega:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mega-menu-link:hover {
    background: var(--bg-light);
    transform: translateX(4px);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-menu-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--navy-dark);
}

.mega-menu-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Hero Banner Slider --- */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.hero-slide {
    height: 100vh;
    min-height: 650px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.75) 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 850px;
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 98, 254, 0.2);
    border: 1px solid rgba(15, 98, 254, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.active .hero-slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-desc {
    font-size: 1.25rem;
    color: var(--border-color);
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.active .hero-slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-actions {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
    display: flex;
    gap: 1rem;
}

.active .hero-slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}

/* --- Section Formatting --- */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 0.8rem;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
}

.section-title-corporate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.2rem;
}

.section-desc-corporate {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
}

/* --- Animated Services Overview --- */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover .service-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotate(6deg) scale(1.05);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.8rem;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card-link i {
    transition: var(--transition-fast);
}

.glass-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* --- Statistics Section --- */
.stats-section-corporate {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-hover) 100%);
    color: #fff;
    padding: 70px 0;
}

.stat-num-box {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-label-corporate {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
}

.stat-desc-corporate {
    font-size: 0.8rem;
    color: var(--border-color);
}

/* --- Loop Carousels (Client & Brands) --- */
.carousel-ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    position: relative;
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.carousel-ticker-wrapper::before,
.carousel-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.carousel-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.ticker-track {
    display: inline-flex;
    animation: tickerInfinite 35s linear infinite;
    gap: 4rem;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 60px;
    flex-shrink: 0;
}

.ticker-item img,
.ticker-item svg {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.ticker-item:hover img,
.ticker-item:hover svg {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

@keyframes tickerInfinite {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Technology Partners Carousel */
.partner-logo-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.partner-logo-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.partner-logo-box svg,
.partner-logo-box img {
    max-width: 100%;
    max-height: 40px;
    transition: var(--transition-fast);
}

/* --- Why Choose Us --- */
.choose-card {
    padding: 2.2rem;
    height: 100%;
}

.choose-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* --- Testimonials Section --- */
.testimonial-section-corporate {
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-slide-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--navy-dark);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Call To Action (CTA) --- */
.cta-banner-corporate {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 80px 60px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-banner-corporate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.15) 0%, transparent 60%);
}

.cta-banner-corporate-content {
    position: relative;
    z-index: 2;
}

.cta-banner-corporate-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
}

.cta-banner-corporate-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
}

/* --- Floating Interactive Components --- */
.floating-widget-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
}

.floating-action-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.floating-btn-whatsapp {
    background-color: var(--accent-success);
}

.floating-btn-call {
    background-color: var(--primary);
}

.floating-btn-scrollup {
    background-color: var(--navy-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.floating-btn-scrollup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Subtle pulse animation for WhatsApp */
.floating-btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-success);
    animation: floatingPulse 1.8s infinite;
    pointer-events: none;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Live Chat Widget Simulator */
.live-chat-panel {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 350px;
    height: 480px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.live-chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-header-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-header-title h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.chat-header-title span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    display: block;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 1.25rem;
    background: #f8fafc;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
}

.chat-msg-received {
    background: #fff;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.chat-msg-sent {
    background: var(--primary-light);
    color: var(--primary);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
}

.chat-input {
    flex-grow: 1;
    border: none;
    font-size: 0.85rem;
    outline: none;
}

.chat-send-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1rem;
}

/* --- Interactive Cost Estimator --- */
.estimator-container {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.estimator-controls {
    padding: 3rem;
}

.estimator-sidebar {
    background: var(--bg-light);
    border-left: 1px solid var(--border-color);
    padding: 3rem;
}

.estimator-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    outline: none;
    margin: 1rem 0;
}

.estimator-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(15, 98, 254, 0.4);
    transition: var(--transition-fast);
}

.estimator-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.check-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.check-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    background: #fff;
    user-select: none;
    transition: var(--transition-smooth);
}

.check-card:hover {
    border-color: rgba(15, 98, 254, 0.3);
    background: var(--bg-light);
}

.check-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.check-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.check-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Internal Breadcrumbs Header --- */
.internal-page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-hover) 100%);
    padding: 140px 0 80px 0;
    color: #fff;
}

.internal-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.breadcrumb-corporate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--border-color);
}

.breadcrumb-corporate a {
    color: var(--accent-blue);
}

.breadcrumb-corporate a:hover {
    text-decoration: underline;
}

/* --- Timeline on About Page --- */
.timeline-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-node {
    position: relative;
    margin-bottom: 3.5rem;
    width: 50%;
    padding: 0 2.5rem;
}

.timeline-node-left {
    left: 0;
    text-align: right;
}

.timeline-node-right {
    left: 50%;
    text-align: left;
}

.timeline-badge-circle {
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid #fff;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-node-left .timeline-badge-circle {
    right: -10px;
}

.timeline-node-right .timeline-badge-circle {
    left: -10px;
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* --- Detailed Services Layout --- */
.service-details-block {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
}

.service-details-list {
    list-style: none;
    padding-left: 0;
}

.service-details-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-details-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

/* --- Contact & Hours block --- */
.hours-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.map-container-iframe {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* --- Custom Blog Card --- */
.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta-list {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

/* --- Corporate Footer --- */
.corporate-footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--primary);
}

.footer-logo-svg {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.92rem;
    color: var(--border-color);
    margin-bottom: 1.8rem;
}

.footer-social-box {
    display: flex;
    gap: 0.8rem;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: #fff;
}

.footer-title-corporate {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title-corporate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links-corporate {
    list-style: none;
    padding-left: 0;
}

.footer-links-corporate li {
    margin-bottom: 0.8rem;
}

.footer-links-corporate a {
    font-size: 0.9rem;
    color: var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links-corporate a:hover {
    color: var(--accent-blue);
    transform: translateX(4px);
}

.footer-bottom-corporate {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* --- Adaptive Mobile Tweaks --- */
@media (max-width: 991.98px) {
    .hero-slide-title {
        font-size: 2.8rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .estimator-sidebar {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    .timeline-track::before {
        left: 20px;
    }
    .timeline-node {
        width: 100%;
        text-align: left;
        padding-left: 3rem;
        padding-right: 0;
    }
    .timeline-badge-circle {
        left: 10px !important;
    }
    .timeline-node-right {
        left: 0;
    }
    .nav-item.dropdown-mega:hover .mega-menu-panel {
        display: none;
    }
}
