/* ============================================
   Med Fit India - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #0088ff;
    --secondary-color: #00a86b;
    --secondary-dark: #008752;
    --accent-color: #ff6b35;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --light-gray: #e9ecef;
    --dark-text: #1a1a2e;
    --gray-text: #6c757d;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(0, 102, 204, 0.1);
    --shadow-medium: 0 15px 40px rgba(0, 102, 204, 0.15);
    --shadow-heavy: 0 25px 60px rgba(0, 102, 204, 0.2);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   Navbar Styles
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 15px 0;
    width: 100vw;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(0deg) scale(1.1);
}

.logo-text {
    color: var(--dark-text);
}

.logo-highlight {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: 15px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-text);
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* 3D Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-box {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    padding: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-box-1 {
    width: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.floating-box-2 {
    width: 180px;
    top: 30%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(10deg);
}

.floating-box-3 {
    width: 160px;
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
    transform: rotate(-5deg);
}

.floating-box-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.floating-box-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
}

.floating-box-1 { --rotate: -10deg; }
.floating-box-2 { --rotate: 10deg; }
.floating-box-3 { --rotate: -5deg; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ============================================
   Achievements Section
   ============================================ */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}.list-container {
            max-width: 1000px;
            width: 100%;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .list-title {
            color: var(--text-color);
            font-size: 1.5rem;
            margin-bottom: 25px;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
        }

        .responsive-grid-list {
            display: grid;
            gap: 15px 30px; /* Vertical and Horizontal spacing */
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Responsive Logic */
        @media (min-width: 600px) {
            .responsive-grid-list {
                grid-template-columns: repeat(2, 1fr); /* 2 Columns for tablets */
            }
        }

        @media (min-width: 900px) {
            .responsive-grid-list {
                grid-template-columns: repeat(3, 1fr); /* 3 Columns for desktops */
            }
        }

        .list-item {
            display: flex;
            align-items: center;
            background: #ffffff;
            padding: 12px;
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #e5e7eb;
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .list-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            border-color: var(--primary-color);
        }

        .icon {
            color: var(--icon-color);
            margin-right: 12px;
            font-weight: bold;
            flex-shrink: 0;
        }



.achievement-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.achievement-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-heavy);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* ============================================
   Best Option Section
   ============================================ */
.best-option {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.best-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%230066cc" opacity="0.05"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.best-option-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.best-option h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.best-option p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ============================================
   Payment Section
   ============================================ */
.payment {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.payment-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
}

.payment-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-info p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.process-content > p {
    color: var(--gray-text);
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.process-step::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: -20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.process-step:last-child::after {
    display: none;
}

/* ============================================
   Image + Accordion Section
   ============================================ */
.image-accordion {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.image-accordion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-accordion-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--light-bg);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--secondary-color);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    padding: 0 25px 20px;
    color: var(--gray-text);
}

/* ============================================
   Content Section (Image + Text)
   ============================================ */
.content-section {
    padding: 100px 0;
    background: var(--white);
}

.content-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.content-text ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.content-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.content-text li i {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

/* ============================================
   Double Accordion Section
   ============================================ */
.double-accordion {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.double-accordion h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.double-accordion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.double-accordion h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    overflow: visible;
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-text);
    line-height: 1.8;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #ffc107;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-text);
    color: var(--white);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-logo .logo-highlight {
    color: var(--secondary-color);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-countries h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul,
.footer-countries ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-countries a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-countries a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}


/* Styling the Floating Button */
    .whatsapp-btn {
      position: fixed;
      width: 65px;
      height: 65px;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50px;
      text-align: center;
      font-size: 35px; /* Size of the icon */
      box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
    
    }

    /* Hover effect */
    .whatsapp-btn:hover {
      background-color: #128c7e;
      transform: translateY(-5px); /* Gentle lift effect */
      color: #fff;
    }

    /* Responsive for Mobile */
    @media screen and (max-width: 768px) {
      .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
      }
    }

/* ============================================
   About Page Styles
   ============================================ */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: var(--gray-text);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--gray-text);
}

.map-section {
    padding: 0 0 100px;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Country Page Styles
   ============================================ */
.country-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
    text-align: center;
}

.country-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.country-hero h1 span {
    color: var(--primary-color);
}

.country-hero p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 30px;
}

.country-info {
    padding: 80px 0;
    background: var(--white);
}

.country-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.country-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.country-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.country-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.country-card p {
    color: var(--gray-text);
}

.country-documents {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.country-documents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.document-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.document-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.document-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.document-text p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .country-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-toggle::after {
        display: inline-block;
        transition: transform 0.3s;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .payment-content,
    .image-accordion-content,
    .content-section-content,
    .double-accordion-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .payment-image,
    .image-accordion-image,
    .content-image {
        order: -1;
    }
    
    .achievements-grid,
    .why-choose-grid,
    .country-info-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
body{
    overflow-x: hidden;
}
    .navbar{
width: 100vw;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.py-100 { padding: 100px 0; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

