:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Modern spring transition */
}

/* Custom Scrollbar for smooth modern feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Load Animation */
body {
    opacity: 0;
    animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Delay Classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Top Notification Marquee */
.top-notification {
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    /*padding: 8px 0;*/
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-ltr 25s linear infinite;
    will-change: transform;
}

.marquee-content p {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    padding-right: 50px; /* Space between loops if duplicated */
}

@keyframes marquee-ltr {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
}

nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-btn-login {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-links .nav-btn-login::after {
    display: none !important;
}

.nav-btn-login:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}


/* Hero Section */
.hero {
    padding: 160px 2rem 120px;
    background: radial-gradient(at 0% 0%, rgba(30, 64, 175, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
    background-color: #fcfdfd;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-qualifications {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content p.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px -10px rgba(30, 64, 175, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(30, 64, 175, 0.6);
}

.btn-whatsapp {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-whatsapp i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.3);
}

/* Glassmorphic Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: inline-flex;
}

.stat-item {
    padding-right: 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:last-child {
    padding-right: 0;
    border-right: none;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    display: block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sections */
section {
       padding: 42px 0rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Brief Section */
.about-brief {
    background: #ffffff;
        padding: 42px 0rem;
}

.about-brief-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-image-stack img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.about-image-stack::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-light);
    border-radius: 30px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    list-style: none;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.expertise-item i {
    color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .about-brief-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Step Cards */
.step-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border-top: 5px solid var(--primary-light);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: -40px auto 1.5rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    border: 4px solid var(--white);
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.15);
    border-color: rgba(59, 130, 246, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.card:hover .card-icon {
    transform: scale(1.15) translateY(-5px);
    color: var(--primary-light);
}

.step-card:hover .card-icon {
    transform: scale(1.15) translateY(-5px);
    color: var(--primary-light);
}

/* Team Members */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.15);
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 2rem 1.5rem;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.team-info .team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
footer {
    /*background: #0f172a;*/
    color: #1e40af;
    padding: 80px 2rem 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #1e40af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color:  #3b82f6;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* FAQ */
.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
.main-nav {
    max-width: 1100px;
    padding: 1rem 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.custom-hero {
    background: linear-gradient(120deg, #f0f7ff 0%, #e6f0fa 50%, #dbeafe 100%);
    /*padding: 180px 2rem 100px;*/
    min-height: auto;
}

.custom-hero-container {
    max-width: 1100px;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin: 0 auto;
}

.custom-hero-title {
    font-size: 3.2rem;
    color: #0f305c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.custom-hero-qualifications {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.custom-hero-subtitle {
    font-size: 1.15rem;
    color: #1e40af;
    font-style: italic;
    font-weight: 500;
}

.custom-hero-desc {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    max-width: 450px;
}

.custom-hero-btns {
    gap: 1.2rem;
    display: flex;
}

.custom-hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.custom-hero-img {
    max-width: 120%;
    margin-right: -10%;
    margin-bottom: -100px;
    height: auto;
    animation: none;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }
    .hero-container, .custom-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .custom-hero-qualifications {
        justify-content: center;
    }
    .custom-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns, .custom-hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-content h1, .custom-hero-title {
        font-size: 2.5rem;
    }
    .custom-hero-image-wrapper {
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
    .custom-hero-img {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: -50px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .custom-hero {
        padding: 140px 1.5rem 80px;
    }
    .custom-hero-title {
        font-size: 2rem;
    }
    .custom-hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .custom-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}
