:root {
    /* Color Palette */
    --primary-color: #5A69E6;
    /* Logo Blue 1 */
    --primary-dark: #4552b8;
    /* Darker shade */
    --secondary-color: #F0F8FF;
    /* Alice Blue (Light Background) */
    --text-color: #2C3E50;
    /* Dark Blue Grey */
    --text-light: #7F8C8D;
    /* Grey for subtitles */
    --white: #ffffff;
    --accent-color: #7984EB;
    /* Logo Blue 2 (Lighter) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(90, 105, 230, 0.15);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(90, 105, 230, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Mouse Follower */
.cursor-follower {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    /* 100% Solid Brand Match */
    border: none;
    box-shadow: 0 0 10px rgba(90, 105, 230, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    /* Use transform for movement (hardware accelerated) */
    transform: translate(-50%, -50%);
    /* Only transition size and color, NOT movement */
    /* Elastic/Bouncy Easing for Scale: cubic-bezier(0.175, 0.885, 0.32, 1.275) */
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        background-color 0.3s,
        transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(2px);
    /* Start hidden to avoid jumping */
    opacity: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    /* Better gradient for blue theme */
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    /* Actually let's go for specific white to light blue */
    background: linear-gradient(180deg, #ffffff 0%, #E6F7FF 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.trust-indicators {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-indicators i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Morphing Blob Animation */
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.abstract-shape {
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.blob-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.morphing-blob {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #5A69E6 0%, #7984EB 100%);
    box-shadow: 10px 10px 30px rgba(90, 105, 230, 0.3);
    animation: morph 8s ease-in-out infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.morphing-blob:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(90, 105, 230, 0.5);
}

.blob-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    pointer-events: none;
    /* Let clicks pass to the anchor */
    font-family: var(--font-heading);
}

.morphing-blob:hover .blob-text {
    opacity: 1;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary-color);
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    background: white;
    /* Logo visibility on dark bg */
    padding: 5px;
    border-radius: 5px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide for now, needs JS for toggle */
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .abstract-shape {
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }
}

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question i.fa-question-circle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question i.fa-chevron-down {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 30px 20px 60px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Active State */
.faq-item.active {
    box-shadow: var(--shadow-hover);
    border-color: rgba(90, 105, 230, 0.2);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content length */
    padding-bottom: 20px;
    /* Ensure padding is added when expanding */
}