* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-dark: #0B132B;
    --navy-primary: #1E3A5F;
    --tech-blue: #0066FF;
    --emerald-green: #10B981;
    --wa-green: #25D366;
    --text-main: #334155;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Top Notification Bar */
.top-bar {
    background: var(--navy-dark);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar strong { color: var(--white); }

.top-wa-link {
    color: var(--wa-green);
    text-decoration: none;
    font-weight: 700;
}

/* Header & Dropdown Navigation */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    height: 48px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; }

.brand-title { 
    font-weight: 800; 
    font-size: 1.25rem; 
    color: var(--navy-dark); 
    line-height: 1.1;
}

.brand-sub { 
    font-size: 0.725rem; 
    letter-spacing: 1px; 
    color: var(--tech-blue); 
    font-weight: 800; 
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.925rem;
}

.nav-links a:hover { color: var(--tech-blue); }

.dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 230px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    list-style: none;
    padding: 8px 0;
    z-index: 1001;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: var(--text-main);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--tech-blue);
}

.dropdown:hover .dropdown-menu { display: block; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy-dark);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--tech-blue);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: var(--navy-dark) !important;
    border: 2px solid var(--navy-dark);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-wa {
    background: var(--wa-green);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.2);
    color: #60A5FA;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 18px; }
.hero p { font-size: 1.1rem; color: #CBD5E1; margin-bottom: 24px; }

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.hero-actions .btn-secondary {
    color: var(--white) !important;
    border-color: var(--white);
}

.hero-subline {
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-media { display: flex; justify-content: center; }

/* Reduced Hero Image Card Sizes */
.hero-image-card {
    background: var(--navy-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

.hero-img-wrapper { 
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
}

.hero-fitted-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-caption {
    padding: 12px 16px;
    background: rgba(11, 19, 43, 0.9);
    display: flex;
    flex-direction: column;
}

.hero-image-caption strong { color: var(--tech-blue); font-size: 0.85rem; }
.hero-image-caption span { font-size: 0.75rem; color: #94A3B8; }

/* Sections */
section { padding: 70px 0; }
.section-title { margin-bottom: 40px; }
.section-title h2 { font-size: 1.85rem; color: var(--navy-dark); margin-bottom: 10px; }
.section-title p { color: var(--text-muted); max-width: 700px; margin: 0 auto; }

.section-footer-note {
    margin-top: 30px;
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 1.05rem;
}

.section-footer-statement {
    margin-top: 40px;
    font-weight: 800;
    color: var(--tech-blue);
    font-size: 1.2rem;
}

/* Cards Grid */
.why-section { background: var(--bg-light); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card-num {
    font-weight: 800;
    color: var(--tech-blue);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.card h3 { color: var(--navy-dark); margin-bottom: 10px; font-size: 1.15rem; }
.card p { font-size: 0.925rem; color: var(--text-main); }

/* Service Cards Grid */
.services-grid-six {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card-expanded {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    border-top: 4px solid var(--tech-blue);
    box-shadow: var(--shadow-sm);
}

.service-card-expanded h3 { color: var(--navy-dark); margin-bottom: 10px; font-size: 1.25rem; }
.service-desc { font-size: 0.925rem; color: var(--text-main); margin-bottom: 16px; font-weight: 500; }

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

.service-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
    padding-left: 18px;
}

.service-list li::before {
    content: "•";
    color: var(--tech-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Steps / How We Work (Enforced 3-On-A-Row) */
.how-we-work-section { background: var(--bg-light); }

.steps-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tech-blue);
    display: block;
    margin-bottom: 8px;
}

.step-card h4 { color: var(--navy-dark); margin-bottom: 8px; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; color: var(--text-main); }

/* Technology Roadmap */
.roadmap-section { background: var(--white); }

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.roadmap-col {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.roadmap-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.roadmap-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roadmap-header {
    font-weight: 800;
    font-size: 1.25rem;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    color: var(--white);
    margin-bottom: 12px;
}

.now-col .roadmap-header { background: #EF4444; }
.next-col .roadmap-header { background: #F59E0B; }
.future-col .roadmap-header { background: var(--emerald-green); }

.roadmap-sub { font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; color: var(--navy-dark); }

.roadmap-col ul { list-style: disc; padding-left: 20px; }
.roadmap-col li { font-size: 0.9rem; margin-bottom: 6px; color: var(--text-main); }

/* Leadership / Profile Section */
.leadership-section { background: var(--bg-light); }

.leadership-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.leadership-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.leadership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leadership-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 19, 43, 0.9);
    color: var(--white);
    text-align: center;
    padding: 6px;
    font-weight: 700;
    font-size: 0.8rem;
}

.leadership-bio-col h3 { font-size: 1.6rem; color: var(--navy-dark); }
.bio-tagline { font-size: 0.85rem; font-weight: 700; color: var(--tech-blue); display: block; margin-bottom: 14px; }
.bio-text { font-size: 0.95rem; margin-bottom: 12px; color: var(--text-main); }

.signature-quote {
    margin-top: 18px;
    padding: 12px 18px;
    background: var(--bg-light);
    border-left: 3px solid var(--tech-blue);
    font-style: italic;
    font-weight: 700;
    color: var(--navy-dark);
}

/* Projects Section */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.project-header h3 { color: var(--navy-dark); font-size: 1.2rem; }
.project-industry { background: var(--bg-light); padding: 4px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 700; color: var(--tech-blue); }

.project-body p { font-size: 0.9rem; margin-bottom: 8px; }

.project-tech {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.project-tech span {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Reviews / Testimonials */
.reviews-section { background: var(--white); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.review-text { font-size: 0.9rem; font-style: italic; margin-bottom: 16px; color: var(--text-main); }
.review-author { display: flex; flex-direction: column; font-size: 0.825rem; }
.review-author strong { color: var(--navy-dark); }
.review-author span { color: var(--text-muted); }

/* Contact CTA Section */
.contact-section { background: var(--bg-light); }

.contact-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.contact-box h2 { font-size: 1.8rem; color: var(--navy-dark); margin-bottom: 12px; }
.contact-box p { color: var(--text-muted); margin-bottom: 24px; }

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-footnote { font-size: 0.85rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Partner Logos Marquee */
.partners-section {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.marquee { display: flex; overflow: hidden; user-select: none; }

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 30px;
    animation: scrollMarquee 25s linear infinite;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    font-size: 0.85rem;
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Floating WhatsApp Badge */
.whatsapp-float-callout {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--wa-green);
    color: var(--white);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float-callout img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.float-text { font-size: 0.825rem; font-weight: 700; }

.float-pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 1; }
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #94A3B8;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
}

.mt-30 { margin-top: 30px; }

/* Responsive Grid Adjustments */
@media (max-width: 900px) {
    .hero-grid, .leadership-card { grid-template-columns: 1fr; }
    .hero-media { margin-top: 20px; }
    .steps-grid-three { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container { padding: 14px 20px; }
    .mobile-menu-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        align-items: flex-start;
    }
    .nav-links.active { display: flex; }
    .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 14px; }
}

@media (max-width: 600px) {
    .steps-grid-three { grid-template-columns: 1fr; }
}