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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #0A1628 0%, #1a2d4d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .language-toggle {
            margin-left: 1rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        .cta-button {
            background: white;
            color: #0A1628;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
            white-space: nowrap;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        .language-toggle {
            background: rgba(255,255,255,0.2);
            border: 1px solid white;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
            z-index: 101;
            white-space: nowrap;
        }

        .language-toggle:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Hero Section */
        .hero {
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.301);
            z-index: 2;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            filter: brightness(0.6);
        }

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

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 3;
            background: rgba(13, 28, 51, 0.199);
            padding: 2rem;
            border-radius: 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 16px rgba(0,0,0,0.45);
            line-height: 1.05;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.98;
            text-shadow: 1px 1px 8px rgba(0,0,0,0.35);
            line-height: 1.8;
        }

        .hero .btn {
            display: inline-block;
            background: #00A99D;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: none;
            margin: 0.5rem;
            white-space: nowrap;
        }

        .hero .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .mission {
            position: relative;
            background: linear-gradient(rgba(10, 22, 40, 0.35), rgba(26, 45, 77, 0.35)), url('img/3333.jpg') center/cover no-repeat;
            padding: 5rem 2rem;
            text-align: center;
            color: white;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .mission-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            background: rgba(13, 28, 51, 0.658);
            padding: 2.5rem;
            border-radius: 20px;
        }

        .mission h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 16px rgba(0,0,0,0.35);
        }

        .mission p {
            font-size: 1.2rem;
            line-height: 1.9;
            opacity: 0.98;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
        }

        .slider-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 0.5rem;
        }

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

        .dot.active {
            background: white;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .service-card.featured-card {
            border: 2px solid #00A99D;
            transform: scale(1.02);
        }

        .badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #00A99D;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #0A1628;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-item {
            padding: 2rem;
            background: #f0f8f7;
            border-left: 4px solid #00A99D;
            border-radius: 5px;
        }

        .feature-item h4 {
            color: #0A1628;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature-item p {
            color: #666;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0A1628 0%, #1a2d4d 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin: 3rem 0;
            border-radius: 10px;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-section .btn {
            background: #00A99D;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .cta-section .btn:hover {
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #00A99D;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #00A99D;
        }

        .info-value a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .info-value a:hover {
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 2rem;
            text-align: center;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: linear-gradient(135deg, #0A1628 0%, #1a2d4d 100%);
            margin: 5% auto;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            color: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-btn {
            color: white;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .close-btn:hover {
            opacity: 0.7;
        }

        .modal-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            clear: both;
            text-align: center;
        }

        .modal-info {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            font-size: 2rem;
            margin-right: 1.5rem;
            min-width: 50px;
            text-align: center;
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-weight: bold;
            display: block;
            margin-bottom: 0.3rem;
            opacity: 0.9;
        }

        .info-value {
            font-size: 1.3rem;
            font-weight: bold;
        }

        .working-hours {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }

        .working-hours-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .modal-close-btn {
            width: 100%;
            padding: 1rem;
            background: #00A99D;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-close-btn:hover {
            transform: scale(1.02);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding-right: 150px;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding-right: 150px;
            }

            nav ul {
                gap: 1rem;
                flex-wrap: wrap;
            }

            .cta-button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

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

            .hero p {
                font-size: 1rem;
            }

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

            .modal-content {
                width: 95%;
                margin: 20% auto;
            }
        }

        @media (max-width: 480px) {
            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .cta-button {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
                white-space: nowrap;
            }

            .language-toggle {
                padding: 0.4rem 0.7rem;
                font-size: 0.8rem;
            }
        }