:root {
    --primary-dark: #0F0F0F;
    --primary-accent: #B6E925;
    --secondary-accent: #003366;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --text-light: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide scrollbars globally */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-accent);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a5d420;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(182, 233, 37, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-accent);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-accent);
    color: var(--primary-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 15px 0;
    transition: background 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding-top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding-bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--secondary-accent);
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-accent);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-menu .btn-primary {
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1738879348809-bbf70f1652e6?q=80&w=1170&auto=format&fit=crop');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1920');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?w=1920');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .tag {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 56px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-card span {
    display: block;
    font-size: 32px;
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-accent);
    font-weight: 700;
}

.hero-image-card p {
    font-size: 14px;
    color: var(--medium-gray);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-dot.active {
    background: var(--primary-accent);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-accent);
    color: var(--primary-dark);
}

/* Countries Section */
.countries {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.country-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 -3px 0 0 var(--primary-accent);
}

.university-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    /* Anchor for copy button */
}

.copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    color: #555;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(-5px);
}

.university-card-item:hover .copy-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Course Grid and Cards */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.uni-image {
    height: 180px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.uni-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.uni-content {
    padding: 20px;
}

.course-name-wrapper {
    margin-bottom: 8px;
    color: #64748b;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-title {
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Course Card Styles */
.course-name-wrapper {
    margin-bottom: 5px;
}

.course-name-wrapper span {
    font-size: 16px;
    font-weight: 600;
    color: var(--medium-gray);
    /* Theme color */
}

/* Ensure ALL text in course card follows theme */
.course-title {
    font-size: 18px;
    line-height: 1.3;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--primary-dark);
    /* Theme color */
}

.course-details-grid {
    font-weight: 500;
    font-size: 12.5px;
    color: var(--medium-gray);
    /* Theme color */
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 10px;
}

.course-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--medium-gray);
    /* Theme color */
}

.course-detail-item i {
    color: var(--medium-gray);
    /* Icon Theme color */
    width: 14px;
    flex-shrink: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .universities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-details-grid {
        grid-template-columns: 1fr 1fr;
        font-size: 13px;
    }

    .course-title {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .course-details-grid {
        grid-template-columns: 1fr;
        row-gap: 5px;
    }
}

.copy-btn:hover {
    background: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
}

/* Tooltip for copy feedback - Only show for "Copied!" state */
.copy-btn::after {
    content: "Copied!";
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #4CAF50;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 20;
}

/* Ensure HOVER does NOT show it, only .copied class */
.copy-btn:hover::after {
    opacity: 0;
    visibility: hidden;
}

/* Only show tooltip when copied */
.copy-btn.copied::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.country-card .flag {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-card .flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.country-card p {
    font-size: 14px;
    color: var(--medium-gray);
}

.view-all-link {
    text-align: center;
}

.view-all-link a {
    color: var(--secondary-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-all-link a:hover {
    color: var(--primary-accent);
}

/* Steps Banner */
.steps-banner {
    background: var(--secondary-accent);
    padding: 50px 0;
}

.steps-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.steps-banner h2 {
    color: var(--white);
    font-size: 32px;
}

/* Strategy Section */
.strategy {
    padding: 100px 0;
    background: var(--light-gray);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strategy-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #a5d420 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-icon i {
    font-size: 32px;
    color: var(--primary-dark);
}

.strategy-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.strategy-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-slider {
    position: relative;
}

.partners-track {
    display: flex;
    gap: 50px;
    align-items: center;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
}



/* English Courses Section */
.english-courses {
    padding: 100px 0;
    background: var(--white);
}

.english-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.english-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.english-text>p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.english-list {
    list-style: none;
}

.english-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--primary-dark);
}

.english-list li i {
    color: var(--primary-accent);
    font-size: 20px;
}

.english-visual {
    display: grid;
    gap: 20px;
}

.english-card {
    background: var(--light-gray);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid transparent;
}

.english-card:hover {
    border-left-color: var(--primary-accent);
    transform: translateX(10px);
}

/* Page Banner */
/* Page Banner */
.page-banner {
    padding: 120px 0;
    text-align: center;
    /* Using !important to ensure no overrides */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.english-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.english-card-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.english-card h4 {
    font-size: 18px;
    color: var(--primary-dark);
}

.english-card p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--secondary-accent);
}

.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary-accent);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--secondary-accent);
    border: 3px solid var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.process-step:hover .step-number {
    background: var(--primary-accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.process-step h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 150px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: var(--medium-gray);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.blog-meta span {
    color: var(--primary-accent);
}

.blog-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--secondary-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.read-more:hover {
    color: var(--primary-accent);
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
    background: var(--white);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.instagram-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
}

.instagram-handle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-accent);
    text-decoration: none;
    font-weight: 600;
}

.instagram-handle i {
    font-size: 24px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.7);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.instagram-item:hover::before,
.instagram-item:hover::after {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23333"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta>.container>p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whatsapp-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-about .logo {
    font-size: 32px;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-about p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icons a:hover {
    background: var(--primary-accent);
    color: var(--primary-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.footer-contact p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-accent);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    background: #050505;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-menu .btn-primary {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 20px);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .steps-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .steps-banner h2 {
        font-size: 24px;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .english-courses-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .instagram-header {
        flex-direction: column;
        gap: 15px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-arrows {
        display: none;
    }
}

/* Universities Page Styles */
/* Page Banner - Removed duplicate, see line 711 */
.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 20px;
    color: #e0e0e0;
    /* Light text */
}

/* Hide HTML overlay since we use CSS gradient */
.page-banner-overlay {
    display: none;
}

.filter-section {
    padding: 50px 0;
    background: var(--light-gray);
    border-bottom: 1px solid #e0e0e0;
}

.filter-container {
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    flex: 2;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-accent);
}

.filter-box {
    flex: 1;
}

.filter-box select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    cursor: pointer;
    background: var(--white);
}

.filter-box select:focus {
    border-color: var(--primary-accent);
}

.universities-list {
    padding: 80px 0;
    background: var(--white);
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.university-card-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.university-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-accent);
}

.uni-image {
    height: 180px;
    /* Fixed height for uniformity */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Adjusted padding */
}

/* Removed .uni-image.scenery specific padding as we want uniform logo look */

.uni-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensure logo fits without cropping */
    transition: transform 0.5s ease;
}

/* Remove separate scenery img styling */

.uni-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.uni-destination {
    display: inline-block;
    background: rgba(182, 233, 37, 0.15);
    color: #8bb800;
    /* Darker shade of accent */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.uni-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.uni-content p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.uni-link {
    color: var(--secondary-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.uni-link:hover {
    color: var(--primary-accent);
}

.no-results {
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
    }

    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {

    /* Courses Page Specifics */
    .course-tags {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .course-tag {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 15px;
        font-weight: 600;
    }

    .tag-subject {
        background: rgba(3, 169, 244, 0.1);
        color: #039be5;
    }

    .tag-level {
        background: rgba(156, 39, 176, 0.1);
        color: #9c27b0;
    }

    .courses-filter-wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        max-width: 900px;
        margin: 0 auto;
    }

    .filter-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .filter-row.bottom-row {
        margin-bottom: 0;
    }

    .main-search {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        outline: none;
    }

    .secondary-input,
    .secondary-select {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        outline: none;
        background: #fff;
    }

    .courses-list-section {
        padding: 60px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .course-list-header {
        display: grid;
        grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
        background: #0f172a;
        /* Dark navy color from image */
        color: #fff;
        padding: 15px 20px;
        font-weight: 600;
        border-radius: 8px 8px 0 0;
        /* Rounded top corners only if standalone, but effectively nice */
        gap: 15px;
        font-size: 14px;
    }

    .course-row {
        display: grid;
        grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
        align-items: center;
        gap: 15px;
        transition: background 0.3s ease;
        font-size: 14px;
        color: var(--text-dark);
    }

    .course-row:hover {
        background: #f9f9f9;
    }

    .course-row:nth-child(even) {
        background: #fcfcfc;
    }

    /* Column Specifics */
    .col-course {
        font-weight: 600;
        color: var(--primary-dark);
    }

    .col-uni {
        font-weight: 500;
    }

    .col-fee,
    .col-scholarship {
        color: var(--secondary-accent);
        font-weight: 600;
    }

    .col-intake,
    .col-ielts {
        color: var(--medium-gray);
    }

    /* Mobile Responsive Table */
    @media (max-width: 992px) {
        .course-list-header {
            display: none;
            /* Hide header on tablet/mobile */
        }

        .course-row {
            grid-template-columns: 1fr;
            gap: 10px;
            border: 1px solid #eee;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .col-course {
            font-size: 18px;
            margin-bottom: 5px;
        }

        /* Add labels for mobile */
        .col-uni::before {
            content: "University: ";
            font-weight: 600;
            color: #555;
        }

        .col-fee::before {
            content: "Fee: ";
            font-weight: 600;
            color: #555;
        }

        .col-scholarship::before {
            content: "Scholarship: ";
            font-weight: 600;
            color: #555;
        }

        .col-intake::before {
            content: "Intake: ";
            font-weight: 600;
            color: #555;
        }

        .col-ielts::before {
            content: "IELTS: ";
            font-weight: 600;
            color: #555;
        }
    }

    @media (max-width: 768px) {
        .filter-row {
            flex-direction: column;
            gap: 15px;
        }
    }
}

/* Dropdown Styles */
.filter-box select,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--primary-dark);
    background-color: var(--white);
    outline: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.filter-box select:hover,
.form-group select:hover {
    border-color: #A5D420;
}

.filter-box select:focus,
.form-group select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(182, 233, 37, 0.1);
}

/* Custom Dropdown Container */
.custom-select {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.select-selected {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Arrow */
.select-selected:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    border-top: none;
    border-left: none;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.select-selected.select-arrow-active:after {
    transform: translateY(-30%) rotate(225deg);
    border-color: var(--primary-accent);
    /* Make arrow green when active */
}

.select-selected.select-arrow-active {
    border-color: var(--primary-accent);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Initial Hover on the box itself */
.select-selected:hover {
    border-color: #A5D420;
}

/* Options Container */
.select-items {
    position: absolute;
    background-color: var(--white);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    /* Increased z-index */
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hide items when closed */
.select-hide {
    display: none;
}

.select-items div {
    color: var(--primary-dark);
    padding: 6px 15px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

/* Hover effect on options - THE REQUESTED COLOR */
.select-items div:hover,
.same-as-selected {
    background-color: #A5D420;
    color: var(--primary-dark);
}

/* Partner Page Styles */
.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 184, 0, 0.1);
    color: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.partner-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.partner-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partner-form-grid .form-group {
    margin-bottom: 20px;
}

/* Make full width inputs on mobile or specific defined fields */
.full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .partner-form-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ABOUT PAGE SPECIFIC STYLES
   ===================================================== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.stats-section {
    padding: 60px 0;
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.process-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 184, 0, 0.1);
    color: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    font-size: 20px;
}

/* =====================================================
   SPA TRANSITION STYLES
   ===================================================== */
#page-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
    min-height: 60vh;
}

.content-fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.content-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 2000;
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

@media (max-width: 768px) {

    .about-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}