* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Top Bar */
        .contact-topbar {
            background: #003366;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
        }

        .contact-topbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .contact-social {
            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;
        }

        .contact-social:hover {
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 48px;
            width: 100%;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #003366;
        }

        nav a.active {
            color: #003366;
        }
        .menu-item {
    position: relative;
    display: inline-block;
    }

    .selectZone {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    }

    /* underline effect */
    .selectZone::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f4b400;
    transition: width 0.3s ease;
    }

    .menu-item:hover .selectZone::after {
    width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    min-width: 240px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    }

    .dropdown li {
    list-style: none;
    }

    .dropdown a {
    display: block;
    padding: 12px 20px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    }

    .dropdown a:hover {
    background: #2a2a2a;
    color: #fff;
    }



    .menu {
    list-style: none;
    }

     .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }


    .menu-item:hover .dropdown {
    display: block;
    }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FDB714;
        }
        .lang-switcher {
            display: flex;
            gap: 10px;
        }

        .lang-switcher img {
            width: 24px;
            height: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .lang-switcher img:hover {
            opacity: 1;
        }


        /* Contact Info Section */
        .contact-info-section {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .contact-info-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            font-size: 16px;
            color: #666;
        }

        .contact-info-icon {
            width: 45px;
            height: 45px;
            background: #003366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Forms Section */
        .contact-forms-section {
            padding: 80px 40px;
            background: white;
        }

        .contact-forms-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-form-block h2 {
            font-size: 32px;
            color: #003366;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .contact-form-group {
            margin-bottom: 25px;
        }

        .contact-input,
        .contact-select,
        .contact-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .contact-input:focus,
        .contact-select:focus,
        .contact-textarea:focus {
            outline: none;
            border-color: #003366;
        }

        .contact-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-file-upload {
            margin-bottom: 25px;
        }

        .contact-file-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            font-size: 15px;
            color: #666;
            transition: background 0.3s;
        }

        .contact-file-btn:hover {
            background: #e8e8e8;
        }

        .contact-file-input {
            display: none;
        }
        .contact-hero{
            margin-top: 50px;
        }
        .contact-submit-btn {
            padding: 15px 45px;
            background: #FDB714;
            color: #003366;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(253, 183, 20, 0.4);
        }

        /* Footer */
        .contact-footer {
            background: #2d2d2d;
            color: white;
            padding: 60px 40px 30px;
        }

        .contact-footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .contact-footer-about h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .contact-footer-about p {
            font-size: 15px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 25px;
        }

        .contact-footer-social {
            display: flex;
            gap: 10px;
        }

        .contact-footer-social-link {
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .contact-footer-social-link:hover {
            background: #FDB714;
        }

        .contact-footer-links h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .contact-footer-links ul {
            list-style: none;
        }

        .contact-footer-links ul li {
            margin-bottom: 12px;
        }

        .contact-footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .contact-footer-links ul li a:hover {
            color: #FDB714;
        }

        .contact-footer-form h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .contact-footer-form-inner {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-footer-form-inner input,
        .contact-footer-form-inner select,
        .contact-footer-form-inner textarea {
            padding: 12px 15px;
            background: #3d3d3d;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 14px;
        }

        .contact-footer-form-inner textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-footer-form-inner button {
            padding: 12px 30px;
            background: #FDB714;
            color: #003366;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .contact-footer-form-inner button:hover {
            transform: translateY(-2px);
        }

        .contact-footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }

        /* Scroll to Top */
        .contact-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 100;
        }

        .contact-scroll-top.visible-scroll {
            opacity: 1;
        }

        .contact-scroll-top:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 1024px) {
            .contact-forms-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .contact-header-inner {
                flex-direction: column;
                gap: 20px;
            }

            .contact-navigation {
                flex-wrap: wrap;
                justify-content: center;
            }

            .contact-footer-grid {
                grid-template-columns: 1fr;
            }

            .contact-hero h1 {
                font-size: 48px;
            }
        }