/* ===================================
   Sky Gate International - Custom Styles
   Modern & Professional Design
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a5f;
    --primary-dark: #0f2644;
    --primary-light: #2a5082;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #0f1927;
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #3498db 100%);
    --gradient-accent: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(52, 152, 219, 0.85) 100%);
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
}

/* CRITICAL: Fix Bootstrap row negative margins causing horizontal overflow */
.row {
    --bs-gutter-x: 1.5rem;
    margin-left: 0;
    margin-right: 0;
}

.row>* {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Prevent overflow in all sections */
section,
.container-fluid,
.row {
    max-width: 100%;
    overflow-x: clip;
}

section {
    overflow: clip;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

/* Utility Classes */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle.light {
    color: var(--accent-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.875rem;
}

.top-bar span {
    opacity: 0.9;
}

.top-bar .social-link {
    color: #fff;
    opacity: 0.8;
}

.top-bar .social-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Navbar */
#mainNav {
    background: var(--primary-color);
    padding: 0.75rem 0;
    transition: var(--transition);
}

#mainNav.scrolled {
    background: rgba(30, 58, 95, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
    position: absolute;
    background: #fff;
    top: 1px;
    padding: 10px 20px 20px 20px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:focus::after {
    width: 30px;
    background: var(--accent-color);
}

.navbar .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 50px;
}

.navbar .btn-primary:hover {
    background: #e08e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.25);
}
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: clip;
}

/* Hero Carousel */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#heroCarousel .carousel-indicators {
    z-index: 5;
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    z-index: 5;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-section:hover #heroCarousel .carousel-control-prev,
.hero-section:hover #heroCarousel .carousel-control-next {
    opacity: 1;
}

#heroCarousel .carousel-control-prev {
    left: 20px;
}

#heroCarousel .carousel-control-next {
    right: 20px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(52, 152, 219, 0.75) 100%);
    z-index: 1;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Tagline - Rotating with Minimal Underline Style */
.hero-tagline-container {
    position: relative;
    height: 40px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.hero-tagline {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    padding-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.hero-tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-tagline.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), rgba(243, 156, 18, 0.3));
    border-radius: 2px;
    transition: width 0.5s ease 0.2s;
}

.hero-tagline.active::after {
    width: 100%;
}

/* Hero Title - Rotating Container */
.hero-title-container {
    position: relative;
    min-height: 140px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.hero-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.hero-title.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-title.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    min-height: 100px;
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-buttons .btn-primary:hover {
    background: #e08e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.hero-buttons .btn-outline-light {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

/* About Section */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
}

/* Services Section */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

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

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

.service-icon.success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.service-icon.info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.service-icon.warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.service-icon.danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin: 0;
}

/* Destinations Section */
.destination-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.flag-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    overflow: hidden;
    padding: 15px;
}

.flag-wrapper img {
    width: 50px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.destination-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destination-card .btn {
    border-radius: 50px;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
}

/* Courses Section */
.course-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
}

.course-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.course-card h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.course-card ul li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.course-levels .badge {
    background: rgba(243, 156, 18, 0.2);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 50px;
}

/* Campus Section */
.campus-section {
    background: var(--bg-light);
}

.campus-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.campus-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.campus-feature span {
    font-weight: 500;
}

.program-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.campus-image-wrapper {
    position: relative;
}

.campus-image-wrapper img {
    border-radius: var(--border-radius);
}

.campus-location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.campus-location-badge i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.campus-location-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Success Stories Section */
#success-stories {
    overflow: clip;
}

.success-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
}

.success-stat-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.success-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.success-stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.success-stat-item h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.success-stat-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.success-image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.success-image-grid img:hover {
    transform: scale(1.02);
}

.success-image-grid .col-6 img {
    height: 200px;
    object-fit: cover;
}

.success-image-grid .col-12 img {
    height: 250px;
    object-fit: cover;
}

/* Approval Swiper Carousel */
.approval-swiper-container {
    position: relative;
    padding: 0 50px 50px;
}

.approvalSwiper {
    overflow: hidden;
    border-radius: 12px;
}

.approval-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.approvalSwiper .swiper-slide {
    transition: transform 0.4s ease;
}

.approvalSwiper .swiper-slide:hover .approval-card-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Navigation Arrows */
.approval-nav {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.approval-nav::after {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.approval-nav:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.swiper-button-prev.approval-nav {
    left: 0;
}

.swiper-button-next.approval-nav {
    right: 0;
}

/* Pagination Dots */
.approval-pagination {
    position: relative;
    margin-top: 1.5rem;
    bottom: auto !important;
}

.approval-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.approval-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .approval-swiper-container {
        padding: 0 10px 40px;
    }
    .approval-card-img {
        height: 280px;
    }
    .approval-nav {
        width: 36px;
        height: 36px;
    }
    .approval-nav::after {
        font-size: 14px;
    }
}

/* Journey Timeline */
.journey-timeline {
    background: linear-gradient(135deg, #f8f9fd 0%, #f0f4ff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.journey-timeline h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    position: relative;
}

.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 52px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, var(--secondary-color), rgba(52, 152, 219, 0.2));
}

.journey-step-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    z-index: 1;
    transition: all 0.3s ease;
}

.journey-step:hover .journey-step-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.journey-step.active .journey-step-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.journey-step-content h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.journey-step-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Image Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    outline: none;
}

.lightbox-arrow::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-radius: 2px;
}

.lightbox-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.lightbox-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.lightbox-arrow:hover {
    background: rgba(243, 156, 18, 0.7);
    border-color: rgba(243, 156, 18, 0.9);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.35);
}

.lightbox-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-counter {
    display: none;
}

@media (max-width: 767.98px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
    }
    .lightbox-arrow::before {
        width: 11px;
        height: 11px;
        border-width: 2.5px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
}

.cta-section .btn-light {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
}

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

.info-icon.campus-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.info-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-info-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-details a {
    display: block;
    color: var(--text-dark);
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-details a i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h4 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    padding: 0.875rem 1rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.map-wrapper {
    height: 100%;
    min-height: 450px;
}

.map-wrapper iframe {
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

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

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

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

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {

    /* Rotating Hero Title Container */
    .hero-title-container {
        min-height: 100px;
    }

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

    /* Rotating Hero Tagline */
    .hero-tagline-container {
        height: 35px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }

    .experience-badge {
        right: 20px;
        bottom: -10px;
    }
}

@media (max-width: 767.98px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Rotating Hero Title Container - Mobile */
    .hero-title-container {
        min-height: 80px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    /* Rotating Hero Tagline - Mobile */
    .hero-tagline-container {
        height: 30px;
        margin-top: 70px !important;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    /* Hero Subtitle (Typewriter) - Mobile */
    .hero-subtitle {
        font-size: 0.9rem;
        min-height: 80px;
    }

    /* Navbar mobile fixes */
    .navbar-brand {
        position: relative;
        top: auto;
        padding: 10px;
        border-radius: 10px;
    }

    .navbar-brand img {
        height: 60px !important;
    }

    #mainNav {
        padding: 0.5rem 0;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar .btn-primary {
        margin-top: 1rem;
        width: 100%;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn:last-child {
        margin-left: 0 !important;
    }

    /* Stats on mobile */
    .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Success stories mobile */
    .success-stat-item {
        padding: 1rem;
    }

    .success-stat-item h4 {
        font-size: 1.25rem;
    }

    .success-image-grid .col-6 img,
    .success-image-grid .col-12 img {
        height: 150px;
    }

    /* Experience badge */
    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1rem;
        display: inline-block;
    }

    /* Campus badge */
    .campus-location-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-flex;
    }

    /* Destination cards */
    .destination-card {
        padding: 1rem;
    }

    .flag-wrapper {
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    .destination-card h5 {
        font-size: 0.85rem;
    }

    /* Service cards */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Contact section */
    .contact-info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    /* Top bar - always hidden on mobile */
    .top-bar {
        display: none !important;
    }

    /* Hero section mobile fixes */
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-stats {
        margin-top: 2rem !important;
    }

    .hero-stats .col-4 {
        padding: 0 5px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: 1.25rem !important;
    }

    .stat-label {
        font-size: 0.6rem !important;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 1.4rem !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    /* Cards mobile */
    .service-card,
    .course-card {
        padding: 1.25rem;
    }

    /* Buttons mobile */
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Container padding mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animation Classes */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Scroll Animation Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===================================
   MODERN CSS EFFECTS
   =================================== */

/* Animated Gradient Background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

    100% {
        background-position: 0% 50%;
    }
}

.cta-section {
    background: linear-gradient(-45deg, #1e3a5f, #3498db, #2980b9, #1e3a5f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Glow Effect on Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.5), 0 0 60px rgba(243, 156, 18, 0.3);
    transform: translateY(-3px) scale(1.02);
}

/* 3D Card Tilt Effect */
.service-card,
.destination-card,
.course-card,
.contact-info-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
}

.destination-card:hover {
    transform: translateY(-8px) rotateX(3deg);
}

/* Shimmer Effect for Stats */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.stat-number {
    background: linear-gradient(90deg, var(--accent-color) 0%, #ffd700 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Floating Animation */
@keyframes float {

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

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

.experience-badge {
    animation: float 3s ease-in-out infinite;
}

.campus-location-badge {
    animation: float 4s ease-in-out infinite;
}

/* Neon Glow for Icons */
.service-icon:hover {
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6), 0 0 60px rgba(52, 152, 219, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.info-icon:hover {
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
    transform: scale(1.1);
}

/* Text Shadow for Hero - DISABLED
.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
*/

/* Glassmorphism Enhancement */
.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Underline Animation for Links */
.navbar-nav .nav-link::after {
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Image Zoom on Hover */
.about-image-wrapper img,
.campus-image-wrapper img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover img,
.campus-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-wrapper,
.campus-image-wrapper {
    overflow: clip;
    border-radius: var(--border-radius);
}

/* Flag Bounce on Hover */
.flag-wrapper img {
    transition: transform 0.3s ease;
}

.destination-card:hover .flag-wrapper img {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

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

    50% {
        transform: scale(1.2);
    }
}

/* Ripple Effect on Cards */
.service-card::after,
.destination-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover::after,
.destination-card:hover::after {
    width: 300%;
    height: 300%;
}

.service-card,
.destination-card {
    position: relative;
    overflow: clip;
}

/* Gradient Border Effect */
.course-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.5), rgba(243, 156, 18, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover::before {
    opacity: 1;
}

/* Smooth Section Transitions */
section {
    position: relative;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* WhatsApp Button Glow */
.whatsapp-float {
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7), 0 0 60px rgba(37, 211, 102, 0.4);
}

/* Back to Top Smooth */
.back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Form Focus Effects */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15), 0 0 20px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

/* Section Title Animation */
.section-title {
    position: relative;
}

.section-subtitle {
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '—';
    margin: 0 10px;
    color: var(--accent-color);
}

/* Success Stats Hover */
.success-stat-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-stat-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.success-stat-item i {
    transition: all 0.3s ease;
}

/* Program Badge Hover */
.program-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-badge:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Link Arrows */
.footer-links a:hover::before {
    content: '→ ';
    color: var(--accent-color);
}

/* Navbar Logo Animation */
.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Badge Pulse */
.badge.bg-primary {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
}

/* ===================================
   ADDITIONAL MODERN EFFECTS
   =================================== */

/* Animated Text Gradient - DISABLED for flat look
.text-gradient {
    background: linear-gradient(270deg, #1e3a5f, #3498db, #f39c12, #1e3a5f);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 8s ease infinite;
}

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

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

    100% {
        background-position: 0% 50%;
    }
}
*/

/* Spotlight Effect on Hero */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Morphing Shape Background */
@keyframes morphShape {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%;
    }

    75% {
        border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
    }
}

/* Morphing Shape - DISABLED
.service-icon,
.info-icon {
    animation: morphShape 8s ease-in-out infinite;
}
*/

/* Glitch Effect for Title - DISABLED
.hero-title {
    position: relative;
}

.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-title:hover::before {
    animation: glitch1 0.3s infinite;
    color: #ff0000;
    opacity: 0.5;
    left: 2px;
}

.hero-title:hover::after {
    animation: glitch2 0.3s infinite;
    color: #00ffff;
    opacity: 0.5;
    left: -2px;
}
*/

@keyframes glitch1 {

    0%,
    100% {
        clip-path: inset(40% 0 61% 0);
    }

    20% {
        clip-path: inset(92% 0 1% 0);
    }

    40% {
        clip-path: inset(43% 0 1% 0);
    }

    60% {
        clip-path: inset(25% 0 58% 0);
    }

    80% {
        clip-path: inset(54% 0 7% 0);
    }
}

@keyframes glitch2 {

    0%,
    100% {
        clip-path: inset(25% 0 58% 0);
    }

    20% {
        clip-path: inset(54% 0 7% 0);
    }

    40% {
        clip-path: inset(40% 0 61% 0);
    }

    60% {
        clip-path: inset(92% 0 1% 0);
    }

    80% {
        clip-path: inset(43% 0 1% 0);
    }
}

/* Neon Border Animation */
@keyframes neonBorder {

    0%,
    100% {
        box-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
    }

    50% {
        box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 40px var(--accent-color);
    }
}

/* Disabled neonBorder to prevent hover glitch
.contact-form-wrapper:hover {
    animation: neonBorder 2s ease-in-out infinite;
}
*/

/* Fix: Remove sweep/scale effects from contact form submit button */
.contact-form-wrapper .btn-primary::before {
    display: none;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Typewriter Cursor Effect */
.hero-subtitle::after {
    content: '|';
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Magnetic Button Effect Prep */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Staggered Card Reveal */
.destination-card:nth-child(1) {
    animation-delay: 0.1s;
}

.destination-card:nth-child(2) {
    animation-delay: 0.15s;
}

.destination-card:nth-child(3) {
    animation-delay: 0.2s;
}

.destination-card:nth-child(4) {
    animation-delay: 0.25s;
}

.destination-card:nth-child(5) {
    animation-delay: 0.3s;
}

.destination-card:nth-child(6) {
    animation-delay: 0.35s;
}

/* Hover Lift with Shadow */
.course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Gradient Shadow */
.service-card {
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    border-radius: 50%;
    filter: blur(10px);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

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

/* Icon Spin on Hover */
.course-icon:hover i,
.course-card:hover .course-icon i {
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

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

/* Campus Feature Card Hover */
.campus-feature {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campus-feature:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.campus-feature:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.campus-feature i {
    transition: all 0.3s ease;
}

/* Contact Card Border Gradient */
.contact-info-card {
    position: relative;
    background: #fff;
    overflow: clip;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

/* Map Container Glow */
.map-wrapper:hover iframe {
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

/* Footer Column Hover */
.footer .col-lg-2:hover,
.footer .col-lg-3:hover,
.footer .col-lg-4:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Animated Underline for Nav - Consolidated to main navbar section */

/* Smooth Color Transition on Body */
body {
    transition: background-color 0.3s ease;
}

/* Enhanced Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.25);
}

/* Scroll Snap - DISABLED
@media (min-width: 992px) {
    html {
        scroll-snap-type: y proximity;
    }

    section {
        scroll-snap-align: start;
    }
}
*/

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: #fff;
}

::-moz-selection {
    background: var(--accent-color);
    color: #fff;
}

/* Scrollbar fix - sections use overflow:clip so no internal scrolling */

/* Loading Skeleton Animation */
@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

/* Confetti Burst on CTA Hover */
.cta-section .btn-light {
    position: relative;
    overflow: visible;
}

.cta-section .btn-light:hover {
    animation: celebrate 0.5s ease;
}

@keyframes celebrate {

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

    25% {
        transform: scale(1.1) rotate(-3deg);
    }

    75% {
        transform: scale(1.1) rotate(3deg);
    }
}

/* ===================================
   DESTINATIONS SECTION - MODERN FULL WIDTH
   =================================== */
.destinations-section {
    background: #0a1628;
}

/* Hero with World Map Background */
.destinations-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
    padding: 60px 20px;
}

.destinations-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.destinations-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.destinations-hero-content .text-gradient {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Animated Flight Decoration */
.flight-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flight-svg {
    width: 100%;
    height: 100%;
}

.flight-line {
    stroke-dasharray: 10, 10;
    animation: flightDash 2s linear infinite;
}

.flight-line.delay-1 {
    animation-delay: 1s;
}

@keyframes flightDash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -20;
    }
}

/* Destination Countries Grid */
.destinations-grid-wrapper {
    background: linear-gradient(180deg, #0a1628 0%, #1a3a5c 100%);
    padding: 60px 0 80px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.destination-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(243, 156, 18, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dest-flag {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.destination-item:hover .dest-flag {
    transform: scale(1.1);
}

.dest-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dest-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .destinations-hero {
        min-height: 280px;
        padding: 50px 20px;
    }

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

@media (max-width: 767px) {
    .destinations-hero {
        min-height: 220px;
    }

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

    .destination-item {
        padding: 20px 10px;
    }

    .dest-flag {
        width: 50px;
        height: 50px;
    }

    .dest-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


.destinations-map-section .container {
    max-width: 1400px;
}

.destinations-map-section .section-subtitle,
.destinations-map-section .section-title,
.destinations-map-section .section-desc {
    color: #fff;
}

.destinations-map-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.world-map-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: clip;
}

.world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.5), transparent);
}

.map-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
}


.world-map-bg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.world-map-svg.flight-paths-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}


/* Country Markers */
.country-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.country-marker:hover {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.3);
}

.marker-flag {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.marker-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.marker-flag.origin {
    width: 50px;
    height: 50px;
    background: #f39c12;
    padding: 8px;
}

.marker-pulse {
    position: absolute;
    width: 36px;
    height: 36px;
    background: rgba(52, 152, 219, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-out infinite;
    z-index: 1;
}

.origin-pulse {
    background: rgba(243, 156, 18, 0.4);
    width: 50px;
    height: 50px;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.marker-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.country-marker:hover .marker-label {
    opacity: 1;
}

/* Origin Marker Special Styling */
.origin-marker .marker-label {
    background: #f39c12;
    font-weight: 600;
}

/* Flight Path Animation */
.flight-path {
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -100;
    }
}

/* Flying Planes */
.flying-plane {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.origin {
    background: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.legend-dot.destination {
    background: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.legend-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #3498db);
    border-radius: 2px;
}

/* Map Responsive */
@media (max-width: 991px) {
    .world-map-container {
        padding: 20px;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .marker-flag {
        width: 28px;
        height: 28px;
    }

    .marker-flag.origin {
        width: 40px;
        height: 40px;
    }

    .marker-pulse {
        width: 28px;
        height: 28px;
    }

    .origin-pulse {
        width: 40px;
        height: 40px;
    }

    .map-legend {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .world-map-container {
        padding: 15px;
        border-radius: 15px;
    }

    .map-wrapper {
        min-height: 250px;
    }

    .marker-flag {
        width: 22px;
        height: 22px;
        padding: 2px;
    }

    .marker-flag.origin {
        width: 32px;
        height: 32px;
        padding: 5px;
    }

    .marker-pulse {
        width: 22px;
        height: 22px;
    }

    .origin-pulse {
        width: 32px;
        height: 32px;
    }

    .map-legend {
        gap: 0.75rem;
        font-size: 0.75rem;
    }

    .legend-item {
        font-size: 0.7rem;
    }
}

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

    .country-marker.origin-marker,
    .country-marker[data-country="Canada"],
    .country-marker[data-country="UK"],
    .country-marker[data-country="Australia"],
    .country-marker[data-country="USA"] {
        display: block;
    }

    .marker-flag {
        width: 20px;
        height: 20px;
    }
}