/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Teal & Slate */
    --primary: #006274;
    --primary-dark: #004d5b;
    --primary-light: #e0f2f5;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --white: #ffffff;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-600);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--slate-900);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-teal {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 98, 116, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white) !important;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--slate-900) !important;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    z-index: 1001;
}

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

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--slate-900);
    z-index: 1001;
}

/* Mobile Menu Container */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background-color: var(--slate-900);
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 98, 116, 0.2);
    color: #4fd1c5;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 209, 197, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Sections */
.section {
    padding: 60px 0;
}

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

.section-tag {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* Content Layouts */
.content-wrapper {
    display: grid;
    gap: 60px;
}

/* Text + Image Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split-layout img {
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse>* {
    direction: ltr;
}

/* Cards Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--slate-100);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--slate-800);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    /* Prevent edge touching on mobile */
}

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

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    /* Scrollable on small screens */
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--slate-300);
    cursor: pointer;
    transition: color 0.2s;
}

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

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--slate-900);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--slate-900);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    /* Header */
    .nav-menu {
        display: none;
    }

    /* Hide desktop menu */
    .mobile-toggle {
        display: block;
    }

    /* Show hamburger */

    /* Hero */
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Layouts */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-layout.reverse {
        direction: ltr;
    }

    /* Reset direction for stacking */
    .img-col {
        order: -1;
    }

    /* Image on top usually looks better on mobile */

    /* Forms */
    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* --- content_additions.css appended to style.css --- */

/* Leads and Typography */
.lead {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Check Lists */
.check-list {
    margin-top: 1.5rem;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--slate-600);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: 800;
}

/* Fancy Numeric List */
.fancy-list {
    padding-left: 0;
    margin-top: 1rem;
}

.fancy-list li {
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary-light);
}

/* Timeline (Vertical) */
.timeline {
    position: relative;
    padding: 20px 0;
    border-left: 2px solid var(--slate-200);
    margin-left: 16px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 1px var(--slate-200);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--slate-900);
}

/* Statistics Grid (Duration Section) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: var(--slate-50);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--slate-200);
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Process Steps (Horizontal Cards) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.step-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--slate-200);
    line-height: 1;
}

.step-date {
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
}

.step-card ul {
    padding-left: 20px;
    list-style: disc;
    margin-top: 12px;
}

.step-card li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Highlight & Warning Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e0f2f5 0%, #ffffff 100%);
    border: 1px solid var(--primary-light);
    padding: 24px;
    border-radius: 16px;
}

.warning-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 24px;
    border-radius: 16px;
}

.warning-box h3 {
    color: #c53030;
}

.warning-box li {
    color: #742a2a;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .timeline {
        margin-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Redesign Additions (Process & Duration) --- */

/* Journey Map (Process) */
.journey-map {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.journey-map::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: var(--slate-200);
    z-index: 1;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 200px;
}

.journey-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 5px solid white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.journey-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    transition: transform 0.3s ease;
}

.journey-step:hover .journey-content {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.journey-date {
    display: inline-block;
    background: var(--slate-100);
    color: var(--slate-600);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.journey-content p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin: 0;
}

/* Roadmap Grid (Duration) */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.roadmap-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid var(--slate-300);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.roadmap-card.phase-1 {
    border-left-color: #4fd1c5;
}

.roadmap-card.phase-2 {
    border-left-color: #38b2ac;
}

.roadmap-card.phase-3 {
    border-left-color: #319795;
}

.roadmap-card.phase-4 {
    border-left-color: #285e61;
}

.phase-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.roadmap-card h4 {
    margin: 0 0 10px 0;
    color: var(--slate-900);
    font-size: 1.1rem;
}

.roadmap-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--slate-600);
}

/* Stats Container (Duration) */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    background: var(--primary);
    padding: 40px;
    border-radius: 16px;
    color: white;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
}

.stat-item p {
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Redesign */
@media (max-width: 768px) {
    .journey-map {
        flex-direction: column;
        gap: 0;
    }

    .journey-map::before {
        width: 4px;
        height: 100%;
        left: 23px;
        top: 0;
        right: auto;
    }

    .journey-step {
        display: flex;
        margin-bottom: 30px;
        text-align: left;
        align-items: flex-start;
    }

    .journey-circle {
        margin: 0 20px 0 0;
    }

    .journey-step:last-child {
        margin-bottom: 0;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Centered Timeline Redesign (User Request) --- */

.timeline-centered {
    position: relative;
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Horizontal Track */
.timeline-track {
    position: absolute;
    top: 35px;
    /* Aligns with center of circles (70px / 2) */
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.t-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

/* Number Circle */
.t-circle {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* Card */
.t-card {
    background: var(--slate-50);
    padding: 24px 20px;
    border-radius: 16px;
    width: 200px;
    /* Fixed width for uniform look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--slate-100);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.t-step:hover .t-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.t-card h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: var(--slate-900);
}

.t-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-track {
        display: none;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 40px;
    }

    .t-step {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }

    .t-circle {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .t-card {
        width: 100%;
        flex: 1;
    }
}

/* --- Index Redesign & Polish --- */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Modern Header Tweaks */
.nav-link {
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

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

/* Expanded Footer */
.pro-footer {
    background: #2d313a;
    color: #cbd5e1;
    padding-top: 80px;
    padding-bottom: 40px;
    font-size: 0.95rem;
}

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

.footer-brand h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #2dd4bf;
    text-decoration: underline;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(213, 198, 198, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Multi-Step Modal Styles */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--slate-200);
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    background: var(--slate-200);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate-600);
    border: 3px solid white;
}

.step-dot.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.step-dot.completed {
    background: #0d9488;
    color: white;
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

/* File Upload Box */
.file-upload-box {
    border: 2px dashed var(--slate-300);
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    background: var(--slate-50);
    color: var(--slate-600);
    transition: all 0.2s;
}

.file-upload-box:hover {
    border-color: var(--primary);
    background: #f0f9ff;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Contact Section Redesign --- */
.contact-hero {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    mask-image: linear-gradient(to bottom, black, transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-sub {
    font-size: 0.9rem;
    color: var(--slate-300);
    margin-top: 4px;
}

/* --- Contact Section v2 (Split Design) --- */
.contact-v2-section {
    padding: 20px 0 80px;
    /* Reduced top padding */
    background: #f8fafc;
    /* Light slate bg */
}

/* Specific Override for Contact Gap */
#contact .section-header {
    margin-bottom: 0px;
}

#contact .contact-v2-section {
    padding-top: 10px;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    /* Changed from start to center for better vertical alignment */
}

.contact-v2-info {
    padding-right: 20px;
}

.contact-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.contact-headline {
    font-size: 3rem;
    /* Increased size */
    color: var(--slate-900);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.contact-desc {
    color: var(--slate-600);
    margin-bottom: 48px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-item-row {
    display: flex;
    gap: 24px;
    /* Increased gap */
    margin-bottom: 40px;
    /* Increased margin */
}

.contact-icon-box {
    width: 56px;
    /* Larger icon box */
    height: 56px;
    background: white;
    /* Added bg */
    border-radius: 12px;
    /* standard radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Added shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item-text h5 {
    font-size: 1.1rem;
    color: var(--slate-900);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item-text p {
    color: var(--slate-600);
    font-size: 1rem;
    margin: 0;
}

/* Right Form Card */
.contact-form-card {
    background: white;
    padding: 48px;
    /* Increased padding */
    border-radius: 24px;
    /* Increased radius */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    border: 1px solid var(--slate-100);
}

.contact-form-card h3 {
    margin-bottom: 32px;
    color: var(--slate-900);
    font-size: 1.75rem;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-input {
    width: 100%;
    padding: 16px 20px;
    /* Larger inputs */
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
    margin-bottom: 24px;
    color: var(--slate-700);
    font-size: 1rem;
    background: var(--slate-50);
}

.contact-input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.contact-input::placeholder {
    color: var(--slate-400);
}

.btn-send {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-send:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 98, 116, 0.4);
}

@media (max-width: 900px) {
    .contact-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row-split {
        grid-template-columns: 1fr;
    }
}



/* --- Pro Header Redesign --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

header .logo span {
    color: var(--primary);
    font-size: 2rem;
    line-height: 0;
    margin-top: -8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Custom Overrides for Header Buttons */
header .btn-primary {
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
    /* primary color shadow */
    transition: transform 0.2s, box-shadow 0.2s;
}

header .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

/* Mobile Toggle Polish */
.mobile-toggle {
    font-size: 1.8rem;
    color: var(--slate-800);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-toggle:hover {
    background: var(--slate-100);
}

/* --- Navbar Image Match Overrides --- */
header .container {
    max-width: 1400px;
    /* Wider for that horizontal spread */
    padding: 0 50px;
}

.logo {
    color: #0d9488 !important;
    /* Specific Teal tone */
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    gap: 40px;
    /* More spacing between links */
}

.nav-link {
    font-size: 15px;
    /* Specific readable size */
    color: #64748b;
    /* Muted grey */
    font-weight: 500;
}

.btn-primary {
    border-radius: 4px;
    /* Image shows sharper corners usually for this corporate style, or slight round */
    padding: 10px 24px;
    font-size: 14px;
}

/* --- Header Layout v2 (3-Part Split) --- */
header .container.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* 1. Logo Stacked */
.logo {
    line-height: 1.1;
    text-align: left;
    display: inline-block;
    font-size: 1.4rem;
    color: #0d9488 !important;
    /* Teal */
}

/* 2. Centered Links (Multi-line) */
.nav-links-center {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex: 1;
    /* Take available space */
    text-align: center;
}

.nav-links-center .nav-link {
    font-size: 0.85rem;
    /* Smaller text */
    line-height: 1.3;
    max-width: 100px;
    /* Force wrap for long titles */
    display: inline-block;
    color: #64748b;
    font-weight: 500;
}

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

.nav-link::after {
    display: none;
}

/* Remove underline effect for this layout if cluttering */

/* 3. Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.nav-link-login {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.nav-link-login:hover {
    color: var(--primary);
}

.btn-sm {
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
}

/* Responsive Hide */
/* --- Carousel Styles --- */
.hero-carousel {
    position: relative;
    height: 600px;
    /* Fixed height for consistency */
    overflow: hidden;
    background: var(--slate-900);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    /* Centering content */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* --- Hero Slider Styles --- */
.hero-slider-container {
    position: relative;
    height: 600px;
    /* Fixed height for slider */
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* Overlay */
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-sub {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide.active .hero-slide-sub {
    opacity: 1;
    transform: translateY(0);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* --- Content Text Fix --- */
.content-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-700);
}

/* --- About Section Image Alignment --- */
#about .split-layout {
    align-items: stretch;
    /* Make both columns same height */
}

#about .img-col {
    display: flex;
    /* Flex container to allow child to fill height */
}

#about .img-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Fill the area, cropping if necessary */
    border-radius: 20px;
    /* Maintain existing radius */
}

/* --- Mentors Section --- */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.mentor-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    text-align: center;
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.mentor-img-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.mentor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.mentor-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--slate-100);
}

.mentor-name {
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 5px;
}

.mentor-designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.mentor-education {
    color: var(--slate-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mentor-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mentor-social {
    color: var(--slate-400);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.mentor-social:hover {
    color: var(--primary);
}

.mentor-specialization {
    color: var(--slate-600);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-style: italic;
}

/* --- RESPONISVE STYLES --- */
@media (max-width: 768px) {

    /* Global Container */
    .container {
        padding: 0 20px;
    }

    /* Header */
    header {
        height: auto;
        padding: 15px 0;
        position: relative;
        /* Unstick on mobile if content is tall? sticky is fine */
    }

    header .container.header-grid {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links-center {
        flex-wrap: wrap;
        gap: 15px;
        margin: 5px 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 40px;
    }

    .hero-slider,
    .hero-slider-container {
        height: 500px;
        /* Slightly smaller on mobile */
    }

    /* Sections General */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Split Layout (Text + Image) */
    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .split-layout .img-col {
        order: -1;
        /* Image first */
    }

    .split-layout.reverse .img-col {
        order: -1;
        /* Image first even for reverse */
    }

    /* Mentors */
    .mentors-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile is safer or auto-fit 280px might fit 1 */
        gap: 30px;
    }

    /* Contact V2 */
    .contact-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-v2-info {
        text-align: center;
    }

    .contact-item-row {
        justify-content: center;
        /* Center contact items */
        text-align: left;
        /* Text inside looks better left aligned usually, but let's center for stacked */
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
        align-items: center;
    }

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

    .form-row-split {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        align-items: center;
        /* Flex direction column usually for footers */
    }

    .footer-links li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- HAMBURGER MENU & BANNER FIXES --- */
@media (max-width: 768px) {

    /* Show Toggle */
    .mobile-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary);
    }

    /* Hide Desktop Nav */
    .desktop-only {
        display: none !important;
    }

    /* Header Layout Adjustment */
    header .container.header-grid {
        flex-direction: row;
        /* Keep row for Logo + Toggle */
        align-items: center;
        justify-content: space-between;
    }

    /* Hero Banner Fix - Display Completely */
    .hero-slide {
        background-size: contain;
        /* Ensure full image is visible */
        background-repeat: no-repeat;
        background-position: top center;
        /* Or center center */
        background-color: var(--slate-900);
        /* Fill empty space */
        height: 100%;
    }

    .hero-slider,
    .hero-slider-container {
        height: 300px;
        /* Reduce height to match aspect ratio better on mobile */
    }

    /* Adjust padding for content below header since header height might vary */
    main {
        padding-top: 0;
    }
}
/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1002;
    border-radius: 12px;
    padding: 8px 0;
    top: 100%;
    left: 0;
    border: 1px solid var(--slate-100);
}

.dropdown-content a {
    color: var(--slate-600);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block; /* Show */
}

.dropdown:hover > .nav-link {
    color: var(--primary);
}
