/* Update the root color variables (around line 1-20) */
:root {
    --primary-color: #610b8a;
    /* Professional purple */
    --secondary-color: #4A148C;
    /* Medium slate blue - lighter purple */
    --accent-color: #e74c3c;
    /* Keeping your accent color */
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #4A148C, #7B1FA2);
    /* Deep purple gradient */
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.15);
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    min-width: 0;
    overflow-x: hidden;
    /* background-image: url('Pictures/explore.jpg') */
}

body {
    background-size: fill;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@400&family=DM+Sans:wght@400&display=swap');


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    /* Bold */
}

body,
p,
span,
a,
li {
    font-family: 'Inter', sans-serif;
    /* Default to Inter */
    font-weight: 400;
    /* Regular */
}

/* Optional: Fallback to DM Sans if Inter is unavailable */
body,
p,
span,
a,
li {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

#navigateHome {
    text-decoration: none;
    /* Removes underline */
    /* color: #0064E1; */

    color: var(--primary-color);
    /* Keeps the default text color */
    display: inline-block;
    /* Prevents underline from appearing due to inline element */
}

#navigateHome:visited,
#navigateHome:hover,
#navigateHome:focus {
    text-decoration: none;
    /* Ensures no underline on visit, hover, or focus */
    /* color: #0045bc; */
    color: rgb(215, 215, 215);
    /* Ensures color stays consistent */
}

#navigateHome h1 {
    margin: 0;
}

/* Company Name */
.Companyname {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 0.8rem;
    margin: 0;
    box-shadow: var(--shadow);
}

.company-logo img {
    width: 100x;
    height: 100px;
    border-radius: 50%;
    margin-right: 0.5rem;

}


.Companyname h1 {
    color: white;
    font-size: 2rem;
    letter-spacing: 2px;
}

.company-logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Header Navigation */
.Header-bar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
    width: 100%;
}

.Header {
    /* background: linear-gradient(to right, #004aad, #007bff); */
    background: white;
    /* box-shadow: 0 4px 18px -4px rgba(60, 60, 120, 0.15); */
    color: white;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;

}

.company-logo {
    flex-shrink: 0;
}

.Header-nav {
    margin-left: auto;
    margin-right: 100px;
    /* Push the navigation to the right */
    display: flex;
    justify-content: flex-end;
    /* Align items to the right */
    align-items: center;
}

.Header-nav ul {
    display: flex;
    gap: 20px;
    /* Add spacing between navigation items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.Header-nav ul li {
    position: relative;
}

.Header-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.2s;
    position: relative;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.Header-nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 4px;
    background: #791da0;
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.4, 0, .2, 1);
}


.Header-nav ul li a:hover::after,
.Header-nav ul li a.active::after {
    width: 100%;
}

.location-select select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.location-select select:hover {
    border-color: #007bff;
}

.location-select {
    flex-shrink: 0;
}

.search-box {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.4rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.search-box button {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 0.8rem;
}

.likes-btn,
.profile-btn {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;

}

.likes-btn a {
    color: inherit;
    text-decoration: none;
    display: inline-block;

}

.likes-btn a:hover {
    color: #ff4d6d;
    /* Change to your preferred hover color */
}

/* Profile dropdown styles */
.profile-btn {
    position: relative;

}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    margin-top: 10px;
}

.profile-dropdown a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
}

.profile-dropdown a:hover {
    background-color: #f5f5f5;
}

.login-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
}

#signOutButton {
    border-top: 1px solid #f0f0f0;
}

.likes-btn:hover,
.profile-btn:hover {
    color: var(--primary-color);
}

.likes-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.profile-btn a {
    color: inherit;
    text-decoration: none;
}

.likes-btn i,
.profile-btn i,
.announcement-btn i {
    color: black;
}



/* Enhanced Services Section */
.main-section {
    position: relative;
    padding: 0;
    height: 600px;
    /* Set fixed height */
    overflow: hidden;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.08) 0%, rgba(66, 153, 225, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.main-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 300px;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.08) 0%, rgba(49, 130, 206, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    object-fit: fill;
    position: absolute;
    /* top: 50%;
    left: 50; */
    /* transform: translate(-50%, -50%); */
    min-width: 100%;
    min-height: 100%;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #ffffff;
    z-index: 10;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    z-index: 1;
    margin-left: 200px;
    background-color: #ffffff;


}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1600px;
    padding: 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.5);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.6);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: white;
    color: #4361ee;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

.scroll-text {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

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

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

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

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

/* Media elements: prevent overflow on narrow screens */
@media (max-width: 768px) {

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

    /* Tame map popup cards within viewport */
    .country-popup-card {
        max-width: 88vw;
        font-size: 0.9rem;
        padding: 6px 8px;
    }

    /* Adjust hero search sizing to avoid cramped layout */
    .search-field {
        gap: 8px;
        padding: 8px 12px;
    }

    .search-field input {
        min-width: 0;
        font-size: 0.95rem;
        padding: 8px;
    }

    .search-btn {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}

/* Hero suggestions dropdown */
.hero-suggestions-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-suggestions-dropdown.active {
    display: block;
}

.hero-suggestion-group {
    padding: 8px 0;
}

.hero-suggestion-group-title {
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    background: #f9f9f9;
    border-bottom: 1px solid #e8e8e8;
}

.hero-suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.95rem;
}

.hero-suggestion-item:hover,
.hero-suggestion-item.active {
    background: #f0f0f0;
    color: #610b8a;
}

.hero-suggestion-item i {
    color: #999;
    font-size: 0.85rem;
    min-width: 16px;
}

@media (max-width: 992px) {
    .hero-section {
        height: 80vh;
    }

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

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

    .hero-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        width: 80%;
        max-width: 300px;
    }
}


.essentials-dropdown {
    position: relative;
}

.essentials-dropdown .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.essentials-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(60, 60, 120, 0.13);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 10000;

}

.essentials-dropdown:hover .dropdown-menu,
.essentials-dropdown:focus-within .dropdown-menu {
    display: block;

}

.essentials-dropdown .dropdown-menu li {
    list-style: none;
    align-items: center;
    justify-content: center;
}

.essentials-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    color: #3E3E42;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;

}



.services-container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0;
    display: contents;
    /* display: grid;
    grid-template-columns: 40% 60%; */
    gap: 3rem;
    align-items: center;
    padding: 1rem;
    background-color: white;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    background: #3E3E42;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: -0.5px;
    position: relative;
    grid-column: 1 / -1;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}

.services-grid {
    background-color: rgb(255, 255, 255);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto repeat(1, 1fr);
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 40%;
    max-width: 500px;
    /* Changed from 500px to 40% */
    margin: 0;
    margin-top: 55px;
    /* Added left margin for positioning */
    position: absolute;
    /* Added to position over video */
    z-index: 10;
    /* Ensures it stays on top of video */
}

.services-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 1.2rem;
    font-size: 1.4rem;
    color: #2d3748;
    grid-column: 1 / -1;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-tab {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 14px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    height: 130px;
}

.service-tab::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    transition: width 0.3s ease;
    border-radius: 0 0 3px 3px;
}

.service-tab:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

.service-tab:hover::before {
    width: 80%;
}

/* Enhanced Service Icons */
.service-tab i {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Gradient Icons with Modern Style */
.service-tab:nth-child(2) i {
    /* Study icon */
    background: linear-gradient(135deg, #4c6ef5, #228be6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(76, 110, 245, 0.2));
}

.service-tab:nth-child(3) i {
    /* Work icon */
    background: linear-gradient(135deg, #12b886, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(18, 184, 134, 0.2));
}

.service-tab:nth-child(4) i {
    /* Travel icon */
    background: linear-gradient(135deg, #fa5252, #ff8787);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(250, 82, 82, 0.2));
}

.service-tab:nth-child(5) i {
    /* Business icon */
    background: linear-gradient(135deg, #7950f2, #be4bdb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(121, 80, 242, 0.2));
}

/* Icon hover animations */
.service-tab:hover i {
    transform: scale(1.2);
}

/* Add icon background circles for extra style */
.service-tab i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.service-tab:hover i::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
}

/* Specific icon color adjustments for better visibility */
.service-tab:nth-child(2) i::after {
    /* Study icon bg */
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.1), rgba(34, 139, 230, 0.05));
}

.service-tab:nth-child(3) i::after {
    /* Work icon bg */
    background: linear-gradient(135deg, rgba(18, 184, 134, 0.1), rgba(32, 201, 151, 0.05));
}

.service-tab:nth-child(4) i::after {
    /* Travel icon bg */
    background: linear-gradient(135deg, rgba(250, 82, 82, 0.1), rgba(255, 135, 135, 0.05));
}

.service-tab:nth-child(5) i::after {
    /* Business icon bg */
    background: linear-gradient(135deg, rgba(121, 80, 242, 0.1), rgba(190, 75, 219, 0.05));
}

.service-tab i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-tab:hover i {
    transform: scale(1.15) rotate(5deg);
}

.service-tab h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
    transition: color 0.3s ease;
}

.service-tab:hover h3 {
    color: #2b6cb0;
}

/* Featured image styling */
.featured-image-container {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    max-height: 500px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.featured-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-image-container:hover::after {
    opacity: 1;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image-container:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-container {
        gap: 2rem;
    }

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

    .section-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        text-align: center;
    }

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

    .featured-image-container {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

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

    .section-text {
        font-size: 1.2rem;
    }

    .service-tab {
        height: auto;
        padding: 1.25rem;
    }

    .service-tab i {
        font-size: 1.8rem;
    }

    .featured-image-container {
        max-height: 300px;
    }

    .main-section {
        padding: 3rem 0;
    }
}

/* Featured Images Section */
.featured-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.featured-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.featured-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .featured-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .section-text {
        font-size: 1.3rem;
    }

    .service-tab {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-text {
        font-size: 1.2rem;
    }

    .service-tab i {
        font-size: 2rem;
    }

    .service-tab h3 {
        font-size: 1.1rem;
    }
}

/* Ad Section */
.ad-section {
    padding: 0;
    position: relative;
    background: white;
    overflow: hidden;
    height: 430px;
    width: 100%;
    border: none;
    align-items: center;
    justify-content: center;
}

.ad-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.ad-carousel {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
    border: none;
    align-items: center;
    justify-content: center;
}

.ad-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 10px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
    align-items: center;
    justify-content: center;
}

.ad-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.ad-slide img {
    width: 94%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    transition: transform 1s ease;
    margin-left: 20px;
    margin-right: 400px;
}

.ad-slide.active img {
    transform: scale(1.02);
}

.ad-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-speed);
    opacity: 0.7;
}

.ad-carousel:hover .ad-nav-btn {
    opacity: 1;
}

.ad-nav-btn:hover {
    background-color: #ffffff;
    color: #3182ce;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.ad-nav-btn.prev-btn {
    left: -40px;
}

.ad-nav-btn.next-btn {
    right: -30px;
}

.ad-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.ad-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(49, 130, 206, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-indicator.active {
    background-color: #3182ce;
    width: 25px;
    border-radius: 10px;
}

.ad-explore-btn {
    background: linear-gradient(90deg, #7c2bc0 0%, #a259e6 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    padding: 12px 32px;
    border: none;
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(124, 43, 192, 0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 18px;
    letter-spacing: 0.5px;
}

.ad-explore-btn:hover,
.ad-explore-btn:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(124, 43, 192, 0.18);
    outline: none;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .ad-carousel {
        height: 220px;
    }

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

    .ad-nav-btn.prev-btn {
        left: 10px;
    }

    .ad-nav-btn.next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .ad-carousel {
        height: 180px;
    }

    .ad-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

.essentials-section {
    padding: 0.5rem 2rem;
    margin: 0px 0px;
    background: var(--bg-light);
    /* background: linear-gradient(to right, #dee6ff, #d4d6ff); */
    align-items: center;
    justify-content: center;
    width: 1350px;
    /* Fixed width */
    max-width: 100vw;
    margin: 0 auto;
    /* Center horizontally */



}

.essentials-section h2 {
    /* text-align: center; */
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: black;
    position: relative;
    padding-bottom: 1rem;
    margin-left: 80px;



}

/* .essentials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
} */

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0px;
    margin-bottom: 2rem;
    margin-left: 80px;
}

.essential-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(52, 152, 219, 0.1);
    text-decoration: none;
    color: var(--text-primary);
    width: 180px;


}

.essential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-color);
}

.essential-card i {
    font-size: 2.5rem;
    color: rgb(111, 91, 240);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.essential-card:hover i {
    transform: scale(1.1);

}

.essential-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;

}

.essential-card a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.essential-card a:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}


.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.sponsor-grid img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.FrequentlyQuestions {
    padding: 4rem 2rem;
    background: var(--bg-light);
    width: 1450px;
    align-items: center;
    justify-content: center;
    width: 1200px;
    /* Fixed width */
    max-width: 100vw;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-left: 10px;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgb(111, 91, 240);
    color: white;
    border: none;
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease, padding 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '\25BC';
    /* Down arrow */
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
}

.faq-question:hover {
    background: var(--secondary-color);
    padding-left: 2rem;
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 200px;
    /* Adjust based on content */
    padding: 1rem 1.5rem;
}

/* Destinations Section */
.destinations {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.destinations h2 {
    color: black;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0px 60px;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    transition: transform 0.3s ease;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-info p {
    opacity: 0.9;
    margin-bottom: 1rem;
}



.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.destination-card {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #004aad, #9100ec);
    color: white;
    text-align: center;
}

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

.cta-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: white;
    color: #9100ec;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4B007F, #7A2BBF, #A566E2);
    /* Keeping your dark Navy Blue */
    color: white;
    padding: 1.5rem 6rem 2rem;
    align-items: center;
    justify-content: center;
    max-width: 2000px;
    /* Fixed width */

    margin: 0 auto;
}


.footer-content {
    max-width: 1600px;
    margin: 0px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Changed to 3 columns */
    gap: 1rem;
    text-align: left;
    /* Changed from center to left alignment */
}

.footer-section h3 {
    position: relative;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    /* Keeping your gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover::after {
    transform: scaleX(1.1);
}

.footer-section.about p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ecf0f1;
    text-align: left;
}

.footer-section.about p i {
    margin-right: 0.5rem;
    color: #af7be3;
}

.footer-section .contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #ecf0f1;
}

.footer-section .contact p i {
    margin-right: 0.8rem;
    color: #A566E2;

}

/* Quick Links Section */
.footer-section.quick-links {
    max-width: 180px;
    margin: 0 auto;
}

.centered-links {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
    text-align: left;
}

.footer-section.quick-links li a {
    display: inline-block;
    width: 100%;
    text-align: center;
}

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

.footer-section a:hover {
    color: #3498db;
}

/* Social Links Section */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches your CTA gradient */
    transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom {
    /* Slightly darker than the footer background */
    padding: 0;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

}

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

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .links-columns {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}

.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #004aad, #9100ec);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #004aad, #0066ec);
    transition: width 0.3s ease;
    z-index: -1;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.explore-btn:hover:before {
    width: 100%;
}

.explore-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.2);
}

/* Adding a subtle icon */
.explore-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

/* Sponsor Section */
.Sponsor {
    padding: 50px 20px;
    background-color: #f9f9f9;
    /* Light background for contrast */
    text-align: center;
}

.Sponsor .section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive grid */
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.sponsor-card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;

}

.sponsor-card:hover {
    transform: translateY(-5px);
    /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

.sponsor-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
    /* Smooth scaling */

}

.sponsor-card:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Promo Sections Styling */
.promo-section {
    padding: 2rem 2rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(135deg, #004aad, #9100ec); */
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.promo-container.reverse {
    flex-direction: row-reverse;
}

.promo-image-container {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-image-container img {
    width: 100%;
    height: 450px;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
    /* padding: 20px 20px 20px 20px; */
}

.promo-section:hover .promo-image-container img {
    transform: scale(1.03);
}

.promo-content {
    flex: 1;
    padding: 2rem;
}

.promo-tag {
    display: inline-block;
    /* background: linear-gradient(135deg, #004aad, #9100ec); */
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.promo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 1rem;
    position: relative;
}

.promo-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #004aad, #9100ec);
}

.promo-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #444;
}

.promo-features li i {
    color: #004aad;
    margin-right: 10px;
    font-size: 1.2rem;
}

.promo-btn {
    display: inline-block;
    /* background: linear-gradient(135deg, #004aad, #9100ec); */
    background-color: #8100d2;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.promo-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.promo-btn:hover::after {
    transform: translateX(100%);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    min-width: 200px;
    z-index: 1000;
    margin-top: 10px;
    padding: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 255, 0.95));
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.4);
    animation: pulse 2s infinite;
}



.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--primary-color, #4A148C);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 8px;
    transition: background 160ms ease, transform 120ms ease;
}

.profile-dropdown a:hover,
.profile-dropdown a:focus {
    background: rgba(99, 33, 180, 0.06);
    transform: translateY(-1px);
}

/* subtle divider between items */
.profile-dropdown a+a {
    border-top: 1px solid rgba(99, 33, 180, 0.06);
    margin-top: 6px;
    padding-top: 12px;
}

/* Emphasize sign out as an accent action */
.profile-dropdown a#signOutButton {
    color: #b91c1c;
}

.profile-dropdown a#signOutButton:hover,
.profile-dropdown a#signOutButton:focus {
    background: rgba(249, 205, 205, 0.6);
    transform: translateY(-1px);
}

/* Focus outline for keyboard users */
.profile-dropdown a:focus {
    outline: 2px solid rgba(99, 33, 180, 0.14);
    outline-offset: 4px;
}

.promo-badge .discount,
.promo-badge .new {
    font-size: 1.5rem;
    line-height: 1;
}

.promo-badge .off {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.promo-badge .period {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Career Guidance Section Specific */
.career-guidance-section {
    background-color: #f5f9ff;
}

/* Global Internships Section Specific */
.internship-section {
    background-color: #f0fbff;
}

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

    50% {
        transform: scale(1.05);
    }

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

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

    .promo-container,
    .promo-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .promo-image-container {
        width: 100%;
    }

    .promo-image-container img {
        height: 350px;
    }

    .promo-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .promo-section {
        padding: 2rem 1rem;
    }

    .promo-content {
        padding: 1.5rem 1rem;
    }

    .promo-content h2 {
        font-size: 1.8rem;
    }

    .promo-features li {
        font-size: 1rem;
    }

    .promo-image-container img {
        height: 250px;
    }
}

/* Global Network Section */
.global-network {
    padding: 3rem 1rem;
    background-color: #e5e7ff;
    text-align: center;
}

.global-network h2 {
    margin-bottom: 2rem;
    color: #002244;
    font-size: 2.2rem;
}

.university-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
}

.university-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.university-item {
    min-width: 150px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.university-item img {
    height: 100px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.university-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.carousel-btn {
    background-color: #ffffff;
    color: #002244;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #002244;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev-btn {
    margin-right: 10px;
}

.carousel-btn.next-btn {
    margin-left: 10px;
}

/* Network Stats */
.network-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #004aad, #9100ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #444;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .network-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 576px) {
    .university-item {
        min-width: 120px;
        padding: 0 10px;
    }

    .university-item img {
        height: 40px;
    }
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-us-btn,
.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-us-btn {
    background: linear-gradient(135deg, #3182ce, #4299e1);
}

.chatbot-btn {
    background: linear-gradient(135deg, #4c51bf, #6b46c1);
}

.contact-us-btn:hover,
.chatbot-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-us-btn:hover .btn-tooltip,
.chatbot-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.contact-modal {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .contact-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    background: linear-gradient(135deg, #3182ce, #4299e1);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3182ce, #4299e1);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2c5282, #3182ce);
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-container.minimized {
    height: 60px;
    overflow: hidden;
}

.chatbot-header {
    /* background: linear-gradient(135deg, #4c51bf, #6b46c1); */
    background-color: #6479ff;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-controls {
    display: flex;
    gap: 10px;
}

.minimize-chatbot,
.close-chatbot {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.bot-message {
    align-self: flex-start;
    background-color: #f0f4f8;
    border-bottom-left-radius: 4px;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #4c51bf, #6b46c1);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: #718096;
    position: absolute;
    bottom: -18px;
    white-space: nowrap;
}

.bot-message .message-time {
    left: 15px;
}

.user-message .message-time {
    right: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.chatbot-input {
    padding: 10px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    outline: none;
}

.chatbot-input input:focus {
    border-color: #4c51bf;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4c51bf, #6b46c1);
    color: white;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #434190, #553c9a);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .chatbot-container {
        bottom: 90px;
        right: 10px;
        width: calc(100% - 20px);
        height: 400px;
    }

    .floating-action-buttons {
        bottom: 20px;
        right: 20px;
    }
}

/* Video Container */
.video-container {
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* Announcement Icon Styles */
.announcement-btn {
    position: relative;
    display: inline-block;
    margin-right: 18px;
}

.announcement-btn button {
    background: none;
    border: none;
    color: #5d3fd3;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.announcement-btn button:hover {
    color: #8a6eff;
}

.announcement-dropdown {
    display: none;
    position: absolute;
    top: 38px;
    right: 0;
    background: #fff;
    min-width: 270px;
    box-shadow: 0 8px 24px rgba(93, 63, 211, 0.13);
    border-radius: 12px;
    padding: 18px 20px;
    z-index: 99999;
    /* Make sure this is higher than any hero or header z-index */
    animation: fadeInUp 0.4s;
}

.announcement-dropdown h4 {
    margin: 0 0 10px 0;
    font-size: 1.08rem;
    color: #5d3fd3;
    font-weight: 700;
}

.announcement-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-dropdown li {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 8px;
}

.announcement-dropdown li:last-child {
    margin-bottom: 0;
}


.search-box {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.4rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.search-box button {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
}






.Header {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    min-height: 80px;
    border-bottom: none;
    width: 100%;
    /* Fixed width */
    max-width: 2000px;
    margin: 0 auto;
    /* Center horizontally */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-sizing: border-box;
}







.company-logo img {
    width: 180px;
    height: auto;
    margin: 0;
    border-radius: 0;
}



.header-icons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-icons button,
.header-icons a {
    background: none;
    border: none;
    color: #7B3AED;
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.header-icons button:hover,
.header-icons a:hover {
    color: #6446d6;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: #f9f4ff;
    border-radius: 50px;
    margin: 0px auto 0 auto;
    max-width: 1345px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 32px rgba(123, 58, 237, 0.07);
    overflow: visible;



}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 520px;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    padding: 0 3vw;
    gap: 2.5rem;
}

.hero-text {
    flex: 1.2;
    min-width: 350px;
    z-index: 2;
    padding: 2.5rem 0 2.5rem 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    text-align: left;
}

.hero-text p {
    color: #44476a;
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    font-weight: 500;
    text-align: left;
}

/* SEARCH CARD */
.search-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(123, 58, 237, 0.07);
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    margin-bottom: 1.2rem;
    max-width: 480px;
}

.search-tabs {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.search-tab {
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.08rem;
    color: #7B3AED;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-tab.active,
.search-tab:hover {
    background: #7B3AED;
    color: #fff;
}

.search-box {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f7f8fa;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 20px;
    position: relative;
}

.search-field i {
    color: #bca6f7;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.search-field input {
    border: none;
    background: transparent;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.search-btn {
    background: #7B3AED;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(123, 58, 237, 0.07);
}

.search-btn:hover {
    background: #6446d6;
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag-group {
    display: none;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.tag-group.active {
    display: flex;
}

.popular-tag {
    color: #7B3AED;
    font-weight: 600;
}

.search-tag {
    background: #ede7fa;
    color: #7B3AED;
    border-radius: 16px;
    padding: 0.2rem 1.1rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
}

.search-tag:hover {
    background: #7B3AED;
    color: #fff;
}

/* HERO IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 370px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(123, 58, 237, 0.13);
    background: #e7e2fa;
}

.hero-image-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: #7B3AED;
    color: #fff;
    border-radius: 14px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(123, 58, 237, 0.13);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 1rem;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .Header {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .Header-nav ul {
        gap: 1rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 0 0.5vw;
    }

    .hero-image img {
        width: 220px;
    }

    .hero-image-badge {
        bottom: 18px;
        right: 18px;
        padding: 0.5rem 1.1rem;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .hero-section {
        min-height: 380px;
        margin: 8px 0 0 0;
        border-radius: 18px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 0 0.5vw;
    }

    .hero-image img {
        width: 120px;
    }

    .hero-image-badge {
        bottom: 8px;
        right: 8px;
        padding: 0.3rem 0.7rem;
        font-size: 0.95rem;
    }
}


/* --- MAP SEARCH SECTION --- */
.study-map-section {
    margin: 48px auto 0 auto;
    max-width: 1200px;
    background: transparent;
    padding: 0;
}

.study-map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    color: #23263A;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.study-map-search-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    /* Reduce gap if needed */
    margin-bottom: 32px;
    width: 100%;
    max-width: 400px;
    /* Limit total width */
    margin-left: auto;
    margin-right: auto;
}

.study-map-searchbar {
    position: relative;
    width: 80%;
    /* Use percentage for flexibility */
    min-width: 220px;
    max-width: 360px;
    flex: 1 1 0;
}

.study-map-searchbar i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7B3AED;
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.study-map-searchbar input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.study-map-searchbar input:focus {
    border-color: #7B3AED;
    box-shadow: 0 4px 12px rgba(123, 58, 237, 0.15);
}

.study-map-searchbar input::placeholder {
    color: #999;
}

.search-icon-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #7B3AED 0%, #a855f7 100%);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 2;
    line-height: 1;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-icon-btn:hover {
    background: linear-gradient(135deg, #6d2dd6 0%, #9333ea 100%);
    box-shadow: 0 4px 12px rgba(123, 58, 237, 0.3);
}

.country-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.country-suggestions.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.country-suggestions::-webkit-scrollbar {
    width: 6px;
}

.country-suggestions::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.country-suggestions::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
    transition: background 0.2s;
}

.country-suggestions::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.suggestion-header {
    padding: 12px 16px 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #7B3AED;
    letter-spacing: 0.8px;
    background: #fafbff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
}

.suggestion-header:first-child {
    border-top: none;
    padding-top: 12px;
}

.suggestion-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f8f8f8;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.04) 0%, rgba(147, 51, 234, 0.02) 100%);
    padding-left: 20px;
    border-left-color: rgba(147, 51, 234, 0.2);
    font-weight: 500;
}

.suggestion-item.selected {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(147, 51, 234, 0.04) 100%);
    border-left-color: #9333EA;
    padding-left: 20px;
    font-weight: 500;
    color: #2d1b4e;
}

.suggestion-item i {
    color: #9333EA;
    font-size: 18px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.suggestion-item span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styles for the hero suggestions markup (country-suggestion-item / suggestion-group-title) */
.suggestion-group-title {
    padding: 10px 14px 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #7B3AED;
    background: #fafbff;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.7px;
}

.country-suggestion-item {
    padding: 12px 14px;
    cursor: pointer;
    display: block;
    color: #2b2b2b;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.18s;
}

.country-suggestion-item:last-child {
    border-bottom: none;
}

.country-suggestion-item:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.04) 0%, rgba(147, 51, 234, 0.02) 100%);
    padding-left: 18px;
    color: #7B3AED;
}

.country-suggestion-item.active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.06) 0%, rgba(147, 51, 234, 0.03) 100%);
    padding-left: 18px;
    color: #6a2fd6;
    border-left: 3px solid rgba(147, 51, 234, 0.3);
}

/* ensure the suggestions box matches the rounded white card look */
.country-suggestions {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(22, 22, 28, 0.06);
}

.study-map-explore-btn {
    background: #7B3AED;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
}

.study-map-explore-btn:hover {
    background: #6446d6;
}

.study-map-image-container {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(123, 58, 237, 0.07);
    padding: 32px 24px 24px 24px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.study-map-image {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    background: #ede7fa;
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 3px solid #4f1fcf;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(79, 31, 207, 0.35);
    cursor: pointer;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.map-pin::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #6d28d9;
    border-radius: 50%;
}

.map-pin:hover {
    box-shadow: 0 8px 22px rgba(79, 31, 207, 0.45);
    background: #ede7fa;
    transform: scale(1.08);
}

/* --- COUNTRY POPUPS: Hidden by default, shown with .show or .active --- */
.country-popup-card {
    position: absolute;
    min-width: 14px;
    background: #fff;
    border: 2px solid #7B3AED;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(123, 58, 237, 0.13);
    padding: 10px 10px;
    font-size: 0.8rem;
    color: #23263A;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    z-index: 20;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.country-popup-card.show,
.country-popup-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.country-popup-card img {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #eee;
    margin-right: 8px;
}

/* Tooltip for pin hover */
#continentTooltip {
    position: absolute;
    z-index: 30;
    background: #fff;
    border: 2px solid #7B3AED;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(123, 58, 237, 0.13);
    padding: 12px 18px;
    font-size: 1.05rem;
    color: #23263A;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    min-width: 140px;
}

#continentTooltip.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Responsive for popups */
@media (max-width: 900px) {

    .country-popup-card,
    #continentTooltip {
        font-size: 0.95rem;
        padding: 8px 10px;
        min-width: 100px;
    }

    .country-popup-card img,
    #continentTooltip img {
        width: 20px;
        height: 14px;
    }
}


.study-map-options {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 30;
}

.study-map-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    background: #f7f8fa;
    border-radius: 18px;
    padding: 6px 14px 6px 10px;
    box-shadow: 0 2px 8px rgba(123, 58, 237, 0.07);
    min-width: 120px;
    border-left: none;
}

.study-map-option img,
.study-map-option .option-icon {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    object-fit: contain;
    display: inline-block;
}

.study-map-option.program {
    background: #eaf1ff;
    color: #2563eb;
}

.study-map-option.scholarship {
    background: #e7faef;
    color: #16a34a;
}

.study-map-option.work {
    background: #ffe7f1;
    color: #e11d48;
}


.hero-section {
    position: relative;
    height: 100vh;
    background: url('Pictures/STUDY.png') no-repeat center center/cover;
    /* Replace with your image path */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    margin-bottom: 50px;
    /* Add margin below the hero section */
    /* margin-top: 0px; */

}

.hero {
    display: flex;
    justify-content: flex-start;
    /* Align all elements to the left */
    align-items: center;
    width: 40%;
    max-width: 1200px;
    margin-left: 50px;
    gap: 20px;
    padding: 0px;
    /* Add spacing between text and images */


}


.hero-content {
    flex: 1;
    text-align: left;
    width: 200px;
}


.hero-heading {
    font-size: 2rem;
    font-weight: 800;
    /* Add linear gradient to text */
    background: linear-gradient(90deg, #751aa0 0%, #9777e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    margin-top: 0px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #44476a;
    margin-bottom: 30px;
}

.search-container {
    width: 100%;
    max-width: 500px;
}

.search-field {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-field i {
    color: #7B3AED;
    margin-right: 10px;
    font-size: 1.2rem;
}

.search-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 10px;
}

.search-btn {
    background: #7B3AED;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #6446d6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Align images to the left */
    align-items: center;
}

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

.image-item {
    background: #f9f4ff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Study/Travel Toggle Modern Style --- */
.study-travel-toggle {
    display: flex;
    background: #f5f2ff;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.08);
    margin-bottom: 18px;
    overflow: hidden;
    width: fit-content;
    margin-left: 0;
    margin-top: 10px;
}

.toggle-btn {
    border: none;
    background: transparent;
    color: #7c2bc0;
    font-size: 1.1em;
    font-weight: 600;
    padding: 10px 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    border-radius: 32px;
    position: relative;
    z-index: 1;
}

.toggle-btn.active,
.toggle-btn:focus-visible {
    background: linear-gradient(90deg, #7c2bc0 60%, #a084e8 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.13);
}

.toggle-btn:not(.active):hover {
    background: #ede7fa;
    color: #7c2bc0;
}

.feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 60px 0;
    background: #fff;
    border-radius: 32px;
    margin: 48px auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(123, 58, 237, 0.07);
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-card {
    flex: 1.2;
    background: #f9f4ff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(123, 58, 237, 0.08);
    padding: 48px 40px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
}

.feature-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #7B3AED;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-card h2 i {
    font-size: 2.2rem;
    color: #7B3AED;
    margin-right: 8px;
}

.feature-card p {
    font-size: 1.15rem;
    color: #44476a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 24px;
}

.feature-list span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #7B3AED;
    font-weight: 600;
    gap: 8px;
}

.feature-list span i {
    color: #7B3AED;
    font-size: 1.1rem;
}

.info-btn {
    display: inline-block;
    background: #7B3AED;
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(123, 58, 237, 0.13);
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}

.info-btn:hover {
    background: #6446d6;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(123, 58, 237, 0.18);
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

.feature-image img {
    width: 340px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(123, 58, 237, 0.13);
    background: #ede7fa;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .feature-section {
        flex-direction: column;
        gap: 32px;
        padding: 32px 0;
        border-radius: 18px;
    }

    .feature-card {
        max-width: 100%;
        padding: 32px 18px;
        min-width: 0;
    }

    .feature-image img {
        width: 220px;
    }
}

@media (max-width: 700px) {
    .feature-section {
        margin: 18px 0;
        padding: 18px 0;
        border-radius: 12px;
    }

    .feature-card {
        padding: 18px 8px;
    }

    .feature-card h2 {
        font-size: 1.5rem;
    }

    .feature-image img {
        width: 120px;
    }
}


.career-guidance-visual-section {
    width: 1400px;
    min-height: 100vh;
    background: url('Pictures/carerr-guid.png') no-repeat right center;
    background-size: fill;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 60px;
    box-sizing: border-box;
    position: relative;
    background-color: white;
    margin-left: 80px;
    margin-top: 50px;
    margin-bottom: 0px;
    border-radius: 40px;

}

.career-guidance-content {
    max-width: 700px;
    margin-left: 60px;
    margin-top: 0px;
    background: white;
    color: #222;
    z-index: 2;
}

.career-guidance-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.career-guidance-icon {
    background: #7c2bc0;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3em;
    box-shadow: 0 4px 16px rgba(124, 43, 192, 0.15);
}

.career-guidance-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em;
    font-weight: 800;
    color: #7c2bc0;
    margin: 0;
    text-shadow: 0 4px 12px rgba(124, 43, 192, 0.13);
}

.career-guidance-desc {
    font-size: 1.4em;
    margin: 10px 0 36px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.35;
    color: #222;
}

.career-guidance-features {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 18px;
}



.career-guidance-features span {
    font-size: 1em;
    color: #3E3E42;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-guidance-features i {
    color: #7c2bc0;
    font-size: 1.2em;
}

@media (max-width: 1100px) {
    .career-guidance-content {
        margin-left: 30px;
        max-width: 95vw;
    }

    .career-guidance-heading {
        font-size: 2.2em;
    }
}

@media (max-width: 700px) {
    .career-guidance-visual-section {
        padding-top: 30px;
        min-height: 600px;
    }

    .career-guidance-content {
        margin-left: 10px;
        margin-top: 10px;
        max-width: 98vw;
    }

    .career-guidance-title-row {
        gap: 10px;
    }

    .career-guidance-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3em;
    }

    .career-guidance-heading {
        font-size: 1.3em;
    }

    .career-guidance-desc {
        font-size: 1em;
    }

    .career-guidance-features {
        gap: 18px;
    }

    .career-guidance-features span {
        font-size: 1em;
    }
}






.global-internship-visual-section {
    width: 1400px;
    min-height: 100vh;
    background: url('Pictures/intership.png') no-repeat left center;
    background-size: fill;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 60px;
    box-sizing: border-box;
    position: relative;
    background-color: white;
    margin-left: 80px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 40px;
}

.global-internship-visual-section .career-guidance-content {
    max-width: 700px;
    margin-right: 60px;
    margin-top: 0px;
    background: transparent;
    color: #222;
    z-index: 2;
}

.global-internship-visual-section .career-guidance-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.global-internship-visual-section .career-guidance-icon {
    background: #7c2bc0;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3em;
    box-shadow: 0 4px 16px rgba(124, 43, 192, 0.15);
}

.global-internship-visual-section .career-guidance-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #3E3E42;
    margin: 0;
    text-shadow: 0 4px 12px rgba(124, 43, 192, 0.13);
}

.global-internship-visual-section .career-guidance-desc {
    font-size: 1.4em;
    margin: 10px 0 36px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.35;
    color: #222;
}

.internship-features-list {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.internship-features-list .feature-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.internship-features-list span {
    font-size: 1em;
    color: #3E3E42;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.internship-features-list i {
    color: #7c2bc0;
    font-size: 1.2em;
}

@media (max-width: 1100px) {
    .global-internship-visual-section .career-guidance-content {
        margin-right: 30px;
        max-width: 95vw;
    }

    .global-internship-visual-section .career-guidance-heading {
        font-size: 2.2em;
    }
}

@media (max-width: 700px) {
    .global-internship-visual-section {
        padding-top: 30px;
        min-height: 600px;
        justify-content: center;
    }

    .global-internship-visual-section .career-guidance-content {
        margin-right: 10px;
        margin-top: 10px;
        max-width: 98vw;
    }

    .global-internship-visual-section .career-guidance-title-row {
        gap: 10px;
    }

    .global-internship-visual-section .career-guidance-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3em;
    }

    .global-internship-visual-section .career-guidance-heading {
        font-size: 1.3em;
    }

    .global-internship-visual-section .career-guidance-desc {
        font-size: 1em;
    }

    .internship-features-list {
        gap: 18px;
    }

    .internship-features-list span {
        font-size: 1em;
    }
}



.stats-section {
    width: 100%;
    padding: 24px 0 18px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.stats-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
}

.stat-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 24px 0 rgba(60, 60, 120, 0.08);
    padding: 20px;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.stat-card:hover {
    box-shadow: 0 10px 32px 0 rgba(60, 60, 120, 0.13);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2.2em;
    color: #fff;
}

.stat-blue {
    background: #2563eb;
}

.stat-pink {
    background: #f43f5e;
}

.stat-green {
    background: #10b981;
}

.stat-orange {
    background: #f59e42;
}

.stat-purple {
    background: #a259e6;
}

.stat-number {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.stat-blue-text {
    color: #2563eb;
}

.stat-pink-text {
    color: #f43f5e;
}

.stat-green-text {
    color: #10b981;
}

.stat-orange-text {
    color: #f59e42;
}

.stat-purple-text {
    color: #a259e6;
}

.stat-label {
    font-size: 1em;
    color: #374151;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid {
        gap: 18px;
    }

    .stat-card {
        min-width: 160px;
        padding: 28px 12px 18px 12px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3em;
    }

    .stat-number {
        font-size: 1.3em;
    }

    .stat-label {
        font-size: 1em;
    }
}




.ad-explore-btn {
    position: absolute;
    top: 230px;
    right: 590px;
    z-index: 2;
    background: white;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    padding: 10px 30px;
    border: none;
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(124, 43, 192, 0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.ad-explore-btn:hover,
.ad-explore-btn:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
    outline: none;
}

@media (max-width: 600px) {
    .ad-explore-btn {
        font-size: 0.95em;
        padding: 8px 18px;
        top: 10px;
        right: 10px;
    }
}






.Header-nav {

    align-items: center;
    /* Vertically center nav */
}

.Header-nav ul {
    align-items: center;
    /* Vertically center nav items */

}

.Header-nav ul li {
    display: flex;
    align-items: center;
    /* Vertically center each li */

}


.travel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.travel img {
    height: 650px;
    width: 1200px;
    margin-top: 30px;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(124, 43, 192, 0.13), 0 1.5px 8px rgba(60, 0, 80, 0.06);
    object-fit: fill;
    transition: transform 0.3s ease;
    margin: 10px;

}





.career-guidance-visual-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #fff;
    padding: 48px 0;
}

.career-guidance-content-card {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    width: 95%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(124, 43, 192, 0.13), 0 1.5px 8px rgba(60, 0, 80, 0.06);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.career-guidance-content-left {
    flex: 1.2;
    padding: 48px 36px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.career-guidance-heading {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.career-guidance-subheading {
    color: #7c2bc0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.career-guidance-desc {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.career-guidance-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    color: #222;
    gap: 12px;
}

.feature-icon {
    color: #7c2bc0;
    font-size: 1.4em;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-guidance-btn {
    display: inline-block;
    background: #7c2bc0;
    color: #fff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.08rem;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.10);
    transition: background 0.2s;
}

.career-guidance-btn:hover {
    background: #5a1b8a;
}

.career-guidance-content-right {
    flex: 1;
    position: relative;
    min-width: 320px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.career-guidance-img {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 0 0 18px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(124, 43, 192, 0.10);
    background: transparent;
}

.career-guidance-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 360px;
    height: 420px;
    background: radial-gradient(circle at 60% 40%, #a084e8 0%, #7c2bc0 80%);
    opacity: 0.18;
    z-index: 1;
    border-radius: 0 0 24px 0;
    pointer-events: none;
}

@media (max-width: 900px) {
    .career-guidance-content-card {
        flex-direction: column;
        align-items: stretch;
    }

    .career-guidance-content-left,
    .career-guidance-content-right {
        padding: 32px 18px;
        min-width: 0;
        width: 100%;
    }

    .career-guidance-content-right {
        justify-content: center;
        align-items: center;
        min-height: 260px;
    }

    .career-guidance-img,
    .career-guidance-bg {
        width: 220px;
        height: 260px;
    }
}


.career-guidance-tag {
    display: inline-block;
    background: #f3eaff;
    color: #7c2bc0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    border-radius: 18px;
    padding: 7px 22px;
    margin-bottom: 18px;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.08);
}










.career-guidance-folder-section {
    margin: 16px auto 0 auto;
    padding: 0;
    width: 1200px;
    max-width: 98vw;
    height: 700px;
    box-sizing: border-box;
}

.career-folder-header {
    background: #f7eafd;
    border-radius: 48px 48px 0 0;
    width: 30vw;
    min-width: 340px;
    margin-left: 16px;
    margin-bottom: 10px;
    max-width: 900px;
    /* box-shadow: -12px -12px 24px 0 rgba(0, 0, 0, 0.13), 12px -12px 24px 0 rgba(124, 43, 192, 0.13); */
}

.career-folder-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #7c2bc0;
    margin: 0;
    padding: 24px 0 12px 32px;
    letter-spacing: -2px;
}

.career-folder-content {
    background: #f7eafd;
    /* border-radius: 40px; */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 32px 32px 32px 32px;
    margin: 0 16px 32px 16px;
    position: relative;
    min-height: 340px;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.career-folder-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 540px;
}

.career-folder-subheading {
    color: #7c2bc0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.career-folder-desc {
    color: #444;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}

.career-folder-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #222;
    gap: 14px;
    font-family: 'Open Sans', sans-serif;
}

.feature-icon {
    color: #7c2bc0;
    font-size: 1.4em;
    min-width: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
}

.career-folder-btn {
    display: inline-block;
    background: #7c2bc0;
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.10);
    transition: background 0.2s;
}

.career-folder-btn:hover {
    background: #5a1b8a;
}

.career-folder-right {
    flex: 1;
    position: relative;
    min-width: 260px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.career-folder-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, #a084e8 0%, #7c2bc0 80%);
    opacity: 0.22;
    z-index: 1;
    border-radius: 0 0 40px 0;
    pointer-events: none;
}

.career-folder-img {
    width: 340px;
    height: 520px;
    object-fit: fill;
    border-radius: 0 0 40px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(124, 43, 192, 0.10);
    background: transparent;
}

@media (max-width: 1300px) {
    .career-guidance-folder-section {
        width: 98vw;
        min-width: 0;
    }

    .career-folder-header {
        width: 80vw;
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .career-folder-content {
        flex-direction: column;
        height: auto;
        max-height: none;
        min-height: 0;
        padding: 18px 8px;
    }

    .career-folder-right {
        justify-content: center;
        align-items: center;
        min-height: 180px;
        margin-top: 18px;
    }

    .career-folder-img,
    .career-folder-bg {
        width: 160px;
        height: 180px;
    }
}

.career-guidance-section {
    min-height: 400px;
    max-height: 600;
}

.Career-background {
    height: 600px;
}



.custom-feature-visual-section {
    background-size: contain;
    background-repeat: no-repeat;
    height: 640px;
    width: 1400px;
    padding: 10px;
    margin: 50px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: left;
}


.custom-feature-content {
    max-width: 800px;
    margin-left: 50px;
}






.career {
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
}

.career-bg {
    background-image: url('Pictures/Career-Guidance-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    width: 1100px;
    display: flex;
    margin-top: 100px;
    position: relative;
    padding: 20px 20px 0px 64px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1100px;
    height: 600px;
    box-sizing: border-box;
    background-color: #f7eafd;
    /* Optional: add a soft shadow for depth */
    overflow: hidden;


}


.custom-feature-title-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
    flex-direction: row;

}

.custom-feature-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: #7c2bc0;
    font-family: 'Montserrat', sans-serif;
    margin: 0 24px 0 0;
    letter-spacing: -1px;
    line-height: 1.1;
    background: none;
    position: relative;
    top: -20px;


}

.custom-feature-subheading {
    font-size: 1.7rem;
    color: #7c2bc0;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
    margin-top: 0;
    position: relative;
    top: 0px;

}

.custom-feature-desc {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 28px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    max-width: 600px;

}

.custom-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0px;
    position: relative;
    top: -20px;
}

.custom-feature-list span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #3E3E42;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: px;
    /* box-shadow: 0 2px 8px rgba(124, 43, 192, 0.06); */
    transition: background 0.2s;
    width: 60%;

}


.custom-feature-list i {
    color: #7c2bc0;
    margin-right: 14px;
    font-size: 1.5em;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}



.custom-feature-btn {
    display: inline-block;
    background: #7c2bc0;
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 1.08rem;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 12px rgba(124, 43, 192, 0.13);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    text-align: center;
    width: max-content;
    position: relative;
    top: -20px;
    left: 20px;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .career-bg {
        width: 98vw;
        height: auto;
        padding: 32px 16px;
    }

    .custom-feature-heading {
        font-size: 2rem;
    }

    .custom-feature-subheading {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .career-bg {
        padding: 18px 8px;
        border-radius: 18px;
    }

    .custom-feature-heading {
        font-size: 1.3rem;
    }

    .custom-feature-subheading {
        font-size: 1rem;
    }

    .custom-feature-list span {
        font-size: 1rem;
        padding: 8px 10px;
    }
}





.global {
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
}

.global-bg {
    background-image: url('Pictures/GlobalInternshipProgram.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    margin-top: 100px;
    position: relative;
    padding: 20px 20px 0px 90px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1100px;
    height: 600px;
    box-sizing: border-box;
    background-color: #f7eafd;
    /* Optional: add a soft shadow for depth */
    overflow: hidden;



}


.global-custom-feature-title-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    margin-left: 560px;
    flex-direction: row;
    top: -35px;
    right: 30px;
    position: relative;
}

.global-custom-feature-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #3a6bff;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    background: none;

}

.global-custom-feature-subheading {
    font-size: 1.5rem;
    color: #5f87ff;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: px;
    margin-top: 0;
    margin-left: 360px;


}

.global-custom-feature-desc {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 12px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    max-width: 600px;
    margin-left: 370px;

}

.global-custom-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
}

.global-custom-feature-list span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #3E3E42;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: px;
    /* box-shadow: 0 2px 8px rgba(124, 43, 192, 0.06); */
    transition: background 0.2s;
    width: 60%;
    margin-left: 370px;

}


.global-custom-feature-list i {
    color: #3a6bff;
    margin-right: 14px;
    font-size: 1.5em;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(124, 43, 192, 0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}



.global-custom-feature-btn {
    display: inline-block;
    background: #3a6bff;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 1.08rem;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 12px rgba(124, 43, 192, 0.13);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    text-align: center;
    width: max-content;
    position: relative;
    left: 700px;

}





/* Responsive adjustments */
@media (max-width: 1200px) {
    .global-bg {
        width: 98vw;
        height: auto;
        padding: 32px 16px;
    }

    .global-custom-feature-heading {
        font-size: 2rem;
    }

    .global-custom-feature-subheading {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .global-bg {
        padding: 18px 8px;
        border-radius: 18px;
    }

    .global-custom-feature-heading {
        font-size: 1.3rem;
    }

    .global-custom-feature-subheading {
        font-size: 1rem;
    }

    .global-custom-feature-list span {
        font-size: 1rem;
        padding: 8px 10px;
    }
}

/* ===== Final Mobile Overrides (Home) ===== */
@media (max-width: 768px) {

    /* Header: stack and allow horizontal scroll for nav if overflowing */
    .Header {
        padding: 8px 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .Header-nav {
        margin: 8px 0 0 0;
        margin-right: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .Header-nav::-webkit-scrollbar {
        display: none;
    }

    .Header-nav ul {
        gap: 12px;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .Header-nav ul li a {
        font-size: 0.95rem;
    }

    .company-logo h1 {
        font-size: 1.2rem;
    }

    /* Video hero container: fill width on mobile */
    .hero-video-container {
        width: 100%;
        margin-left: 0;
    }

    /* Image hero (landing) */
    .hero-section {
        height: auto;
        padding: 40px 16px;
        background-position: center;
        background-size: cover;
        margin-bottom: 24px;
    }

    .hero {
        width: 100%;
        margin-left: 0;
        gap: 12px;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

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

    .search-container {
        max-width: 100%;
    }

    /* Services grid: stop absolute positioning and fit width */
    .services-grid {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 16px 0 0 0;
    }

    /* Essentials and FAQ & Footer widths */
    .essentials-section,
    .FrequentlyQuestions,
    .footer {
        width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .essentials-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
    }

    /* Study map section */
    .study-map-title {
        font-size: 1.6rem;
    }

    .study-map-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 100%;
    }

    .study-map-searchbar {
        width: 100%;
        max-width: none;
    }

    .study-map-explore-btn {
        width: 100%;
        justify-content: center;
    }

    .study-map-image-container {
        padding: 16px 12px;
        border-radius: 16px;
        overflow: hidden;
    }

    .map-pin {
        width: 14px;
        height: 14px;
    }

    .study-map-options {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }

    .study-map-option {
        min-width: auto;
    }

    /* Travel banner image */
    .travel img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

    .travel {
        padding: 0 16px;
    }

    /* Career and Global cards content offsets */
    .custom-feature-list {
        width: 100%;
    }

    .custom-feature-btn {
        left: 0;
        top: 0;
        width: 100%;
        max-width: 280px;
    }

    .global-custom-feature-title-row {
        margin-left: 0;
        right: 0;
        top: 0;
    }

    .global-custom-feature-subheading,
    .global-custom-feature-desc,
    .global-custom-feature-list {
        margin-left: 0;
        width: 100%;
    }

    .global-custom-feature-btn {
        left: 0;
        width: 100%;
        max-width: 280px;
    }
}

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

/* Fix ad carousel image layout on mobile to avoid overflow */
@media (max-width: 768px) {
    .ad-slide {
        left: 0;
    }

    .ad-slide img {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Media elements: prevent overflow on narrow screens */
@media (max-width: 768px) {

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





.spotlight-section {
    padding: 56px 0 48px;
    /* reduced vertical space */
    background: transparent;
    /* background moved to inner surface */
    font-family: Inter, Segoe UI, system-ui, sans-serif;
}

/* Constrained inner surface that carries the decorative background */
.spotlight-surface {
    width: 90%;
    max-width: 1200px;
    /* align with hero container */
    margin: 0 auto;
    padding: 24px 20px;
    /* compact padding to reduce height */
    background:
        radial-gradient(900px 300px at 15% -10%, #efeaff 0%, transparent 55%),
        radial-gradient(700px 260px at 95% 8%, #f6fbff 0%, transparent 60%),
        linear-gradient(145deg, #fbfaff, #f4f1ff 38%, #ffffff);
    border-radius: 22px;
    box-shadow: 0 20px 60px -24px rgba(44, 25, 68, .25);
}

.spotlight-head {
    max-width: 1200px;
    margin: 0 auto 22px;
    /* slightly tighter spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spotlight-head h2 {
    font-size: 38px;
    line-height: 1.15;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(90deg, #352a55, #5843a8);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: .4px;
}

.spotlight-head p {
    margin: 14px 0 0;
    font-size: 16px;
    max-width: 760px;
    color: #4d3d63;
    font-weight: 500;
}

.spotlight-filters {
    display: flex;
    gap: 10px;
    margin: 30px auto 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.spotlight-filter-btn {
    border: 1.5px solid rgba(88, 67, 168, .25);
    background: linear-gradient(180deg, #ffffff, #faf7ff);
    color: #2f2350;
    font-weight: 700;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: 28px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
    position: relative;
    box-shadow: 0 8px 24px -18px rgba(39, 22, 77, .5);
}

.spotlight-filter-btn.active {
    background: linear-gradient(135deg, #5b41c6, #2f87ff);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px -12px rgba(47, 135, 255, .55);
}

.spotlight-filter-btn:hover:not(.active) {
    background: #f3eefc;
    transform: translateY(-1px);
}

.spotlight-row-wrapper {
    position: relative;
    overflow-x: hidden;
    /* hide horizontal scroll */
    padding: 6px 8px 8px;
    /* reduced padding inside surface */
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
    width: 100%;
}

.spotlight-row-wrapper::-webkit-scrollbar {
    display: none;
}

.spotlight-row-wrapper::-webkit-scrollbar {
    height: 10px;
}

.spotlight-row-wrapper::-webkit-scrollbar-track {
    background: #ece6f7;
    border-radius: 6px;
}

.spotlight-row-wrapper::-webkit-scrollbar-thumb {
    background: #b9a8d6;
    border-radius: 6px;
}

.spotlight-row {
    display: flex;
    gap: 26px;
    padding: 6px 4px;
    flex-wrap: wrap;
    /* allow wrapping so no scroll is needed */
    justify-content: center;
}

.spotlight-card {
    flex: 0 0 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .92));
    border: 1px solid rgba(120, 95, 200, .18);
    border-radius: 20px;
    box-shadow: 0 18px 46px -14px rgba(44, 25, 68, .22);
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    scroll-snap-align: start;
    backdrop-filter: saturate(1.1) blur(4px);
    cursor: pointer;
}

.spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px -20px rgba(44, 25, 68, .35);
}

.spotlight-card:focus-visible {
    outline: 3px solid rgba(47, 135, 255, .45);
    outline-offset: 3px;
}

.spotlight-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #5b41c6, #2f87ff);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 30px;
    letter-spacing: .5px;
    box-shadow: 0 8px 20px -10px rgba(47, 135, 255, .6);
}

.spotlight-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbf8ff, #f2edff);
    border: 1px solid rgba(120, 95, 200, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4), 0 8px 20px -14px rgba(69, 44, 120, .4);
}

.spotlight-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spotlight-name {
    font-size: 18px;
    font-weight: 700;
    color: #2e2345;
    margin: 0 0 4px;
}

.spotlight-loc {
    font-size: 12.5px;
    letter-spacing: .3px;
    color: #675987;
    font-weight: 600;
    margin: 0 0 10px;
}

.spotlight-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #4e3e65;
    margin: 0 0 14px;
    flex-grow: 1;
}

.spotlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 12px;
}

.spotlight-tag {
    background: #efe9fb;
    color: #443263;
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 26px;
    border: 1px solid #e1d6f3;
    letter-spacing: .4px;
}

.spotlight-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-top: auto;
    border-radius: 12px;
    border: 1px solid rgba(91, 65, 198, .35);
    background: rgba(91, 65, 198, .08);
    color: #3a2b6a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 12px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.spotlight-detail-btn:hover {
    background: rgba(91, 65, 198, .14);
    border-color: rgba(91, 65, 198, .55);
    color: #2e2058;
}

.spotlight-cta-bar {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    /* tighter spacing */
    width: 100%;
}

.spotlight-cta-btn {
    background: linear-gradient(135deg, #5b41c6, #2f87ff);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 14px;
    cursor: pointer;
    letter-spacing: .4px;
    box-shadow: 0 14px 34px -12px rgba(47, 135, 255, .55);
    transition: .22s;
}

.spotlight-cta-btn:hover {
    filter: brightness(1.05);
}

/* Spotlight arrows */
.spotlight-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(88, 67, 168, .25);
    background: #ffffff;
    color: #2f2350;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px -12px rgba(47, 135, 255, .35);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.spotlight-arrow.left {
    left: 8px;
}

.spotlight-arrow.right {
    right: 8px;
}

.spotlight-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.spotlight-arrow i {
    pointer-events: none;
}

@media (max-width:820px) {
    .spotlight-head h2 {
        font-size: 30px;
    }

    .spotlight-card {
        flex: 0 0 260px;
    }
}

/* Travel section styles */
.travel-section {
    padding: 56px 40px;
    background: #f7f8fb;
}

.travel-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto 28px;
}

.travel-feature {
    background: linear-gradient(180deg, #7B3AED 0%, #9333EA 100%);
    color: #fff;
    border-radius: 14px;
    padding: 36px;
    display: flex;
    gap: 22px;
    align-items: center;
    min-height: 380px;
}

.travel-feature-content {
    flex: 1;
    padding-right: 8px;
}

.travel-feature-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.travel-feature-desc {
    margin: 0 0 14px 0;
    opacity: 0.96;
    font-size: 15px;
}

.travel-feature-list {
    margin: 10px 0 20px 20px;
}

.travel-feature-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.travel-feature-cta .btn {
    background: #ff7a59;
    border-radius: 6px;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
}

.travel-feature-cta .study-map-explore-btn {
    background: #fff;
    color: #7B3AED;
    border-radius: 24px;
    padding: 10px 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.travel-feature-cta .study-map-explore-btn:hover {
    background: #f6f3ff;
}

.travel-feature-image img {
    width: 360px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(11, 6, 30, 0.14);
    border: 6px solid rgba(255, 255, 255, 0.06);
}

/* Entry animations: fade + slide up */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.travel-feature.in-view .travel-feature-image img {
    animation: fadeSlideUp 540ms cubic-bezier(.2, .9, .2, 1) both;
}

.travel-card {
    opacity: 0;
    transform: translateY(10px);
    transition: box-shadow .2s ease, transform .18s ease;
}

.travel-card.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: fadeSlideUp 420ms cubic-bezier(.2, .9, .2, 1) both;
    animation-delay: var(--stagger, 0ms);
}

/* New travel-panel styles to match updated HTML structure */
.travel-panel {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 44px 36px;
    box-shadow: 0 18px 40px rgba(11, 6, 30, 0.06);
}

.travel-panel-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
    position: relative;
    /* position context for absolute watermark */
}

.travel-left {
    z-index: 4;
    position: relative;
}

.travel-title {
    font-size: 44px;
    margin: 0 0 12px 0;
    font-weight: 800;
}

.travel-sub {
    color: #475569;
    margin-bottom: 12px;
}

.travel-long {
    color: #596273;
    margin-bottom: 18px;
    max-width: 680px;
}

.travel-watermark {
    position: absolute;
    right: 24px;
    top: -30px;
    width: 520px;
    height: auto;
    z-index: -1;

}

.travel-watermark img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.90;
    pointer-events: none;
}

.travel-right {
    position: relative;
    z-index: 1;
}

.explore-btn {
    background: linear-gradient(90deg, #6C21C2, #9333EA);
    color: #fff;
    padding: 12px 22px;
    border-radius: 28px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 16px 36px rgba(115, 50, 200, 0.12);
}

.trip-cards {
    display: flex;
    gap: 22px;
    margin-top: 60px;
    align-items: stretch;
}

.trip-card {
    flex: 1;
    min-width: 0;
    background: #fff;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(11, 6, 30, 0.06);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: stretch;
    min-height: 160px;
    overflow: visible;
}

.trip-thumb {
    margin-top: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.trip-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trip-phrase,
.muted {
    color: #6b7280;
    margin: 6px 0;
    font-size: 13px;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
}

.trip-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #e6eefb;
    color: #0b61b7;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    z-index: 5;
}

.trip-badge.green {
    background: #e6f6ed;
    color: #059669;
}

@media (max-width: 960px) {
    .travel-panel-inner {
        grid-template-columns: 1fr;
    }

    .travel-watermark {
        display: none;
    }

    .trip-cards {
        flex-direction: column;
    }

    .travel-title {
        font-size: 32px;
    }
}

/* Pressed feedback for CTA */
.study-map-explore-btn.pressed {
    transform: translateY(2px) scale(0.995);
    transition: transform 120ms ease;
}

/* Hover polish for cards and CTA */
.travel-card:hover {
    box-shadow: 0 16px 36px rgba(11, 6, 30, 0.08);
    transform: translateY(-4px);
}

.travel-feature-cta .study-map-explore-btn {
    transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}

.travel-feature-cta .study-map-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(123, 58, 237, 0.12);
}

.travel-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.travel-card {
    background: #fff;
    border: 1px solid #e9e9ef;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(18, 23, 40, 0.05);
    min-height: 110px;
}

.travel-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.travel-card .muted {
    font-size: 13px;
    color: #6b6b73;
    margin-bottom: 10px;
}

.travel-card .tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
}

.travel-card .popular {
    background: linear-gradient(90deg, #7B3AED 0%, #9333EA 100%);
}

.travel-card .trending {
    background: #ff7a59;
}

.travel-card .classic {
    background: #22c55e;
}

.travel-search-row {
    max-width: 1180px;
    margin: 22px auto 72px;
}

.travel-search {
    background: #fff;
    border: 1px solid #e7e7ee;
    padding: 14px 18px;
    border-radius: 8px;
    max-width: 760px;
    box-shadow: 0 8px 24px rgba(11, 6, 30, 0.04);
}

.travel-search input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 8px 4px;
}

@media (max-width: 900px) {
    .travel-container {
        grid-template-columns: 1fr;
    }

    .travel-feature {
        flex-direction: column;
        padding: 22px;
        min-height: auto;
    }

    .travel-feature-image img {
        width: 100%;
        height: 220px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f7 100%);
    overflow: visible;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.testimonials-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    margin-bottom: 20px;
    padding: 0 80px;
}

.testimonials-grid {
    width: 100%;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.testimonials-grid.carousel-mode {
    display: flex;
}

.testimonials-grid.carousel-mode .testimonial-card {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.testimonials-grid.carousel-mode .testimonial-card.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(0) scale(1.15);
    pointer-events: auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    width: 420px;
    height: 260px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonials-grid.carousel-mode .testimonial-card.left {
    opacity: 0.75;
    z-index: 1;
    transform: translateX(-500px) scale(0.85);
    pointer-events: auto;
}

.testimonials-grid.carousel-mode .testimonial-card.right {
    opacity: 0.75;
    z-index: 1;
    transform: translateX(500px) scale(0.85);
    pointer-events: auto;
}

.testimonials-grid.carousel-mode .testimonial-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: 15px;
}

.testimonial-stars i {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 3px 0;
}

.author-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-speed) ease;
    z-index: 20;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-controls {
    display: contents;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.carousel-indicator:hover {
    background: #a0a0a0;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(97, 11, 138, 0.3);
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonials-carousel-wrapper {
        padding: 0 70px;
    }

    .testimonials-grid {
        height: 350px;
    }

    .testimonial-card {
        width: 360px;
        height: 240px;
    }

    .testimonials-grid.carousel-mode .testimonial-card.left {
        transform: translateX(-430px) scale(0.85);
    }

    .testimonials-grid.carousel-mode .testimonial-card.right {
        transform: translateX(430px) scale(0.85);
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}

@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }

    .testimonials-grid {
        height: 330px;
    }

    .testimonial-card {
        width: 320px;
        height: 230px;
        padding: 24px;
    }

    .testimonials-grid.carousel-mode .testimonial-card.left {
        transform: translateX(-380px) scale(0.8);
    }

    .testimonials-grid.carousel-mode .testimonial-card.right {
        transform: translateX(380px) scale(0.8);
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-prev {
        left: 3px;
    }

    .carousel-next {
        right: 3px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-header h2 {
        font-size: 32px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }

    .testimonials-grid {
        height: 300px;
    }

    .testimonial-card {
        width: 300px;
        height: 220px;
        padding: 20px;
    }

    .testimonials-grid.carousel-mode .testimonial-card.left {
        transform: translateX(-320px) scale(0.75);
        opacity: 0.5;
    }

    .testimonials-grid.carousel-mode .testimonial-card.right {
        transform: translateX(320px) scale(0.75);
        opacity: 0.5;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 2px;
    }

    .carousel-next {
        right: 2px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 45px;
    }

    .testimonials-grid {
        height: 280px;
    }

    .testimonial-card {
        width: 260px;
        height: 200px;
        padding: 18px;
    }

    .testimonials-grid.carousel-mode .testimonial-card.left,
    .testimonials-grid.carousel-mode .testimonial-card.right {
        opacity: 0;
        pointer-events: none;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 1px;
    }

    .carousel-next {
        right: 1px;
    }

    .testimonial-text {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }
}