* {
            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 {
            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;
        }

        .social-icon:hover {
            transform: translateY(-2px);
        }




        .hero {
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            color: white;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-align: center;
            padding: 40px 20px;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.5rem;
            opacity: 0.9;
        }

        /* Section Styles */
        section {
            min-height: 100vh;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .section-content {
            max-width: 1200px;
            width: 100%;
        }

        h2 {
            color: #003366;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
        }

        /* Slide 1 - Introduction */
        #intro {
            background: #f5f5f5;
        }

        .intro-box {
            background: white;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
        }

        .intro-box h3 {
            color: #003366;
            font-size: 2rem;
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .intro-box p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
            text-align: justify;
        }

        .highlight {
            font-weight: 600;
            color: #003366;
        }

        /* Slide 2 - Reasons */
        #reasons {
            background: white;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .reason-card {
            text-align: center;
            padding: 20px;
        }

        .icon-circle {
            width: 120px;
            height: 120px;
            background: #FDB927;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 3rem;
            color: #003366;
            transition: transform 0.3s ease;
        }

        .reason-card:hover .icon-circle {
            transform: scale(1.1);
        }

        .reason-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Slide 3 - AARC Approach */
        #approach {
            background: #f5f5f5;
        }

        .approach-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .image-container {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .approach-tabs {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .tab-button {
            width: 100%;
            padding: 25px 30px;
            background: white;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            text-align: left;
            font-size: 1.1rem;
            color: #003366;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .tab-button:hover {
            background: #f5f5f5;
        }

        .tab-button.active {
            background: #003366;
            color: white;
        }

        .tab-button .icon {
            font-size: 1.5rem;
        }

        .tab-content {
            display: none;
            padding: 30px;
            background: white;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h4 {
            color: #003366;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .tab-content p {
            line-height: 1.8;
            color: #555;
        }

        /* Slide 4 - Benefits */
        #benefits {
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            text-align: center;
            padding: 20px;
        }

        .benefit-card h4 {
            font-size: 1rem;
            line-height: 1.5;
            color: #003366;
            margin-top: 20px;
            min-height: 60px;
        }

        /* Scroll Up Button */
        .scroll-up {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-up.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-up:hover {
            background: #004d99;
            transform: translateY(-5px);
        }

        /* SVG Icons */
        .svg-icon {
            width: 60px;
            height: 60px;
            stroke: #003366;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .reasons-grid, .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .approach-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }
         .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }


        @media (max-width: 768px) {
            .reasons-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .intro-box {
                padding: 40px 30px;
            }
        }




       .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) {
            .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;
            }
        }

        @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 {
            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;
        }

        .social-icon: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;
    }

    .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;
        }
        
        .process-visual {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            position: relative;
        }
        
        .process-visual:before {
            content: "";
            position: absolute;
            top: 25px;
            left: 50px;
            right: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            z-index: 1;
        }
        
        .process-step-visual {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .process-circle {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .process-label {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .process-visual {
                flex-direction: column;
                align-items: center;
            }
            
            .process-visual:before {
                display: none;
            }
            
            .process-step-visual {
                margin-bottom: 20px;
            }
        }