
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 80px;

            

        }

        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            height: 80px;

            
        }

/* Fix header overlap */
body {
    padding-top: 80px;
}

/* ===== Professional Russia Hero Section ===== */

.hero-russia {
    background: #f5f7fb;
    padding: 60px 8%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT IMAGE */
.hero-left {
    flex: 1;
}

.hero-left img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* RIGHT CONTENT */
.hero-right {
    flex: 1;
}

.hero-right h1 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.hero-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-btn {
    padding: 12px 25px;
    background: #1e3a8a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #1e40af;
    transform: translateY(-3px);
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
}

.logo img {
    height: 55px;       /* adjust if needed */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Russia Hero Banner */
.hero-russia {
    width: 100%;
}

.hero-russia img {
    width: 100%;
    height: auto;
    display: block;
}






       /* nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1e3a8a;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #1e3a8a;
        } */

        .hero {
            margin-top: 80px;
            height: 600px;
            background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: #fff;
            color: #1e3a8a;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 3rem;
        }

        /* .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1e3a8a;
        } */
.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30,58,138,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-box h3 {
    color: #1e3a8a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-box p {
    color: #555;
    font-size: 0.95rem;
}

        .countries {
            background: #f8fafc;
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .country-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .country-card:hover {
            transform: scale(1.05);
        }

        .country-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .country-info {
            padding: 1.5rem;
        }

        .country-info h3 {
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about img {
            width: 100%;
            border-radius: 10px;
        }

        .stats {
            background: #1e3a8a;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: #1e3a8a;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #1e40af;
        }

        footer {
            background: #1f2937;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .about {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }
        }
        .destinations-section {
    background: #f8fafc;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-6px);
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    color: #1e3a8a;
    margin-bottom: 0.4rem;
}

.destination-info p {
    font-size: 0.9rem;
    color: #555;
}
/* Popular Visa Section */
.popular-visa {
    padding: 80px 8%;
    text-align: center;
    background: #f8f9fb;
}

.popular-visa h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.popular-visa .subtitle {
    color: #666;
    margin-bottom: 50px;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Flip Card */
.flip-card {
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Front */
.flip-front {
    background: #9aa0a6;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-front img {
    width: 120px;
    margin-bottom: 15px;
}

.flip-front h3 {
    font-size: 22px;
}

/* Back – SCROLL ENABLED */
.flip-back {
    background: #ffffff;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: left;

    /* Scroll features */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* mobile swipe */
    scrollbar-width: none; /* Firefox */
    position: relative;
}

/* Hide scrollbar by default */
.flip-back::-webkit-scrollbar {
    width: 0;
}

/* Show scrollbar on hover (desktop) */
.flip-back:hover::-webkit-scrollbar {
    width: 6px;
}

.flip-back:hover {
    scrollbar-width: thin;
}

/* Scrollbar styling */
.flip-back::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.flip-back::-webkit-scrollbar-thumb {
    background: #1e40af;
    border-radius: 10px;
}

/* Fade shadow when scrolling */
.flip-back::after {
    content: "";
    position: sticky;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

/* Visa list */
.flip-back ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.flip-back ul li {
    margin-bottom: 8px;
    color: #333;
}

/* Hidden items for “More visas” */
.hidden {
    display: none;
}

/* More visas button */
.more-btn {
    background: none;
    border: none;
    color: #1e40af;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0;
}

.more-btn:hover {
    text-decoration: underline;
}

 /* ================= FOOTER ================= */

.footer {
    background: #111827;
    color: #ffffff;
    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #d1d5db;
}

.footer-col ul li a {
    text-decoration: none;
    color: #d1d5db;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    color: #d1d5db;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #9ca3af;
}
/* ============================= */
/* PRIVACY POLICY PAGE STYLING */
/* ============================= */

.privacy-policy-section {
    padding: 60px 20px;
    background: #f4f7fb;
}

.privacy-container {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.privacy-container h1 {
    text-align: center;
    color: #0a2c5a;
    margin-bottom: 10px;
}

.effective-date {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.privacy-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0a2c5a;
    border-left: 4px solid #1e73be;
    padding-left: 10px;
}

.privacy-container p {
    margin-bottom: 15px;
    color: #444;
}

.privacy-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-container ul li {
    margin-bottom: 8px;
}

.privacy-contact {
    background: #eef4ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 25px;
    }
}