* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 90px; /* Add padding to account for fixed top bar */
}

/* Top Bar */
          .top-bar {
            background: #003366;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            background: #FDB714;
            color: #003366;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            font-size: 14px;
            transition: transform 0.3s;
        }
/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 50px; /* Position below top bar */
    width: 100%;
    z-index: 1001;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover, nav a.active {
    color: #003366;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #F2A516;
}

/* Dropdown Menu */
.menu {
    list-style: none;
    position: relative;
    display: inline-block;
}

.menu-item {
    position: relative;
    display: inline-block;
}

.selectZone {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.selectZone:hover {
    color: #003366;
}

.selectZone::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #F2A516;
    width: 0;
    transition: width 0.3s ease;
}

.menu-item:hover .selectZone::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 5px;
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #003366;
    padding-left: 25px;
}

.menu-item:hover .dropdown {
    display: flex;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher img {
    width: 25px;
    height: auto;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-switcher img:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 20px;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text h2 {
    color: #003366;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-text h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text strong {
    color: #003366;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
}

.content-text ul li {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.content-text ul li::before {
    content: '•';
    color: #F2A516;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Video Section */
.video-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #F2A516;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #E89B0C;
}

.play-button i {
    color: white;
    font-size: 32px;
    margin-left: 5px;
}

.video-text h2 {
    color: #003366;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-about svg {
    margin-bottom: 20px;
}

.footer-about p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: #F2A516;
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F2A516;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    font-family: inherit;
}

.footer-form textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-form button {
    width: 100%;
    padding: 12px;
    background: #F2A516;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-form button:hover {
    background: #E89B0C;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    color: #666;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #004080;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    body {
        padding-top: 150px; /* More padding for mobile when nav wraps */
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .content-grid,
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dropdown {
        position: relative;
        box-shadow: none;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .top-bar-content {
        padding: 0 20px;
    }
}
 .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }
