/* ============================================
   Global Styles
   ============================================ */

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #818cf8;
    --yellow-color: #fbbf24;
    --yellow-dark: #f59e0b;
    --purple-dark: #312e81;
    --purple-darker: #1e1b4b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-purple: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(49, 46, 129, 0.95) 0%, rgba(30, 27, 75, 0.95) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navbar Styles
   ============================================ */

.navbar {
    background: rgba(49, 46, 129, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(49, 46, 129, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.btn-yellow-nav {
    background: var(--yellow-color);
    color: #1e1b4b;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-yellow-nav:hover {
    background: var(--yellow-dark);
    color: #1e1b4b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-line-1 {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand-line-2 {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: -2px;
}

@media (max-width: 1200px) {
    .brand-line-1 {
        font-size: 1rem;
    }
    .brand-line-2 {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .brand-line-1 {
        font-size: 1rem;
    }
    .brand-line-2 {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        display: none;
    }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 120px;
    }
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(49, 46, 129, 0.95) 0%, rgba(30, 27, 75, 0.95) 100%),
                url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: heroZoom 20s ease-in-out infinite alternate;
    padding: 100px 0 80px;
    margin-bottom: 0;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-welcome {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@keyframes heroZoom {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 110% 110%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-color);
    margin-bottom: 0.25rem;
}

.hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
    margin: 0.5rem 0;
    font-weight: 600;
}

.btn-yellow {
    background: var(--yellow-color);
    color: var(--purple-darker);
    border: none;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    color: var(--purple-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ============================================
   Section Styles
   ============================================ */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.bg-yellow-custom {
    background: var(--yellow-color) !important;
    color: var(--purple-darker);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Country Cards
   ============================================ */

.countries-section {
    padding: 60px 0;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    background: white;
    overflow: hidden;
}

.destinations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.carousel-header-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.carousel-header-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.carousel-header-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.carousel-header-btn-active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.countries-carousel-wrapper {
    position: relative;
    margin-top: 2rem;
    z-index: 1;
    overflow: hidden;
}

.brand-partners-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.brand-partners-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    will-change: transform;
    -webkit-animation: scroll 30s linear infinite;
    -moz-animation: scroll 30s linear infinite;
    -o-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.brand-partners-track:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-moz-keyframes scroll {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-o-keyframes scroll {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brand-partners-scroll .offer-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 260px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-partners-scroll .offer-card-content {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.brand-partners-scroll .offer-title {
    font-size: 1.4rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .brand-partners-scroll .offer-card {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
    }
    
    .brand-partners-track {
        gap: 1rem;
    }
    
    .brand-partners-track {
        -webkit-animation-duration: 25s;
        -moz-animation-duration: 25s;
        -o-animation-duration: 25s;
        animation-duration: 25s;
    }
}

@media (max-width: 576px) {
    .brand-partners-scroll .offer-card {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
    }
    
    .brand-partners-track {
        gap: 0.75rem;
    }
    
    .brand-partners-track {
        -webkit-animation-duration: 20s;
        -moz-animation-duration: 20s;
        -o-animation-duration: 20s;
        animation-duration: 20s;
    }
}

.offer-card {
    border-radius: 20px;
    padding: 2rem;
    height: 280px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offer-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(79, 70, 229, 0.85) 100%);
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offer-card:hover .offer-card-overlay {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.75) 0%, rgba(79, 70, 229, 0.75) 100%);
}

.offer-card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}


.offer-icon-wrapper {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    z-index: 1;
}

.offer-icon-wrapper i {
    font-size: 4rem;
    color: white;
}

.destination-info {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.destination-location {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

.destination-location i {
    margin-right: 5px;
}

.destinations-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
}

.btn-view-more {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-view-more:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.carousel-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.countries-carousel {
    position: relative;
}

.countries-carousel .carousel-inner {
    padding: 0;
}

.countries-carousel .carousel-item {
    transition: none !important;
    transform: none !important;
}

.countries-carousel.carousel-slide .carousel-item {
    transition: none !important;
    transform: none !important;
}

.countries-carousel .carousel-item.active {
    transform: none !important;
}

.countries-carousel .carousel-item-next:not(.carousel-item-start),
.countries-carousel .active.carousel-item-end {
    transform: none !important;
}

.countries-carousel .carousel-item-prev:not(.carousel-item-end),
.countries-carousel .active.carousel-item-start {
    transform: none !important;
}

.countries-carousel .carousel-item-next,
.countries-carousel .carousel-item-prev {
    transform: none !important;
}

.countries-carousel .carousel-control-prev,
.countries-carousel .carousel-control-next {
    display: none;
}

@media (max-width: 991px) {
    .destinations-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .destinations-description {
        margin-bottom: 2rem;
    }
    
    .destinations-controls {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .countries-section {
        padding: 60px 0;
    }
    
    .offer-card {
        height: 260px;
        padding: 1.75rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .offer-icon-wrapper i {
        font-size: 3.5rem;
    }
    
    .carousel-header-nav {
        margin-top: 1rem;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .countries-section {
        padding: 50px 0;
    }
    
    .destinations-title {
        font-size: 1.75rem;
    }
    
    .offer-card {
        height: 240px;
        padding: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .offer-subtitle {
        font-size: 0.875rem;
    }
    
    
    .offer-icon-wrapper {
        width: 60px;
        height: 60px;
        right: 1rem;
        top: 1rem;
    }
    
    .offer-icon-wrapper i {
        font-size: 3rem;
    }
    
    .destinations-title {
        font-size: 2rem;
    }
    
    .carousel-header-btn {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

.country-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: left;
    box-shadow: none;
    height: auto;
    min-height: 150px;
    border: none;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: -30px;
    z-index: 1;
    position: relative;
}

.country-card:hover {
    z-index: 10;
}

.country-flag-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    position: relative;
    padding: 0;
}

.country-flag-wrapper .country-flag {
    position: relative;
    width: 120px;
    height: 60px;
    border-radius: 60px 60px 0 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    transform: rotate(-3deg);
    margin-left: 0;
    overflow: hidden;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.country-card:hover .country-flag-wrapper .country-flag {
    transform: rotate(-3deg) scale(1.05);
    z-index: 10;
}

.country-flag-wrapper h5 {
    margin: 0.5rem 0 0 0;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transform: rotate(2deg);
    transform-origin: left center;
    padding-left: 5px;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.country-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

.country-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    min-height: 300px;
    border-radius: 15px;
}

.country-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 15px;
    display: block;
}

.country-image[src=""],
.country-image:not([src]) {
    opacity: 0;
}

.country-image:not([src]) {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}



.country-card .country-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}




@media (max-width: 768px) {
    .country-card {
        margin-bottom: 2rem;
    }
    
    .country-image-wrapper {
        height: 180px;
    }
    
    .country-card .country-flag {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .country-card {
        margin-bottom: 1.5rem;
    }
    
    .country-image-wrapper {
        height: 160px;
    }
    
    .country-card h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .country-card p {
        font-size: 0.9rem;
    }
    
    .country-card .country-flag {
        width: 45px;
        height: 45px;
    }
}

.country-flag {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.country-flag.uk {
    background-image: url('https://flagcdn.com/w320/gb.png');
}

.country-flag.usa {
    background-image: url('https://flagcdn.com/w320/us.png');
}

.country-flag.australia {
    background-image: url('https://flagcdn.com/w320/au.png');
}

.country-flag.ireland {
    background-image: url('https://flagcdn.com/w320/ie.png');
}

.country-flag.germany {
    background-image: url('https://flagcdn.com/w320/de.png');
}

.country-flag.canada {
    background-image: url('https://flagcdn.com/w320/ca.png');
}

.country-flag.philippines {
    background-image: url('https://flagcdn.com/w320/ph.png');
}

.country-flag.france {
    background-image: url('https://flagcdn.com/w320/fr.png');
}

.country-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.country-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.country-flag-large {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

/* ============================================
   Exams & Coaching Section
   ============================================ */

.exams-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.exams-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.exams-section-description {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-exams-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
}

.btn-exams-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

.exams-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.exam-item {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.exam-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.exam-icon {
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    transition: var(--transition);
}

.exam-item:hover .exam-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.exam-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.exam-item:hover .exam-name {
    color: #ffffff;
}

@media (max-width: 991px) {
    .exams-section-title {
        font-size: 2rem;
    }
    
    .exams-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .exam-item {
        padding: 1.25rem;
    }
    
    .exam-name {
        font-size: 1rem;
    }
    
    .exam-icon {
        font-size: 1.25rem;
    }
}

/* ============================================
   What We Offer Section
   ============================================ */

.what-we-offer-section {
    padding: 80px 0;
    background: #f8fafc;
}

.offer-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.offer-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border-top-color: var(--accent-color);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.offer-box:hover .offer-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--primary-color);
}

.offer-box h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.offer-list li {
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.offer-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.offer-box:hover .offer-list li {
    color: var(--dark-color);
    transform: translateX(5px);
}

/* ============================================
   Service Cards
   ============================================ */

.services-preview-section {
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    border-top: 4px solid var(--primary-color);
    position: relative;
    transition: none !important;
    transform: none !important;
}

.service-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

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

.service-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(49, 46, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-feature-card:hover::before {
    transform: scaleX(1);
}

.service-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.service-feature-card h5 {
    color: var(--purple-darker);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    transition: var(--transition);
}

.service-feature-card:hover h5 {
    color: var(--purple-dark);
}

.service-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.service-feature-card:hover .service-feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-section {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stats-box {
    background: var(--gradient-purple);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: var(--gradient-purple);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

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

/* ============================================
   About Page Styles
   ============================================ */

.about-content {
    padding: 80px 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.zoom-on-hover:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.image-gallery-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.gallery-image:hover {
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 80px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.value-card:hover .value-icon {
    animation: pulse 1s ease-in-out;
    transform: scale(1.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.team-section {
    padding: 80px 0;
}

.team-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.team-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.team-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 2rem;
}

.team-card-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-new:hover {
    transform: translateY(-5px);
}

.team-image-new {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-photo-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-new:hover .team-photo-new {
    transform: scale(1.05);
}

.team-info-box {
    background: #000000;
    color: white;
    padding: 1.5rem;
    margin-top: auto;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-title i {
    font-size: 0.75rem;
}

.join-team-box {
    background: var(--gradient-purple);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.join-team-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.join-team-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.join-team-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.join-team-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.join-team-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    width: fit-content;
}

.join-team-btn:hover {
    background: transparent;
    color: white;
    transform: translateX(5px);
}

.join-team-btn i {
    font-size: 0.75rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-card:hover .team-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stats-section {
    padding: 80px 0;
    background: var(--light-color);
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Services Page Styles
   ============================================ */

.services-overview {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.service-card-image {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-image:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(79, 70, 229, 0.7) 100%);
    z-index: 1;
}

.service-icon-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: rgba(30, 27, 75, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card-image:hover .service-icon-overlay {
    transform: scale(1.1);
    background: rgba(30, 27, 75, 1);
}

.service-card-content {
    padding: 2rem;
    text-align: left;
}

.service-card-content h5 {
    color: var(--purple-darker);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-image:hover .service-card-content h5 {
    color: var(--purple-dark);
}

.service-card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.section-title-orange {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.country-services {
    padding: 80px 0;
}

.country-service-section {
    margin-bottom: 4rem;
}

.country-service-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.country-service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.zoom-on-hover:hover {
    transform: scale(1.02);
}

.process-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.process-wrapper {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
}

.process-step h5 {
    color: var(--purple-darker);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Thread/Line Animation */
.process-thread {
    position: absolute;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-dark), var(--accent-color));
    z-index: 1;
    transform: translateY(-50%);
    opacity: 0;
    animation: threadDraw 1s ease forwards;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.process-thread::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    animation: arrowAppear 0.5s ease 0.8s forwards;
}

.process-thread-1 {
    left: calc(25% - 15px);
    width: calc(25% + 30px);
    animation-delay: 0.5s;
}

.process-thread-2 {
    left: calc(50% - 15px);
    width: calc(25% + 30px);
    animation-delay: 1s;
}

.process-thread-3 {
    left: calc(75% - 15px);
    width: calc(25% + 30px);
    animation-delay: 1.5s;
}

@keyframes threadDraw {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes arrowAppear {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Responsive Thread */
@media (max-width: 992px) {
    .process-thread {
        display: none;
    }
    
    .process-wrapper {
        padding: 1rem 0;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-yellow {
    color: var(--yellow-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: var(--transition);
    font-size: 0.95rem;
    width: 100%;
}

.contact-form .form-control:hover {
    border-color: #cbd5e1;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
    outline: none;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    appearance: none;
}

.send-method-btn {
    background: var(--yellow-color) !important;
    color: var(--dark-color) !important;
    border: 2px solid var(--yellow-color) !important;
    font-weight: 600 !important;
    padding: 1rem 1.5rem !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3) !important;
}

.send-method-btn:hover {
    background: var(--yellow-dark) !important;
    border-color: var(--yellow-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4) !important;
}

.send-method-btn:focus {
    background: var(--yellow-dark) !important;
    border-color: var(--yellow-dark) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4) !important;
    outline: none !important;
}

.send-method-btn option {
    background: white;
    color: var(--dark-color);
    padding: 0.5rem;
}

.btn-send-message {
    background: var(--yellow-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-send-message:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-send-message i {
    font-size: 0.875rem;
}

.contact-info-panel {
    background: #1e3a5f;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    color: white;
}

.contact-info-section {
    margin-bottom: 2.5rem;
}

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

.contact-info-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--yellow-color);
}

.social-icons-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.social-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--yellow-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon-circle:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    color: var(--dark-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Upload Section */
.upload-section {
    margin-bottom: 2rem;
}

.upload-box {
    border: 2px dashed #e2e8f0;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    transition: var(--transition);
    cursor: pointer;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--dark-color);
}

.upload-label i {
    font-size: 3rem;
    color: var(--primary-color);
}

.upload-label span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.upload-label small {
    font-size: 0.875rem;
    color: #64748b;
}

.gallery-overlay .fa-times {
    color: white;
    font-size: 1.5rem;
    background: rgba(239, 68, 68, 0.9);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-overlay .fa-times:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

.phone-link,
.email-link {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: white;
}

.map-section {
    margin: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: var(--text-color);
}

.map-overlay i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}

.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--purple-dark);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: white;
    padding: 1.25rem;
    color: var(--text-color);
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer .phone-link,
.footer .email-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer .phone-link:hover,
.footer .email-link:hover {
    color: white;
    text-decoration: underline;
}

.footer .social-links {
    margin-top: 1rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* ============================================
   Animations
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.slide-in-active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.slide-out-active {
    opacity: 0;
    transform: translateY(30px);
}

.service-card.fade-in-up.slide-in-active {
    opacity: 1;
    transform: translateY(0);
}

.service-card.fade-in-up.slide-out-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

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

/* Slide Animation Classes */
.slide-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.slide-in-active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left.slide-out-active {
    opacity: 0;
    transform: translateX(-50px);
}

/* Slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.slide-in-active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right.slide-out-active {
    opacity: 0;
    transform: translateX(50px);
}

/* Slide in from bottom */
.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-bottom.slide-in-active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-bottom.slide-out-active {
    opacity: 0;
    transform: translateY(50px);
}

/* Slide in from top */
.slide-in-top {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-top.slide-in-active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-top.slide-out-active {
    opacity: 0;
    transform: translateY(-50px);
}

/* ============================================
   Additional Animations
   ============================================ */

/* Floating Animation */
.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

.floating-animation.delay-1 {
    animation-delay: 0.5s;
}

.floating-animation.delay-2 {
    animation-delay: 1s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation */
.pulse-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Rotate Animation */
.rotate-animation {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Slide In From Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Zoom In Animation */
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shake Animation */
.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Fade In Scale */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Animation */
.gradient-animation {
    background: linear-gradient(-45deg, #2563eb, #1e40af, #3b82f6, #60a5fa);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-color);
    }
}

/* Hover Glow Effect */
.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

/* Image Overlay Effect */
.image-overlay-wrapper {
    position: relative;
    overflow: hidden;
}

.image-overlay-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.7);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.image-overlay-wrapper:hover::before {
    opacity: 1;
}

.image-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.image-overlay-wrapper:hover .image-overlay-content {
    opacity: 1;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .stats-box {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .what-we-offer-section {
        padding: 60px 0;
    }
    
    .offer-box {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .offer-box h3 {
        font-size: 1.3rem;
    }
    
    .countries-section {
        padding: 60px 0 40px;
    }
    
    .country-card {
        margin-bottom: 2rem;
    }
    
    .country-image-wrapper {
        height: 180px;
    }
    
    .country-card .country-flag {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .what-we-offer-section {
        padding: 50px 0;
    }
    
    .offer-box {
        padding: 1.5rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .offer-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .offer-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .country-card,
    .service-card,
    .value-card,
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .countries-section {
        padding: 50px 0 30px;
    }
    
    .country-card {
        margin-bottom: 1.5rem;
    }
    
    .country-image-wrapper {
        height: 160px;
    }
    
    .country-card h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .country-card p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    /* Contact Form Mobile */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .contact-info-panel {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .contact-info-heading {
        font-size: 0.95rem;
    }
    
    .contact-info-text {
        font-size: 0.85rem;
    }
    
    .send-method-btn {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    /* Offer Cards Mobile */
    .offer-card {
        height: 240px;
        padding: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .offer-icon-wrapper {
        width: 60px;
        height: 60px;
        right: 1rem;
        top: 1rem;
    }
    
    .offer-icon-wrapper i {
        font-size: 3rem;
    }
    
    /* Carousel Header Mobile */
    .carousel-header-nav {
        margin-top: 1rem;
        justify-content: flex-start;
    }
    
    .carousel-header-btn {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .breadcrumb-link {
        font-size: 0.8rem;
    }
    
    .destinations-title {
        font-size: 1.75rem;
    }
    
    /* Map Mobile */
    .map-container iframe {
        height: 300px;
    }
    
    /* Services Page Mobile */
    .service-detail-card {
        margin-bottom: 1.5rem;
    }
    
    /* About Page Mobile */
    .about-content {
        padding: 50px 0;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-box {
        margin-bottom: 1.5rem;
    }
    
    /* Form Inputs Mobile */
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    /* Buttons Mobile */
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    /* Social Icons Mobile */
    .social-icons-row {
        gap: 12px;
        justify-content: center;
    }
    
    .social-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    
    .country-card .country-flag {
        width: 45px;
        height: 45px;
        top: 8px;
        right: 8px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-image-wrapper {
        padding: 1rem;
    }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--yellow-color);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* ============================================
   Ripple Effect
   ============================================ */

.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-yellow {
    background: var(--yellow-color);
    color: var(--purple-darker);
    border: none;
    font-weight: 600;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    color: var(--purple-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--yellow-color);
    color: var(--yellow-color);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--yellow-color);
    color: var(--purple-darker);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-success {
    background: #25D366;
    border: none;
    color: white;
    transition: var(--transition);
}

.btn-success:hover {
    background: #20BA5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

