/**
 * تنسيقات صفحة الهبوط
 * Landing Page Styles
 */

:root {
    --landing-primary: #001428;
    --landing-secondary: #00D4FF;
    --landing-accent: #C5A059;
    --landing-bg-dark: #050510;
    --landing-bg-light: #ffffff;
    --landing-text-dark: #1a1a1a;
    --landing-text-light: #6b7280;
    --landing-border: rgba(0, 0, 0, 0.08);
}

/* Fixed Background Video */
.fixed-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    margin: 0;
    padding: 0;
}

.fixed-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
    margin: 0;
    padding: 0;
}

/* ==================================================
   Hero Section with Video Background
   ================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.hero-section .video-background {
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 20, 40, 0.7) 0%, rgba(0, 20, 40, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    max-height: 90vh;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-content.text-center {
    text-align: center;
    color: #fff;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--landing-secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--landing-secondary);
    animation: pulse 2s infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--landing-secondary);
    opacity: 0.75;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* More Partners Button */
.more-partners-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #00D4FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.more-partners-btn:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.more-partners-btn span {
    display: inline-block;
}

.more-partners-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-secondary) 100%);
    z-index: 0;
    display: none;
}

/* تحسين عرض الفيديو */
.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================================================
   Sections
   ================================================== */

.landing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 6rem;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--landing-text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--landing-secondary);
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.title-line {
    width: 32px;
    height: 4px;
    background: var(--landing-primary);
    border-radius: 2px;
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.view-all-link {
    color: var(--landing-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: var(--landing-secondary);
}

/* ==================================================
   Glass Card Effect
   ================================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ==================================================
   Announcements Section
   ================================================== */

.announcements-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.announcements-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.announcement-card {
    display: flex;
    flex-direction: column;
}

.announcement-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin-bottom: 0.75rem;
}

.announcement-content p {
    color: var(--landing-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ==================================================
   Courses Section
   ================================================== */

.courses-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}


.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.course-card {
    text-align: center;
    padding: 0;
    /* Reset padding for full-width image */
    overflow: hidden;
    /* Ensure image respects border radius */
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
}

/* تحسين البطاقة على الجوال */
@media (max-width: 768px) {
    .course-card {
        border-radius: 12px;
    }

    .course-image-container {
        border-radius: 12px 12px 0 0;
    }
}

.course-image-container {
    width: 100%;
    height: 220px;
    min-height: 220px;
    position: relative;
    background: linear-gradient(135deg, var(--landing-primary) 0%, #002244 100%);
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.course-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    will-change: transform;
}

.course-card:hover .course-image {
    transform: scale(1.08);
}

.course-card:hover .course-image-container::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
}

/* تحسين الصورة على الجوال */
@media (max-width: 768px) {
    .course-image-container {
        height: 150px;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .course-image-container {
        height: 130px;
        min-height: 130px;
    }

    .course-card:hover .course-image {
        transform: scale(1.05);
    }
}

.course-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--landing-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.course-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin-bottom: 0.75rem;
}

.course-description {
    color: var(--landing-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--landing-border);
}

.course-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-accent);
}

/* ==================================================
   News Section
   ================================================== */

.news-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin-bottom: 0.75rem;
}

.news-content p {
    color: var(--landing-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 12px;
    color: var(--landing-text-light);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--landing-border);
}

.news-meta i {
    margin-left: 4px;
}

/* ==================================================
   Stats Section
   ================================================== */

.stats-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    border-right: 4px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
    border-right-color: rgba(0, 212, 255, 0.5);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--landing-primary);
    margin-bottom: 1rem;
}

.stat-card:nth-child(2) .stat-icon,
.stat-card:nth-child(3) .stat-icon {
    color: var(--landing-accent);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--landing-text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--landing-text-light);
}

/* ==================================================
   About Section
   ================================================== */

.about-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 128px;
    height: 128px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.about-content p {
    color: var(--landing-text-dark);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==================================================
   Footer
   ================================================== */

.landing-footer {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--landing-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--landing-text-light);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--landing-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--landing-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--landing-border);
    color: var(--landing-text-light);
    font-size: 14px;
}

/* ==================================================
   Responsive Design
   ================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle-landing {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

.mobile-menu-toggle-landing:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle-landing.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00D4FF;
    color: #00D4FF;
}

.mobile-menu-toggle-landing.active i::before {
    content: "\f00d";
    /* fa-times */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .landing-header .header-content {
        flex-wrap: wrap;
    }

    .landing-header .header-center {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        display: flex !important;
        /* Keep visible on tablets */
    }

    .header-nav {
        gap: 1rem;
        font-size: 14px;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        max-height: 75vh;
    }

    .hero-container {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .landing-header .header-container {
        padding: 0 1rem;
    }

    .landing-header .header-content {
        padding: 0.75rem 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.75rem;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle-landing {
        display: flex;
        order: 2;
    }

    /* Hide navigation by default on mobile */
    .landing-header .header-center {
        display: none !important;
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .landing-header .header-center.active {
        display: block !important;
    }

    .header-nav {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(0, 212, 255, 0.1);
        color: #00D4FF;
        padding-right: 2rem;
    }

    .nav-link::after {
        display: none;
    }

    /* Logo adjustments */
    .header-right {
        order: 1;
        flex: 1;
    }

    .header-logo {
        gap: 0.75rem;
    }

    .logo-white {
        height: 32px;
    }

    .logo-text {
        display: flex;
    }

    .logo-title {
        font-size: 13px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    /* Action buttons */
    .header-left {
        order: 3;
        gap: 0.5rem;
    }

    .header-btn {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }

    .header-btn .btn-text {
        display: none;
    }

    .header-btn i {
        margin: 0;
    }

    .announcements-slider,
    .courses-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
        max-height: 65vh;
    }

    .hero-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .landing-header .header-content {
        padding: 0.6rem 0;
    }

    .landing-header .header-container {
        padding: 0 0.75rem;
    }

    .header-left {
        gap: 0.4rem;
    }

    .header-btn {
        padding: 0.4rem 0.6rem;
        font-size: 11px;
        min-width: 36px;
        height: 36px;
    }

    .header-btn i {
        font-size: 14px;
    }

    .logo-white {
        height: 28px;
    }

    .logo-title {
        font-size: 11px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    .mobile-menu-toggle-landing {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .landing-header .header-center {
        top: 60px;
    }

    .landing-header .header-center.active {
        display: block !important;
    }

    .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   Header Styling for Landing Page
   ================================================== */

/* ==================================================
   Landing Page Header
   ================================================== */

.landing-header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.landing-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.landing-header .header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.landing-header .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Ensure header-center is visible on desktop */
@media (min-width: 769px) {
    .landing-header .header-center {
        display: flex !important;
    }
}

.landing-header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header-btn-primary {
    background-color: #00D4FF;
    color: #ffffff;
    border-color: #00D4FF;
}

.header-btn-primary:hover {
    background-color: #00b8e6;
    border-color: #00b8e6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.header-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.header-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00D4FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #00D4FF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-white {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.2;
}

.landing-main .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.landing-main .header-container .flex {
    display: flex;
    align-items: center;
}

.landing-main .logo-section {
    display: flex;
    align-items: center;
}

.landing-main .logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}