/* Design System & Reset */
:root {
    /* Theme Colors */
    --bg-dark: #FFFFFF;
    /* Pure White */
    --bg-card: #F7FAFC;
    /* Soft off-white */
    --text-main: #0F172A;
    /* Dark slate */
    --text-muted: #475569;
    /* Muted slate */
    --accent-primary: #D4AF37;
    /* Gold */
    --accent-secondary: #2E86AB;
    /* Sea blue */
    --accent-glow: rgba(212, 175, 55, 0.2);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 14px 32px -12px rgba(18, 140, 126, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsappPulse 1.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 36px -12px rgba(18, 140, 126, 0.65);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes whatsappPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 32px -12px rgba(18, 140, 126, 0.55);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 18px 40px -12px rgba(18, 140, 126, 0.7);
    }
}

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

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e8eef2 100%);
}

.home-section {
    margin: 2rem auto;
    max-width: calc(100% - 2rem);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 24px 60px -24px rgba(15, 23, 42, 0.28);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f7f8fa 0%, #dfe7ee 100%);
}

.home-section > .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.25);
}

.btn-outline {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links > li > a {
    position: relative;
    padding-bottom: 0.2rem;
}

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

.nav-links > li > a.active {
    color: var(--accent-primary);
    font-weight: 700;
}

.nav-links > li > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.55rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--accent-secondary);
    border-radius: 999px;
}

/* Hero Section (Carousel) */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    /* Override default */
}

/* Removed dark gradient ::before */

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    /* Removed white gradient */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
    /* Optional: subtle dark shade for text readability */
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    margin: 0 auto;
    width: 100%;
    max-width: var(--container-width);
}

.slide-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    color: #FFFFFF;
    /* High contrast on dark hero images */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.25rem;
    color: #E0E0E0;
    /* Light grey for nice contrast */
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.7s;
}

.carousel-slide.active .slide-content h1,
.carousel-slide.active .slide-content p,
.carousel-slide.active .slide-content .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent-primary);
    color: white;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.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(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
    color: #ffffff;
    /* White text for contrast */
}

.service-card {
    background: var(--accent-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: var(--transition-smooth);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(46, 134, 171, 0.24);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.28);
}

.service-card-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.team-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    background: #e0e0e0;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-role {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Page form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.form-status.success {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.form-status.error {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.submission-list {
    display: grid;
    gap: 1.25rem;
}

.table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px -16px rgba(15, 23, 42, 0.2);
}

.requests-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.requests-table th,
.requests-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
}

.requests-table thead {
    background: rgba(46, 134, 171, 0.08);
}

.requests-table th {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.request-idea {
    margin-top: 0.35rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.5;
}

.action-cell {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.view-btn {
    padding: 0.55rem 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--accent-secondary);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.view-btn:hover {
    background: #2b6e8e;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(46, 134, 171, 0.12);
    color: var(--accent-secondary);
}

.delete-btn {
    padding: 0.55rem 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    background: #ef4444;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.delete-btn:hover {
    background: #dc2626;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 2000;
}

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

.modal-dialog {
    width: min(640px, 100%);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 24px;
    box-shadow: 0 24px 70px -20px rgba(2, 6, 23, 0.35);
    overflow: hidden;
    border: 1px solid rgba(46, 134, 171, 0.16);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(46, 134, 171, 0.06);
}

.modal-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-secondary);
    transform: scale(1.08);
}

.modal-body {
    padding: 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.confirm-dialog {
    max-width: 420px;
}

.confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.confirm-actions .view-btn,
.confirm-actions .cancel-btn,
.confirm-actions .delete-btn {
    min-width: 108px;
    box-shadow: 0 10px 20px -12px rgba(15, 23, 42, 0.3);
    cursor: pointer;
}

.confirm-actions .delete-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.confirm-actions .view-btn,
.confirm-actions .cancel-btn {
    background: linear-gradient(135deg, #2e86ab 0%, #3b82f6 100%);
}

.submission-empty {
    background: var(--bg-card);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.submission-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(46, 134, 171, 0.14);
    border-radius: var(--radius-md);
    color: var(--text-muted);
}

.loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(46, 134, 171, 0.18);
    border-top-color: var(--accent-secondary);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--accent-primary);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    filter: none;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.case-study-card {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 35px -20px rgba(15, 23, 42, 0.45);
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: saturate(0.8) brightness(0.85);
}

.case-study-card:hover .case-study-img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}

.case-study-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.25));
    color: #ffffff;
    transition: var(--transition-smooth);
}

.case-study-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0 1rem;
    backdrop-filter: blur(6px);
}

.case-study-logo-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.case-study-overlay h3 {
    color: #ffffff;
    margin-bottom: 0.45rem;
    font-size: 1.35rem;
}

.case-study-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    color: #fbbf24;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--accent-secondary);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 25px -5px rgba(46, 134, 171, 0.24);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.28);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.16);
    opacity: 1;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    color: inherit;
    text-decoration: none;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.footer-brand h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    margin: 0;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

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

.footer-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        margin-left: 0.25rem;
    }

    .logo {
        margin-right: auto;
        margin-left: 0;
        padding-left: 0;
        gap: 0.45rem;
        font-size: 1.15rem;
        white-space: nowrap;
    }

    .nav-logo-img {
        position: static;
        transform: none;
        height: 34px;
        width: auto;
        flex-shrink: 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 2rem;
    }

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

/* Video Hero */
/* Video Hero */
.video-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

/* Marquee Section */
.marquee-wrapper {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 5;
    background: #000;
    /* Restored black background for visibility */
}

.marquee-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    /* Explicit z-index 1 */
    opacity: 0.6;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
    position: relative;
    z-index: 2;
    /* Keep text above video */
}

.marquee-item {
    font-size: 4rem;
    /* Larger text */
    font-weight: 900;
    letter-spacing: 4px;
    margin-right: 4rem;
    text-transform: uppercase;
    color: transparent;
    /* See-through text effect */
    -webkit-text-stroke: 2px #fff;
    /* White outline */
    /* Alternatively solid color if preferred, but outline looks cool on video */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    max-width: 900px;
}

.video-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.video-content p {
    font-size: 1.5rem;
    color: #F0F0F0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Logo Container */
.logo {
    position: relative;
    padding-left: 70px;
    display: flex;
    align-items: center;
}

/* Logo Image */
.nav-logo-img {
    height: 90px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Restore default shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Restore default border */
}

.contact-info-box h4 {
    color: var(--text-main);
}

.contact-info-box p {
    color: var(--text-muted);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(124, 58, 237, 0.1);
    /* Subtle purple bg for icon */
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}