:root {
    --primary: #0f2a44;
    --accent: #2563eb;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0f2a44 0%, #2563eb 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); line-height: 1.6; background: #fff; }

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

/* NAVBAR */
.navbar {
    background: rgba(255,255,255,0.98);
    position: sticky; top: 0; z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 70px; margin-right: 10px; }
.logo-fallback { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
.logo-fallback span { color: var(--accent); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 35px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-btn { background: var(--primary); color: white !important; padding: 10px 22px; border-radius: 8px; }

/* MOBILE MENU ICON */
.mobile-menu { display: none; cursor: pointer; font-size: 1.4rem; color: var(--primary); }

/* HERO */
.hero { 
    padding: 120px 0 100px; 
    background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
}
.hero-content { max-width: 800px; }
.badge { background: #eff6ff; color: var(--accent); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; display: inline-block; margin-bottom: 24px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; color: var(--primary); }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: black; margin-bottom: 40px; max-width: 650px; font-weight: 600;}
.hero-btns { display: flex; gap: 16px; }

/* SHARED BUTTONS */
.btn-primary { background: var(--gradient); color: #fff; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; }

/* SECTIONS */
.section { padding: 120px 0; }
.bg-light { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; font-weight: 800; }
.section-title.center { text-align: center; margin-bottom: 50px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stats-row { display: flex; gap: 40px; margin-top: 40px; }
.stat-item h3 { font-size: 2rem; color: var(--accent); }
.stat-item p { font-size: 0.9rem; font-weight: 700; color: var(--text-gray); }
.glass-card { background: var(--primary); color: white; padding: 50px; border-radius: 24px; position: relative; }
.glass-card i { font-size: 2rem; opacity: 0.3; margin-bottom: 20px; display: block; }

/* PROCESS GRID */
/* PROCESS SECTION STYLES */
.bg-light {
    background-color: #f8fafc; /* Professional off-white background */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Workflow Diagram Styling */
.workflow-diagram-container {
    max-width: 200px;
    margin: 0 auto 0px; /* Centers the box and adds space before the cards */
    padding: 30%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow for "real" depth */
    border: 1px solid #e2e8f0;
    text-align: center;
}

.workflow-diagram-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Individual Card Styling */
.process-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 42, 68, 0.08);
}

/* Step Number Decoration (Background) */
.step-tag {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.05; /* Keeps it subtle in the background */
    pointer-events: none;
}

.process-card i {
    font-size: 2.2rem;
    color: var(--accent); /* Blue accent color */
    margin-bottom: 25px;
    display: block;
}

.process-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.process-card p {
    color: #64748b; /* Gray text for better readability */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlighted Card (The Unique ID Step) */
.highlight-card {
    background: var(--primary); /* Deep Navy */
    color: #ffffff;
    border: none;
    box-shadow: 0 15px 35px rgba(15, 42, 68, 0.2);
}

.highlight-card i {
    color: #60a5fa; /* Lighter blue icon for visibility on dark background */
}

.highlight-card h3 {
    color: #ffffff;
}

.highlight-card p {
    color: #cbd5e1; /* Lighter gray for readability */
}

.highlight-card .step-tag {
    color: #ffffff;
    opacity: 0.1;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .workflow-diagram-container {
        padding: 15px;
        margin-bottom: 40px;
    }
    
    .process-card {
        padding: 35px 25px;
    }
}

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.s-box { padding: 40px; border-radius: 20px; background: var(--bg-light); border: 1px solid #e2e8f0; text-align: center; }
.s-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; }

/* CONTACT BANNER */
.contact-banner { background: var(--gradient); padding: 80px; border-radius: 30px; color: white; display: flex; justify-content: space-between; align-items: center; }
.c-info { display: flex; align-items: center; margin-top: 15px; gap: 15px; font-size: 1.1rem; }

/* FOOTER */
/* MAIN FOOTER */
.main-footer {
    background: var(--primary);
    color: #cbd5e1;
    padding: 80px 0 30px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-desc {
    margin-top: 20px;
    line-height: 1.8;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

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

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-disclaimer {
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bottom-flex {
        justify-content: center;
        text-align: center;
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 3rem; }
    .contact-banner { flex-direction: column; text-align: center; padding: 40px; }
    .contact-info-grid { margin-top: 30px; }
}

@media (max-width: 768px) {
    .mobile-menu { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: white;
        padding: 40px 20px; box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; width: 100%; text-align: center; }
}

