

/* --- 1. ROOT VARIABLES & GLOBAL SETUP --- */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #00b4d8;
    --secondary-dark: #007ba1;
    --accent-bg: #f8f9fa;
    --text-muted: #6c757d;
    --transition-standard: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: auto; }

body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
    perspective: 1200px;
    transform-style: preserve-3d;
}

h1, h2, h3, h4, .navbar-brand, .nav-link, .btn-register-innovative, .footer-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 2. GLOBAL 3D BACKGROUND WATERMARK --- */
#global-bg-layer {
    position: fixed;
    top: -10%; left: -10%;
    width: 120vw; height: 120vh;
    background-image: url('https://images.unsplash.com/photo-1525625230556-8e8ad8aaad1b?q=80&w=2500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: translateZ(-500px) scale(1.5);
    z-index: -100;
    pointer-events: none;
    opacity: 0.03;
}

/* --- 3. TOP BAR & NAVIGATION --- */
.header-top { 
    background: #ffffff; 
    font-size: 14px; 
    padding: 10px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    position: relative; 
    z-index: 1050; 
}

.top-info-item { 
    font-weight: 500; 
    color: #444; 
    display: inline-flex; 
    align-items: center; 
    text-decoration: none; 
    margin-right: 20px; 
    transition: 0.3s;
}

.top-info-item:hover { color: var(--secondary-color); }

.linkedin-btn-modern { 
    display: inline-flex; 
    align-items: center; 
    background: #0077b5; 
    color: white !important; 
    padding: 6px 18px; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 13px; 
    transition: var(--transition-standard); 
}

.linkedin-btn-modern:hover { background: var(--primary-color); transform: translateY(-2px); }

/* Sticky Navbar & Scroll Effects */
.navbar { 
    background: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(20px); 
    padding: 15px 0; 
    transition: transform 0.5s ease, box-shadow 0.5s ease !important; 
}

.navbar.scroll-down { transform: translateY(-100%); }
.navbar.scroll-up { transform: translateY(0); box-shadow: 0 15px 40px rgba(0,0,0,0.1); padding: 10px 0 !important; }

.navbar-professional .nav-link {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #002D5B !important;
    padding: 10px 15px !important;
    transition: 0.3s;
}

/* --- SERVICES DROPDOWN (SLIDE DOWN/UP ON CLICK) --- */
.nav-item.dropdown .dropdown-menu {
    display: block !important; /* Overriding BS default to use transitions */
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px); /* Starts lower */
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.4s;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    padding: 15px;
    pointer-events: none;
}

/* Triggered by Bootstrap's .show class when link is clicked */
.nav-item.dropdown .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); /* Slides up to position */
    pointer-events: auto;
}

.dropdown-item { 
    font-weight: 600; 
    padding: 10px 15px; 
    border-radius: 4px; 
    transition: 0.3s; 
    color: var(--primary-color); 
}

.dropdown-item:hover { 
    background-color: var(--accent-bg); 
    color: var(--secondary-color); 
    padding-left: 20px; 
}

/* Registration Button */
.btn-register-innovative {
    background: linear-gradient(90deg, #007bff 0%, #00d2ff 100%) !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 0px var(--secondary-dark);
    transition: var(--transition-standard);
}

.btn-register-innovative:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4); }

/* --- 4. HERO SECTION --- */
.hero-wrapper { height: 90vh; position: relative; overflow: hidden; background: #000; transform-style: preserve-3d; }
.ken-burns-img { width: 100%; height: 90vh; background-size: cover; background-position: center; transition: none !important; }

.hero-overlay { 
    position: absolute; inset: 0; 
    background: linear-gradient(rgba(13, 27, 42, 0.35), rgba(13, 27, 42, 0.45)); 
    display: flex; align-items: center; justify-content: center; z-index: 2; 
}

.welcome-badge-modern { background: var(--secondary-color); color: white; padding: 10px 25px; font-weight: 700; display: inline-block; border-radius: 4px; margin-bottom: 25px; letter-spacing: 2px; box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3); transition: 0.3s; cursor: pointer; }
        .welcome-badge-modern:hover { transform: scale(1.08); background: #00c4ec; }

.hero-title-main { color: white; font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title-main span { display: block; color: #fff; }

.animated-line { 
    height: 4px; background: var(--secondary-color); width: 0; 
    margin: 25px auto 45px; border-radius: 2px; transition: width 1.5s ease 0.2s; 
}
.hero-content-centered.loaded .animated-line { width: 140px; }

.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn-hero-primary { background: var(--secondary-color); color: white; padding: 16px 38px; border-radius: 4px; text-decoration: none; font-weight: 700; border: 2px solid var(--secondary-color); transition: 0.3s; }
.btn-hero-secondary { background: transparent; color: white; padding: 16px 38px; border-radius: 4px; text-decoration: none; font-weight: 700; border: 2px solid white; transition: 0.3s; }
.btn-hero-primary:hover { background: transparent; transform: translateY(-5px); }
.btn-hero-secondary:hover { background: white; color: var(--primary-color); transform: translateY(-5px); }

/* --- 5. CONTENT SECTIONS --- */
.section-padding { padding: 100px 0; }

.reveal, .perspective-container, .hero-content-centered {
    opacity: 0;
    will-change: transform, opacity;
}

/* Who We Are Slider */
.who-slider-container { height: 500px; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
.who-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 2s ease-in-out; }
.who-slide.active { opacity: 1; }

.primary-text { color: var(--primary-color); }
.text-secondary-alt { color: var(--secondary-color); }
.tracking-widest { letter-spacing: 3px; }
.accent-line-modern { width: 60px; height: 4px; background: var(--secondary-color); margin: 15px auto 40px; }

/* 3D Cards */
.card-3d-effect {
    background: #fff; height: 100%; border-radius: 15px; border: 1px solid rgba(0,0,0,0.06);
    display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.card-3d-effect:hover {
    transform: rotateY(12deg) rotateX(5deg) translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(0, 180, 216, 0.2) !important;
    border-color: var(--secondary-color);
}

.icon-box { 
    width: 65px; height: 65px; background: var(--accent-bg); border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; margin-bottom: 25px; 
    color: var(--secondary-color); font-size: 26px; transition: 0.3s;
}
.card-3d-effect:hover .icon-box { background: var(--secondary-color); color: white; }

.card-image-top { height: 200px; overflow: hidden; border-radius: 15px 15px 0 0; }
.card-image-top img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.solution-list { list-style: none; padding: 0; font-size: 14px; color: var(--text-muted); }
.solution-list li { margin-bottom: 8px; display: flex; align-items: flex-start; }
.solution-list li i { color: var(--secondary-color); margin-right: 10px; margin-top: 4px; font-size: 11px; }

/* --- 6. COMPLIANCE ORGANIC LAYOUT --- */
.compliance-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 80px; margin-top: 30px; }
.partner-item { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 150px; padding: 20px; }

.glow-sphere { 
    position: absolute; width: 100px; height: 100px; border-radius: 50%; 
    filter: blur(40px); opacity: 0.15; z-index: 1; transition: all 0.5s ease; 
}

.partner-info { position: relative; z-index: 2; }
.partner-abbr { display: block; font-size: 1.4rem; font-weight: 800; color: #2d3748; }
.partner-full { display: block; font-size: 0.85rem; color: #718096; font-weight: 500; text-transform: uppercase; margin-top: 5px; }

.color-blue .glow-sphere { background: #007bff; }
.color-purple .glow-sphere { background: #805ad5; }
.color-teal .glow-sphere { background: #38b2ac; }
.color-gold .glow-sphere { background: #d69e2e; }
.color-red .glow-sphere { background: #e53e3e; }

.partner-item:hover .glow-sphere { transform: scale(1.6); opacity: 0.4; }
.header-minimal .dot-separator { width: 40px; height: 4px; background: #007bff; display: block; margin: 0 auto 15px; border-radius: 10px; }

/* --- 7. FOOTER INNOVATIVE LIGHT --- */
.footer-innovative-light {
    background: linear-gradient(135deg, #f0f7ff 0%, #e2eeff 100%);
    padding: 60px 0 30px;
    color: #4a5568;
    border-top: 4px solid #00d2ff;
}

.footer-logo { font-size: 1.6rem; font-weight: 800; color: #1a365d; }
.footer-logo span { color: #007bff; }
.brand-description { font-size: 0.9rem; line-height: 1.5; color: #5d6d7e; max-width: 280px; }

.footer-title { 
    font-size: 1rem; font-weight: 700; color: #1a365d; 
    margin-bottom: 20px; position: relative; 
}
.footer-title::after { content: ""; display: block; width: 25px; height: 3px; background: #00d2ff; margin-top: 8px; border-radius: 2px; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #5d6d7e; text-decoration: none; font-size: 0.9rem; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: #007bff; transform: translateX(5px); }

.contact-item { display: flex; text-decoration: none !important; margin-bottom: 12px; color: #5d6d7e !important; font-size: 0.85rem; transition: 0.2s; }
.contact-item i { color: #007bff; margin-right: 12px; margin-top: 3px; width: 14px; text-align: center; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(0, 0, 0, 0.06); font-size: 0.8rem; color: #7f8c8d; }

/* --- 8. RESPONSIVE MEDIA QUERIES --- */
@media (min-width: 1200px) {
    .navbar-collapse { display: flex !important; justify-content: space-between; }
    .navbar-nav { flex: 1; margin: 0 40px !important; }
}

@media (max-width: 1199.98px) {
    .navbar-collapse { 
        background: #ffffff; padding: 20px !important; 
        text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        border-radius: 0 0 15px 15px; 
    }
    .navbar-nav .nav-link { border-bottom: 1px solid #f1f1f1; display: block; }
    
    /* On Mobile, the dropdown shouldn't slide but rather expand */
    .nav-item.dropdown .dropdown-menu { 
        position: static !important; transform: none !important; 
        box-shadow: none !important; opacity: 1 !important; 
        visibility: visible !important; display: none !important; 
    }
    .nav-item.dropdown .dropdown-menu.show { display: block !important; }

    .btn-register-innovative { width: 100%; display: block; margin-top: 20px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
}









/* --- FULL WIDTH NAVIGATION FIX --- */


/* 1. Ensure the collapse container uses all available space between logo and button */
@media (min-width: 1200px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row;
        /* This spreads items from far left (Home) to far right (Contact) */
        justify-content: space-between !important; 
        width: 100%;
        margin: 0 30px; /* Adjust this to control gap between Logo and Home / Contact and Button */
    }

    .navbar-professional .nav-link {
        /* CRITICAL: Prevents words from stacking on top of each other */
        white-space: nowrap !important;
        /* Reduced padding because we have 10 items to fit */
        padding-left: 3px !important;
        padding-right: 5px !important;
        font-size: 0.90rem !important; /* Smaller font to ensure it fits in one row */
        letter-spacing: 0px;
    }

    /* Adjust the registration button to be compact */
    .btn-register-innovative {
        white-space: nowrap !important;
        padding: 10px 15px !important;
        font-size: 0.75rem !important;
    }
}

/* 2. Handle specific laptop sizes (1200px to 1400px) where space is tight */
@media (min-width: 1200px) and (max-width: 1400px) {
    .navbar-professional .nav-link {
        font-size: 0.7rem !important;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    
    .navbar-nav {
        margin: 0 15px; /* Less margin for smaller screens */
    }
}

/* 3. Keep dropdowns from breaking the layout */
.nav-item.dropdown .dropdown-menu {
    position: absolute;
    z-index: 1000;
}

/* Mobile Fix (keep standard stacking) */
@media (max-width: 1199.98px) {
    .navbar-nav {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 15px !important;
    }
}












/*--iso--*/

/* --- SIMPLE STRATEGY STYLES --- */
.compliance-strategy-section {
    background-color: #fcfdfe; /* Very subtle off-white */
    border-top: 1px solid #eee;
}

.strategy-list {
    position: relative;
    padding-left: 20px;
}

/* Vertical line behind numbers */
.strategy-list::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #dee2e6;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    transition: 0.3s ease;
}

.strategy-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Barlow Condensed';
    margin-right: 30px;
    flex-shrink: 0;
    z-index: 2;
    transition: 0.3s;
}

.strategy-text h5 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.strategy-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Subtle hover effect */
.strategy-item:hover .strategy-number {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.strategy-item:hover .strategy-text h5 {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .strategy-list::before { left: 25px; }
    .strategy-number { width: 40px; height: 40px; margin-right: 15px; }
}






/*-----Others-----*/

/* --- COGNITIVE FRAMEWORK INNOVATIVE STYLES --- */
.cognitive-framework {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

/* Big Outline Watermark */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 168, 204, 0.08);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.vision-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    border-left: 3px solid var(--secondary-color);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* The Nodes */
.node-container { position: relative; margin-top: 80px; }

.node-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.node-item { text-align: center; position: relative; }

.glass-sphere {
    width: 100px; height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 168, 204, 0.2);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.glass-sphere.active-node {
    background: var(--white);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 40px rgba(0, 168, 204, 0.2);
}

.node-item:hover .glass-sphere {
    transform: translateY(-15px) scale(1.1);
    background: var(--primary-color);
    color: #fff;
}

/* Pulsing Effect */
.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    animation: node-pulse 2s infinite;
    opacity: 0;
}

@keyframes node-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.node-content h5 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.node-content p {
    font-size: 0.9rem;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .node-item { margin-bottom: 60px; }
    .bg-watermark { font-size: 20vw; }
}





/*----DIGITALISATION----*/

/* --- DIGITAL BLUEPRINT SECTION STYLES --- */
.digital-blueprint-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.tech-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blueprint-divider {
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px auto;
}

.blueprint-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 40px 0;
}

/* SVG Path Animation */
.data-stream-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.moving-path {
    stroke-dashoffset: 100;
    animation: dashMove 5s linear infinite;
}

@keyframes dashMove {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

.data-pulse {
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0% { r: 4; opacity: 1; }
    50% { r: 8; opacity: 0.5; }
    100% { r: 4; opacity: 1; }
}

/* The Content Points (No Cards) */
.blueprint-point {
    position: relative;
    z-index: 1;
    text-align: center;
}

.point-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.blueprint-point:hover .point-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 168, 204, 0.2);
}

.point-text h5 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.point-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Tech Stack Bottom Bar */
.tech-stack-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 80px;
    border-top: 1px solid #f0f0f0;
}

.tech-stack-bar span {
    font-size: 12px;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 1px;
}

.stack-dot {
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Responsive Mobile Handling */
@media (max-width: 991px) {
    .blueprint-point { margin-bottom: 50px; }
    .tech-stack-bar { flex-wrap: wrap; gap: 10px; }
}






/*-----data analysit-----*/

        :root {
            --primary-navy: #002d5b;
            --neon-cyan: #00f2ff;
            --soft-slate: #f1f5f9;
            --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .fw-900 { font-weight: 900; }
        .fw-800 { font-weight: 800; }
        .text-navy { color: var(--primary-navy); }
        .text-gradient-cyan {
            background: linear-gradient(90deg, var(--primary-navy), #00a8cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* HERO SECTION */
        .da-hero-pro { padding: 120px 0; background: #fff; border-bottom: 1px solid #eee; position: relative; overflow: hidden; }
        .status-badge { display: inline-flex; align-items: center; background: var(--soft-slate); padding: 5px 15px; border-radius: 50px; font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--primary-navy); }
        .pulse-green { height: 8px; width: 8px; background: #22c55e; border-radius: 50%; margin-right: 10px; box-shadow: 0 0 10px #22c55e; animation: blink 1.5s infinite; }
        .metric-mini { background: white; border: 1px solid #eee; padding: 10px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; }
        
        .abstract-data-viz { position: relative; }
        .viz-circle { position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border: 10px solid var(--neon-cyan); border-radius: 50%; opacity: 0.1; }
        .img-main { width: 100%; border-radius: 30px; }
        .glass-overlay-card { position: absolute; bottom: 20px; right: -20px; background: rgba(255,255,255,0.8); backdrop-filter: blur(15px); padding: 20px; border-radius: 20px; border: 1px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 200px; }
        .progress-bar-wrap { height: 4px; background: #eee; border-radius: 5px; margin-top: 10px; }
        .progress-fill { width: 75%; height: 100%; background: var(--neon-cyan); border-radius: 5px; animation: slideProgress 3s forwards; }

        /* ENGINE CARD (The 01 Card) */
        .engine-card { display: flex; background: white; border-radius: 40px; overflow: hidden; border: 1px solid #eee; transition: var(--transition-smooth); }
        .engine-visual { width: 40%; position: relative; overflow: hidden; }
        .engine-visual img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); animation: scan 4s linear infinite; }
        .overlay-tag { position: absolute; top: 20px; left: 20px; background: var(--primary-navy); color: white; padding: 5px 12px; font-size: 10px; font-weight: 800; border-radius: 4px; }
        .engine-content { width: 60%; padding: 60px; position: relative; }
        .engine-num { position: absolute; top: 40px; right: 60px; font-size: 80px; font-weight: 900; color: #f1f5f9; z-index: 0; }
        .cap-item { display: flex; align-items: flex-start; position: relative; z-index: 1; }
        .cap-icon { width: 45px; height: 45px; background: var(--soft-slate); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary-navy); }
        .cap-item h6 { font-weight: 800; margin-bottom: 5px; color: var(--primary-navy); }
        .cap-item p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }
        .tech-stack { display: flex; align-items: center; gap: 10px; padding-top: 30px; border-top: 1px solid #f1f5f9; margin-top: 30px; }
        .tech-stack span { font-size: 11px; font-weight: 900; color: #94a3b8; }
        .tech-pill { background: #f8fafc; border: 1px solid #e2e8f0; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; color: #475569; }

        .engine-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,0.06); border-color: var(--neon-cyan); }
        .engine-card:hover .engine-visual img { transform: scale(1.05); }

        /* GRID MODULES */
        .module-card { background: white; border-radius: 30px; border: 1px solid #eee; overflow: hidden; transition: var(--transition-smooth); }
        .module-img { height: 220px; position: relative; overflow: hidden; }
        .module-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .module-icon { position: absolute; bottom: 20px; left: 20px; width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-navy); font-size: 1.5rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .module-body { padding: 40px; }
        .module-body h4 { font-weight: 800; color: var(--primary-navy); }
        .module-link { text-decoration: none; color: var(--neon-cyan); font-weight: 800; font-size: 13px; text-transform: uppercase; transition: 0.3s; }
        .module-link:hover { color: var(--primary-navy); letter-spacing: 1px; }
        
        .module-card:hover { transform: translateY(-10px); border-color: var(--neon-cyan); box-shadow: 0 30px 60px rgba(0, 168, 204, 0.1); }
        .module-card:hover .module-img img { transform: scale(1.1); filter: contrast(1.1); }

        /* HISTORICAL STRIP */
        .historical-strip { background: #f8fafc; border-radius: 20px; overflow: hidden; border: 1px solid #e2e8f0; }
        .strip-img { height: 100%; min-height: 120px; }
        .strip-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: 0.5; }
        .btn-outline-navy { border: 2px solid var(--primary-navy); color: var(--primary-navy); padding: 10px 25px; border-radius: 8px; font-weight: 800; font-size: 13px; cursor: pointer; transition: 0.3s; }
        .btn-outline-navy:hover { background: var(--primary-navy); color: white; }

        /* PIPELINE */
        .pipeline-wrapper { position: relative; padding-left: 20px; }
        .pipe-step { display: flex; align-items: flex-start; margin-bottom: 50px; position: relative; }
        .pipe-node { width: 45px; height: 45px; background: var(--primary-navy); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; margin-right: 25px; z-index: 2; }
        .pipe-step::after { content: ''; position: absolute; left: 22px; top: 45px; bottom: -50px; width: 2px; background: #e2e8f0; z-index: 1; }
        .pipe-step:last-child::after { display: none; }
        .pipe-content h6 { font-weight: 800; color: var(--primary-navy); text-transform: uppercase; letter-spacing: 1px; }

        @keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
        @keyframes slideProgress { from { width: 0; } to { width: 75%; } }

        @media (max-width: 991px) {
            .engine-card { flex-direction: column; }
            .engine-visual, .engine-content { width: 100%; }
            .engine-visual { height: 250px; }
        }



    /* --- HISTORICAL INTELLIGENCE INNOVATION STYLES --- */
    .historical-intel-container {
        background: #fcfdfe;
        border-radius: 40px;
        padding: 60px;
        position: relative;
        overflow: hidden;
        border: 1px solid #eef2f7;
        box-shadow: 0 20px 50px rgba(0, 51, 102, 0.03);
    }

    /* Subtle Grid Background */
    .intel-bg-grid {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#d1d9e6 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.3;
        z-index: 0;
    }

    /* The Central "Data Lens" */
    .data-lens {
        width: 280px;
        height: 280px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .lens-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        border: 10px solid #fff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }

    .lens-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.5);
        transition: 0.5s;
    }

    .lens-orbit {
        position: absolute;
        inset: -20px;
        border: 2px dashed var(--neon-cyan);
        border-radius: 50%;
        animation: rotateLens 20s linear infinite;
        opacity: 0.4;
    }

    /* Floating Data Dots */
    .data-dot {
        position: absolute;
        width: 15px;
        height: 15px;
        background: var(--neon-cyan);
        border-radius: 50%;
        box-shadow: 0 0 15px var(--neon-cyan);
        z-index: 3;
        animation: pulseDot 2s infinite;
    }
    .dot-1 { top: 20%; right: -5%; }
    .dot-2 { bottom: 10%; left: 0%; animation-delay: 1s; }

    /* Glassmorphic Intelligence Cards */
    .intel-glass-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid #fff;
        padding: 35px;
        border-radius: 25px;
        height: 100%;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    }

    .intel-glass-card:hover {
        transform: translateY(-10px);
        background: #fff;
        box-shadow: 0 30px 60px rgba(0, 168, 204, 0.1);
        border-color: var(--neon-cyan);
    }

    .card-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 900;
        background: var(--primary-navy);
        color: #fff;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .tag-cyan { background: var(--neon-cyan); color: var(--primary-navy); }

    .intel-glass-card h4 {
        font-weight: 800;
        color: var(--primary-navy);
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .intel-glass-card p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
    }

    /* Action Bar */
    .archive-access-bar {
        background: #fff;
        display: inline-flex;
        align-items: center;
        padding: 10px 10px 10px 25px;
        border-radius: 50px;
        border: 1px solid #eee;
    }

    .btn-intel-action {
        background: var(--primary-navy);
        color: #fff;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 12px;
        transition: 0.3s;
        cursor: pointer;
    }

    .btn-intel-action:hover {
        background: var(--neon-cyan);
        color: var(--primary-navy);
        transform: scale(1.05);
    }

    /* Animations */
    @keyframes rotateLens {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    @keyframes pulseDot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.5); opacity: 0.5; }
    }

    /* Responsive Fixes */
    @media (max-width: 991px) {
        .historical-intel-container { padding: 40px 20px; }
        .data-lens { width: 200px; height: 200px; margin-bottom: 40px; }
        .archive-access-bar { width: 100%; justify-content: space-between; }
    }




    /****education and training***/

    /* --- THE LEARNING ECOSYSTEM SECTION STYLES --- */

.ecosystem-section {
    background: radial-gradient(circle at top right, #f8fafc, #e2e8f0);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Large Background Watermark */
.eco-watermark {
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 12vw;
    font-weight: 900;
    color: rgba(0, 51, 102, 0.03); /* Super subtle navy */
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.eco-container {
    position: relative;
    z-index: 1;
}

/* Content Node (Individual items) */
.eco-node {
    padding: 30px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
}

/* Floating Icon Wrapper */
.node-icon-wrap {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.8rem;
    color: var(--secondary-color); /* #00a8cc */
    box-shadow: 0 15px 35px rgba(0, 168, 204, 0.2);
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

/* The Rotating Dashed Ring */
.node-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
    opacity: 0.3;
    transition: 0.4s;
}

/* Animation for the dashed ring */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Typography for the nodes */
.eco-node h4 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Barlow Condensed', sans-serif;
}

.eco-node p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* --- HOVER EFFECTS --- */

.eco-node:hover {
    transform: translateY(-10px);
}

.eco-node:hover .node-icon-wrap {
    background: var(--primary-color); /* #003366 */
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.3);
}

.eco-node:hover .node-icon-wrap::after {
    opacity: 0.8;
    inset: -15px;
    animation-duration: 8s; /* Ring speeds up on hover */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ecosystem-section {
        padding: 60px 0;
    }
    .eco-node {
        margin-bottom: 50px;
    }
    .eco-watermark {
        font-size: 20vw;
    }
}






/*------depth insepction-------*/

/* --- INNOVATIVE "WHY CHOOSE" SECTION (THE HUB) --- */
:root {
    --primary-navy: #001a33;
    --secondary-cyan: #00a8cc;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

.hub-section {
    background: radial-gradient(circle at center, var(--primary-navy) 0%, #000a1a 100%);
    padding: 100px 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Central Orbital Core */
.hub-central-core {
    width: 250px;
    height: 250px;
    background: rgba(0, 168, 204, 0.1);
    border: 2px solid var(--secondary-cyan);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 168, 204, 0.3);
}

.hub-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-align: center;
    text-transform: uppercase;
}

.hub-logo-text span {
    color: var(--secondary-cyan);
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Pulsing Orbital Rings */
.ring {
    position: absolute;
    border: 1px solid rgba(0, 168, 204, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hub-pulse 4s infinite;
    pointer-events: none;
}
.ring-1 { width: 350px; height: 350px; }
.ring-2 { width: 550px; height: 550px; animation-delay: 1s; }

@keyframes hub-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Glassmorphic Nodes (The "Non-Card" Content) */
.hub-node {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 24px;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.hub-node i {
    font-size: 2.5rem;
    color: var(--secondary-cyan);
    margin-bottom: 20px;
    display: block;
}

.hub-node h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hub-node p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Hover State */
.hub-node:hover {
    background: rgba(0, 168, 204, 0.15);
    border-color: var(--secondary-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .hub-central-core {
        width: 180px;
        height: 180px;
        margin-bottom: 50px;
    }
    .hub-node {
        margin-bottom: 20px;
    }
    .ring {
        display: none; /* Clean up mobile view */
    }
}





/*------contact------*/

/* --- INNOVATIVE CTA SECTION --- */
.innovative-cta-section {
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.font-barlow {
    font-family: 'Barlow Condensed', sans-serif;
}

.cta-glass-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5a 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.2);
}

/* Add a subtle glow/decoration to the card */
.cta-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.text-neon {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

.stat-item {
    padding-left: 15px;
    border-left: 3px solid var(--secondary-color);
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--white);
}

.cta-action-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.cta-action-box .btn-light:hover {
    background: var(--secondary-color);
    color: white !important;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.cta-action-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .cta-glass-card {
        padding: 40px 25px;
        text-align: center;
    }
    .stat-item {
        border-left: none;
        border-top: 2px solid var(--secondary-color);
        padding: 15px 0 0 0;
        margin-top: 10px;
    }
    .display-5 {
        font-size: 2.2rem;
    }
} 







/* --- 1. PAGE HEADER (GET IN TOUCH) --- */
.page-header {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('../img/contact/con1.jpg');
    background-size: cover; 
    background-position: center; 
    padding: 100px 0; 
    color: white; 
    text-align: center;
}

.page-header h1 { 
    font-size: 4rem; 
    font-weight: 800; 
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.5); 
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

/* --- 2. SEND US A MESSAGE (FORM WRAPPER) --- */
.contact-form-wrapper { 
    background: #ffffff; 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); 
    border-top: 8px solid #00b4d8; /* Secondary Color */
}

.form-control { 
    border: 1px solid #dee2e6; 
    padding: 12px 15px; 
    border-radius: 8px; 
    transition: 0.3s;
}

.form-control:focus { 
    border-color: #00b4d8; 
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.15); 
    outline: none;
}

.btn-submit { 
    background: #0d1b2a; /* Primary Color */
    color: white; 
    border-radius: 8px; 
    padding: 15px; 
    font-weight: 800; 
    text-transform: uppercase; 
    border: none; 
    width: 100%; 
    transition: 0.3s; 
    font-family: 'Barlow Condensed', sans-serif; 
    letter-spacing: 1px;
}

.btn-submit:hover { 
    background: #00b4d8; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

/* --- 3. CONTACT INFORMATION & LOCATION LOGO FIX --- */
.info-card { 
    background: #f8f9fa; 
    padding: 40px; 
    border-radius: 20px; 
    height: 100%; 
}

.info-link { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
    display: block; 
    margin-bottom: 25px; 
}

.info-item { 
    display: flex; 
    align-items: center; /* Vertically centers icon with text */
}

/* This fixes the "Location Logo" not looking proper */
.info-icon { 
    width: 50px; 
    height: 50px; 
    background: #0d1b2a; 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 20px; 
    flex-shrink: 0; /* Important: Prevents icon from squishing on small screens */
    font-size: 1.2rem;
    transition: 0.3s;
}

.info-link:hover .info-icon {
    background: #00b4d8;
    transform: scale(1.1);
}

.info-text h5 { 
    margin-bottom: 2px; 
    font-weight: 700; 
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    color: #0d1b2a;
}

.info-text p { 
    margin-bottom: 0; 
    color: #6c757d; 
    font-size: 0.95rem;
    line-height: 1.4;
}

/* --- 4. RESPONSIVENESS (ALL SCREENS) --- */

/* Tablets */
@media (max-width: 991.98px) {
    .page-header { padding: 80px 0; }
    .page-header h1 { font-size: 3rem; }
    .info-card { margin-top: 30px; }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .contact-form-wrapper { padding: 30px 20px; }
    .info-card { padding: 30px 20px; }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        font-size: 1rem;
    }
    .info-text h5 { font-size: 1rem; }
    .info-text p { font-size: 0.85rem; }
}

/* --- 5. ANIMATION REVEAL --- */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease-out; 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}






/* Flips the phone icon horizontally */
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block; /* Required for the transform to apply correctly */
}
