/* Global Variables & Reset */
:root {
    --primary-color: #078586;
    /* Teal */
    --secondary-color: #055a5b;
    /* Darker Teal for Hover */
    --accent-color: #732D0B;
    /* Rust/Brown for Accents */
    --accent-hover: #5a2308;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f3f4f6;
    --gradient-text: linear-gradient(135deg, #078586 0%, #115e59 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --btn-color: #018501;
    /* Vibrant Coral */
    --btn-hover: #018501;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #000000;
    /* User requested Black for Headlines */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--btn-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
    /* User requested Primary for Highlight */
}

.highlight-gold {
    color: var(--primary-color);
    /* Unifying highlight colors */
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.mt-2 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    /* Unique Coral Color */
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-gold {
    background-color: var(--btn-color);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--btn-hover);
    transform: scale(1.05);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-xl {
    padding: 16px 40px;
    font-size: 1.25rem;
}

/* 1. Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.desktop-nav a {
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-text {
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 2. Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, #f3f4f6 0%, #ffffff 50%);
    position: relative;
}

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

.trust-badge {
    display: inline-block;
    background-color: #f0fdf4;
    /* Light Green Bg */
    color: #15803d;
    /* Green Text */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-features i {
    color: #10b981;
    /* Green Checkmarks */
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
    z-index: 2;
}

.lead-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent-color);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #ef4444;
    /* Alert Text */
    margin-top: 15px;
    font-weight: 600;
}

/* 3. Stats Ticker */
.stats-ticker {
    background-color: #fcfcfc;
    color: var(--text-dark);
    padding: 50px 0;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: var(--shadow-sm);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    /* Teal Icons */
}

.stat-item h3 {
    color: #000000;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 4. Overview Section */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f3f4f6;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.bg-blue {
    background-color: #2563eb;
}

.bg-green {
    background-color: #10b981;
}

.bg-purple {
    background-color: #8b5cf6;
}

/* 5. Tools Marquee (CSS Only) */
.tools-slider-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.tools-marquee {
    display: inline-block;
    animation: slide 20s linear infinite;
}

.tool-logo {
    height: 80px;
    width: auto;
    margin: 0 40px;
    object-fit: contain;
}

.tool-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 6. Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table th {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.head-ssa-col {
    background-color: var(--primary-color);
}

.comparison-table .ssa-col {
    position: relative;
    background-color: var(--primary-color);
    color: white;
}

/* 7. Accordion */
.accordion-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f3f4f6;
}

.accordion-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.accordion-content {
    display: none;
    /* Hidden by default */
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* 8. Projects */
.project-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--primary-color);
}

.project-img {
    height: 140px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.bg-p1 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.bg-p2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.bg-p3 {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #f3f4f6;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 5px;
    color: var(--text-light);
}

/* 9. Personas */
.persona-card {
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: var(--transition);
}

.persona-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.persona-card:hover h4,
.persona-card:hover p,
.persona-card:hover i {
    color: var(--white);
}

.persona-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* 10. Career Services */
.career-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.career-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    /* White Icons */
}

.career-item h4 {
    color: white;
}

/* 11. Logos */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.logo-item {
    height: 120px;
    width: auto;
    object-fit: contain;
}



.overview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 12. Mentors */
.mentor-card {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.mentor-img {
    width: 100px;
    height: 100px;
    background-color: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.mentor-img img {
    width: 100%;
}

.mentor-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* 14. Offer & Countdown */
.price-box {
    margin: 30px 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    color: var(--accent-color);
}

.offer-sub {
    color: #111827;
}

.offer-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.discount-badge {
    background-color: #ef4444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1rem;
}

.countdown {
    font-size: 1.5rem;
    font-family: 'Inter', monospace;
    /* Monospace for numbers */
    margin-bottom: 40px;
    background: var(--primary-color);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 80px 0 20px;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-section {
        padding-top: 100px;
    }

    .stats-container {
        justify-content: center;
    }
}

/* Popup Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--btn-color);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--btn-color);
}

.modal-content .form-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}