/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4A90E2;
    --secondary-blue: #87CEEB;
    --accent-gold: #FFD700;
    --accent-coral: #FF6B6B;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

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

.globe-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    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="45" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><path d="M10,50 Q25,30 40,50 Q55,70 70,50 Q85,30 90,50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.3"/><path d="M50,10 Q70,25 50,40 Q30,55 50,70 Q70,85 50,90" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.3"/></svg>') center/contain no-repeat;
    opacity: 0.3;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: float 6s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

.cloud-2 {
    width: 120px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-2::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 15px;
}

.cloud-3 {
    width: 80px;
    height: 35px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.cloud-3::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud-3::after {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 10px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.airplane {
    position: absolute;
    top: 30%;
    left: -100px;
    font-size: 3rem;
    color: var(--accent-gold);
    animation: fly 8s linear infinite;
    z-index: 2;
}

@keyframes fly {
    0% {
        left: -100px;
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-50px) rotate(15deg);
    }

    100% {
        left: calc(100% + 100px);
        transform: translateY(0) rotate(15deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }

    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.05;
}

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

.service-card>* {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
}

.card-features i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.card-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Popular Destinations Section */
.destinations {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hot-air-balloon {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
    animation: floatBalloon 8s ease-in-out infinite;
}

.balloon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

.map-pin {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-coral);
    opacity: 0.4;
    animation: bouncePin 3s ease-in-out infinite;
}

.pin-1 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.pin-2 {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0px) rotate(5deg);
    }

    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

@keyframes bouncePin {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.destinations-scroll-container {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.destinations-scroll-container::-webkit-scrollbar {
    display: none;
}

.destinations-grid {
    display: flex;
    gap: 30px;
    min-width: max-content;
    padding: 0 20px;
}

.destination-card {
    min-width: 380px;
    height: 520px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.destination-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.back-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.highlights-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.highlights-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.highlights-list i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.explore-now-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.explore-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.destination-card:hover .image-placeholder {
    transform: scale(1.1);
}

/* Destination Image Placeholders */
.goa {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-image: url('../img/goa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rajasthan {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    background-image: url('../img/rajasthan.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.himachal {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    background-image: url('../img/himachal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.andaman {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-image: url('../img/andaman.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.northeast {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    background-image: url('../img/northeast.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ladakh {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    background-image: url('../img/ladakh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-info {
    text-align: center;
    color: var(--white);
}

.destination-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.destination-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.destination-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.destination-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Visa Services Section */
.visa-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.visa-card {
    height: 250px;
    background: linear-gradient(245deg,#9fb1d5, #f8f9fa);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visa-card:hover {
    height: auto;
    background: linear-gradient(107deg, #f8f9fa, #9fb1d5);
    /*transition: all 0.4s ease;*/
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.visa-flag {
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flag-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.visa-card:hover .flag-wave {
    left: 100%;
}

/* Flag Placeholders */
.uk {
    height: 70px;
    background-image: url(../img/flag/uk.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.usa {
    height: 70px;
    background-image: url(../img/flag/us.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.dubai {
    height: 70px;
    background-image: url(../img/flag/uae.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.maldives {
    height: 70px;
    background-image: url(../img/flag/maldives.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.vietnam {
    height: 70px;
    background-image: url(../img/flag/vietnam.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.canada {
    height: 70px;
    background-image: url(../img/flag/canada.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.australia {
    height: 70px;
    background-image: url(../img/flag/australia.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.bhutan {
    height: 70px;
    background-image: url(../img/flag/bhutan.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.newzealand {
    height: 70px;
    background-image: url(../img/flag/new_zealand.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 90px;
}

.visa-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.visa-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.visa-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #555;
}

.visa-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.required-documents {
    background: rgba(74, 144, 226, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.visa-card:hover .required-documents {
    transform: translateY(0);
    opacity: 1;
}

.required-documents h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.required-documents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.required-documents li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
}

.required-documents i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    width: 16px;
}

.visa-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.visa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Customer Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Review Background Elements */
.review-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cloud {
    position: absolute;
    font-size: 3rem;
    color: rgba(74, 144, 226, 0.1);
    animation: floatCloud 10s ease-in-out infinite;
}

.cloud-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.travel-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.2);
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.icon-2 {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatCloud {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.reviews-carousel {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 50px auto 0;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

.review-card.prev {
    transform: translateX(-100%);
}

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

.reviewer-avatar {
    position: relative;
    width: 70px;
    height: 70px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.reviewer-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stars i:hover {
    transform: scale(1.2);
    color: #FFA500;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1.1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.review-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary-blue);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

/* Virtual Assistant */
.virtual-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.assistant-bubble {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 25px;
    padding: 15px 20px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpAssistant 0.8s ease forwards 2s;
}

@keyframes slideUpAssistant {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.assistant-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.assistant-message p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.assistant-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02), rgba(135, 206, 235, 0.02));
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(135, 206, 235, 0.05));
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.chevron-container {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active .chevron-container {
    background: var(--primary-blue);
    transform: rotate(180deg);
}

.chevron-container i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-item.active .chevron-container i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(74, 144, 226, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), #34495e);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--accent-gold);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        /*
         box-shadow: var(--shadow);
        */
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Destinations Mobile */
    .destinations-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
    }

    .destination-card {
        min-width: 300px;
        height: 450px;
        scroll-snap-align: start;
    }

    .card-inner {
        height: 100%;
    }

    .destination-image {
        height: 200px;
    }

    .destination-content {
        padding: 20px;
    }

    .destination-content h3 {
        font-size: 1.3rem;
    }

    .destination-content p {
        font-size: 0.9rem;
    }

    /* Visa Services Mobile */
    .visa-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visa-card {
        padding: 25px;
    }

    .visa-flag {
        width: 60px;
        height: 40px;
        margin-bottom: 15px;
    }

    .required-documents {
        padding: 15px;
    }

    .required-documents h4 {
        font-size: 0.9rem;
    }

    .required-documents li {
        font-size: 0.8rem;
    }

    /* Reviews Mobile */
    .reviews-carousel {
        max-width: 100%;
        padding: 0 20px;
    }

    .carousel-container {
        height: 350px;
    }

    .review-card {
        padding: 25px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .reviewer-avatar {
        width: 60px;
        height: 60px;
    }

    .avatar-image {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .carousel-nav {
        gap: 20px;
        margin-top: 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* FAQ Mobile */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0;
    }

    .chevron-container {
        width: 25px;
        height: 25px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    /* Virtual Assistant Mobile */
    .virtual-assistant {
        bottom: 20px;
        right: 20px;
    }

    .assistant-bubble {
        padding: 12px 15px;
        border-radius: 20px;
    }

    .assistant-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .assistant-message p {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .visa-card {
        flex-direction: column;
        text-align: center;
    }

    .visa-flag {
        margin-bottom: 15px;
    }

    /* Floating Elements Mobile */
    .floating-elements {
        display: none;
    }

    .review-background {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .destination-card {
        min-width: 280px;
        height: 400px;
    }

    .destination-image {
        height: 180px;
    }

    .destination-content {
        padding: 15px;
    }

    .destination-content h3 {
        font-size: 1.2rem;
    }

    .destination-content p {
        font-size: 0.85rem;
    }

    .visa-card {
        padding: 20px;
    }

    .visa-content h3 {
        font-size: 1.2rem;
    }

    .visa-content p {
        font-size: 0.85rem;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Card Flip Mobile Optimization */
    .destination-card .card-inner {
        transform-style: preserve-3d;
    }

    .destination-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    /* Touch-friendly interactions */
    .destination-card,
    .visa-card,
    .review-card,
    .faq-item {
        -webkit-tap-highlight-color: transparent;
    }

    /* Improved scrolling for destinations */
    .destinations-scroll-container {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .destinations-scroll-container::-webkit-scrollbar {
        display: none;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .reviews-carousel {
        max-width: 700px;
    }

    .faq-container {
        max-width: 700px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .visa-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-choose-us {
    position: relative;
    padding: 80px 0 60px 0;
    background: transparent;
    overflow: hidden;
}

.animated-globe-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(135, 206, 250, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    animation: globeMove 20s linear infinite alternate;
}

@keyframes globeMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.highlights-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #00bfff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00bfff 60%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us {
        padding: 48px 0 32px 0;
    }
}

.contact-us {
    position: relative;
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../img/banner.jpg') center/cover no-repeat;
    filter: blur(3px) brightness(0.7);
}

.moving-cloud {
    position: absolute;
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: cloudMove 30s linear infinite;
}

.cloud-2 {
    top: 60%;
    left: 70%;
    width: 90px;
    height: 40px;
    animation-delay: 10s;
}

@keyframes cloudMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(800px);
    }
}

.map-pin-anim {
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.map-pin-anim i {
    font-size: 2.5rem;
    color: #ffb347;
    animation: pinBounce 1.5s infinite;
}

.pin-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 183, 71, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pinPulse 1.5s infinite;
    z-index: -1;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pinPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    padding: 40px 32px;
    min-width: 350px;
    max-width: 500px;
    flex: 1 1 320px;
}

.contact-form h2 {
    margin-bottom: 24px;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.2s;
}

.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #00bfff 60%, #ffb347 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: linear-gradient(90deg, #ffb347 60%, #00bfff 100%);
}

.contact-icons {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    justify-content: center;
}

.contact-icon {
    font-size: 1.7rem;
    color: #00bfff;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.contact-icon:hover {
    background: #ffb347;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 183, 71, 0.2);
}

.ripple::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.ripple:hover::after {
    width: 120px;
    height: 120px;
}

.contact-map {
	width:100%;
	height:480px;
    flex: 1 1 320px;
    min-width: 350px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: inherit;
    height: inherit;
    border-radius: 24px;
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=Ahmedabad,India&zoom=13&size=600x320&maptype=roadmap&key=YOUR_API_KEY');
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 24px;
    }

    .contact-map,
    .contact-form-card {
        max-width: 100%;
		align-self:center;
    }
}

.gallery-section {
    position: relative;
    padding: 80px 0 60px 0;
    background: transparent;
    overflow: hidden;
}

.gallery-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.gallery-masonry {
    position: relative;
    z-index: 1;
    column-count: 3;
    column-gap: 18px;
    margin-top: 40px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 191, 255, 0.08);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-masonry {
        column-count: 1;
    }

    .gallery-section {
        padding: 48px 0 32px 0;
    }
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9999;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.4s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

.about-us {
    padding: 80px 0 60px 0;
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 320px;
    min-width: 320px;
}

.about-text h2 {
    margin-bottom: 18px;
}

.about-counters {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00bfff;
    margin-right: 8px;
    transition: color 0.3s;
}

.about-visual {
    flex: 1 1 320px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-collage {
    /* width: 320px; */
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 32px;
    }

    .about-visual,
    .about-text {
        max-width: 100%;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .destination-image,
    .visa-flag {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .airplane,
    .cloud,
    .hot-air-balloon,
    .map-pin,
    .floating-cloud,
    .travel-icon {
        animation: none;
    }

    .destination-card:hover .card-inner {
        transform: none;
    }

    .visa-card:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --light-gray: #2d2d2d;
        --dark-gray: #ffffff;
    }

    .navbar {
        background: rgba(26, 26, 26, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card,
    .destination-card,
    .visa-card,
    .review-card,
    .faq-item {
        background: #2d2d2d;
        color: #ffffff;
    }

    .destination-content h3,
    .visa-content h3,
    .reviewer-info h4,
    .faq-question h3 {
        color: #ffffff;
    }

    .destination-content p,
    .visa-content p,
    .review-text,
    .faq-answer p {
        color: #cccccc;
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}