/* ===== BRAND COLORS ===== */
:root {
    --lime-green: #7DC244;
    --charcoal: #414042;
    --almost-black: #231F20;
    --white: #FFFFFF;
    --light-gray: #F5F5F7;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --info: #2196F3;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

body {
    position: relative;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--almost-black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80px, 30%);
    height: 4px;
    background-color: var(--lime-green);
    border-radius: 2px;
}

.section-title span {
    color: var(--lime-green);
}

.section-subtitle {
    text-align: center;
    color: var(--charcoal);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 40px;
    padding: 0 10px;
}

/* ===== HEADER (Lime Green) ===== */
.site-header {
    background-color: var(--lime-green);
    padding: 10px 0;
    color: var(--white);
    width: 100%;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

/* Logo Area with Image */
.logo-area {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

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

/* Text logo (fallback when image doesn't load) */
.logo-text-fallback {
    display: none;
}

.prince-text {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    display: block;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 400;
    display: block;
    color: var(--white);
    opacity: 0.9;
}

/* ===== HEADER CONTACT INFO WITH ICONS ===== */
.header-contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--almost-black);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item a, .contact-item span {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Header specific WhatsApp and WeChat hover colors */
.contact-item:hover .fa-whatsapp {
    color: #25D366;
}

.contact-item:hover .fa-weixin {
    color: var(--almost-black);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    background: var(--lime-green);
    border: 2px solid var(--white);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: var(--white);
    color: var(--lime-green);
    border-color: var(--lime-green);
}

.mobile-menu-toggle i {
    pointer-events: none;
    font-size: 1.5rem;
}

/* ===== NAVIGATION (Charcoal) ===== */
.main-nav {
    background-color: var(--charcoal);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-menu > li.active > a {
    background-color: var(--lime-green);
    color: var(--almost-black);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
    list-style: none;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--almost-black) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--lime-green) !important;
    padding-left: 25px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(35,31,32,0.8), rgba(35,31,32,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content h2 span {
    color: var(--lime-green);
    display: inline-block;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--lime-green);
    color: var(--almost-black);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: var(--lime-green);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--lime-green);
    color: var(--almost-black);
}

.btn-primary:hover {
    background-color: #6aa03a;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== QUICK CONTACT BUTTONS ===== */
.btn-whatsapp {
    background: var(--almost-black);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #25D366;
    transform: translateY(-3px);
}

.btn-apply {
    background: var(--white);
    color: var(--almost-black);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-apply:hover {
    background: var(--almost-black);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--lime-green);
    color: var(--almost-black);
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.card-content {
    padding: 20px;
    flex: 1;
    width: 100%;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--almost-black);
}

.card-location {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-location i {
    color: var(--lime-green);
}

.card-benefits {
    list-style: none;
    margin: 15px 0;
}

.card-benefits li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-benefits i {
    color: var(--lime-green);
    width: 18px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.card-price {
    font-weight: 700;
    color: var(--lime-green);
    font-size: 1.1rem;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    width: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(125, 194, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--lime-green);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    width: 100%;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--lime-green);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1rem;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 600;
    border: 3px solid var(--lime-green);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--lime-green);
}

/* ===== FORMS ===== */
.application-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: var(--light-gray);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--lime-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--almost-black);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--lime-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-upload-area {
    border: 2px dashed var(--medium-gray);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    background: var(--white);
}

/* ===== TABLES ===== */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background-color: var(--charcoal);
    color: var(--white);
}

.data-table th {
    padding: 15px;
    text-align: left;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--medium-gray);
}

/* ===== UNIVERSITY GRID ===== */
.university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
    width: 100%;
}

.university-item {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.university-logo-container {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 5px;
}

.university-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.university-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--almost-black);
    font-weight: 600;
}

.university-item p {
    font-size: 0.85rem;
    color: var(--charcoal);
}

/* ===== COUNTRY SECTION ===== */
.country-section {
    margin: 50px 0;
    width: 100%;
}

.country-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--lime-green);
    display: inline-block;
}

/* ===== QUICK CONTACT SECTION ===== */
.quick-contact {
    background: var(--lime-green);
    padding: 50px 30px;
    border-radius: 12px;
    margin: 50px auto;
    text-align: center;
    width: 100%;
}

.quick-contact h2 {
    color: var(--almost-black);
    font-size: 2rem;
    margin-bottom: 20px;
}

.quick-contact p {
    color: var(--almost-black);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.quick-contact-wechat {
    margin-top: 20px;
    color: var(--almost-black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
    width: 100%;
}

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

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col h4 {
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--lime-green);
}

.consultant-info {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--lime-green);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--lime-green);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #CCCCCC;
    font-size: 1rem;
}

.contact-info li i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--lime-green);
}

.contact-info li a {
    color: #CCCCCC;
    text-decoration: none;
}

.contact-info li a:hover {
    color: var(--lime-green);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

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

.social-link:hover {
    background-color: var(--lime-green);
    color: var(--almost-black);
    transform: translateY(-3px);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--lime-green);
    color: var(--almost-black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    font-size: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== MOBILE RESPONSIVE (CRITICAL FIXES) ===== */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .nav-menu > li > a {
        padding: 15px 15px;
        font-size: 0.95rem;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Header adjustments */
    .header-wrapper {
        padding: 5px 0;
    }
    
    .logo-area {
        flex: 0 1 auto;
        max-width: 70%;
    }
    
    .site-logo-img {
        max-height: 120px;
    }
    
    .prince-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    /* Hide header contact on mobile */
    .header-contact-info {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Mobile navigation - CRITICAL FIXES */
    .main-nav {
        position: relative !important;
    }
    
    .nav-menu {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background-color: var(--charcoal) !important;
        z-index: 9999 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
        padding: 10px 0 !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu > li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .nav-menu > li > a {
        padding: 15px 20px !important;
        white-space: normal !important;
        width: 100% !important;
    }
    
    /* Dropdown styling for mobile */
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        background-color: rgba(0,0,0,0.2) !important;
        padding: 5px 0 5px 20px !important;
        width: 100% !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li a {
        color: var(--white) !important;
        padding: 12px 25px !important;
        white-space: normal !important;
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(255,255,255,0.1) !important;
        color: var(--lime-green) !important;
    }
    
    /* Dropdown toggle icon rotation */
    .dropdown-toggle i {
        transition: transform 0.3s ease !important;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    
    /* Hero slider */
    .hero-slider {
        height: 400px !important;
    }
    
    .slide-content {
        padding: 0 20px !important;
    }
    
    .slide-content h2 {
        font-size: 2rem !important;
    }
    
    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .slider-prev, .slider-next {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Grid layouts */
    .card-grid,
    .features-grid,
    .testimonials-grid {
        gap: 20px !important;
    }
    
    .card-image {
        height: 180px !important;
    }
    
    /* University grid */
    .university-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 15px !important;
    }
    
    .university-logo-container {
        width: 100px !important;
        height: 100px !important;
    }
    
    .university-item h4 {
        font-size: 0.9rem !important;
    }
    
    /* Footer */
    .footer-grid {
        gap: 30px !important;
        text-align: center !important;
    }
    
    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .contact-info li {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    /* Quick contact */
    .quick-contact {
        padding: 30px 20px !important;
    }
    
    .quick-contact h2 {
        font-size: 1.6rem !important;
    }
    
    .quick-contact p {
        font-size: 1rem !important;
    }
    
    .quick-contact-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .btn-whatsapp, .btn-apply {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
    
    /* WhatsApp float button */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 30px !important;
    }
    
    .whatsapp-float i {
        font-size: 30px !important;
    }
    
    /* Back to top button */
    .back-to-top {
        bottom: 20px !important;
        right: 90px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px !important;
    }
    
    .site-logo-img {
        max-height: 100px !important;
    }
    
    .prince-text {
        font-size: 1.3rem !important;
    }
    
    .hero-slider {
        height: 350px !important;
    }
    
    .slide-content h2 {
        font-size: 1.6rem !important;
    }
    
    .slide-content p {
        font-size: 0.95rem !important;
    }
    
    .card-grid {
        grid-template-columns: 1fr !important;
    }
    
    .card-image {
        height: 160px !important;
    }
    
    .card-content {
        padding: 15px !important;
    }
    
    .card-content h3 {
        font-size: 1.1rem !important;
    }
    
    .university-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .university-item {
        padding: 15px 10px !important;
    }
    
    .university-logo-container {
        width: 80px !important;
        height: 80px !important;
    }
    
    .university-item h4 {
        font-size: 0.85rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .quick-contact {
        padding: 25px 15px !important;
    }
    
    .quick-contact h2 {
        font-size: 1.4rem !important;
    }
    
    .btn-whatsapp, .btn-apply {
        max-width: 250px !important;
        padding: 10px 20px !important;
    }
    
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }
    
    .whatsapp-float i {
        font-size: 28px !important;
    }
    
    .back-to-top {
        right: 80px !important;
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 360px) {
    .site-logo-img {
        max-height: 85px !important;
    }
    
    .prince-text {
        font-size: 1.2rem !important;
    }
    
    .university-grid {
        grid-template-columns: 1fr !important;
    }
    
    .university-logo-container {
        width: 90px !important;
        height: 90px !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .whatsapp-float {
        width: 45px !important;
        height: 45px !important;
        font-size: 25px !important;
    }
    
    .whatsapp-float i {
        font-size: 25px !important;
    }
    
    .back-to-top {
        right: 75px !important;
        width: 38px !important;
        height: 38px !important;
    }
}

/* Landscape mode */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 300px !important;
    }
    
    .nav-menu {
        max-height: 70vh !important;
    }
    
    .card-image {
        height: 150px !important;
    }
}

/* Contact Page Specific */
.contact-page-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 20px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Ensure no overflow */
img {
    max-width: 100%;
    height: auto;
}
/* ===== SIMPLE UNIVERSITIES SLIDER ===== */
.universities-slider-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    padding: 0 50px;
}

.universities-slider {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.slider-item {
    flex: 0 0 calc(16.666% - 25px); /* Show 6 items by default */
    min-width: 150px;
}

.university-slide-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.university-slide-link:hover {
    transform: translateY(-5px);
}

.university-slide-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.university-slide-link:hover .university-slide-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    color: var(--lime-green);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: var(--lime-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

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

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 calc(20% - 24px); /* 5 items */
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(25% - 22.5px); /* 4 items */
    }
}

@media (max-width: 768px) {
    .universities-slider-container {
        padding: 0 40px;
    }
    
    .slider-item {
        flex: 0 0 calc(33.333% - 20px); /* 3 items */
    }
}

@media (max-width: 576px) {
    .universities-slider-container {
        padding: 0 35px;
    }
    
    .slider-item {
        flex: 0 0 calc(50% - 15px); /* 2 items */
    }
}

@media (max-width: 400px) {
    .slider-item {
        flex: 0 0 calc(100% - 0px); /* 1 item */
    }
}
/* ===== TOP CATEGORIES SECTION - THREE CARDS PER ROW WITH IMAGES ON TOP ===== */
.categories-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 60px;
}

.category-card-image-top {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card-image-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(125, 194, 68, 0.2);
    border-color: var(--lime-green);
}

.category-image-top {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-image-top:hover .category-image-top img {
    transform: scale(1.1);
}

.category-content-top {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-content-top h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--almost-black);
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.category-content-top h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
}

.category-content-top p {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.category-link {
    color: var(--lime-green);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
}

.category-card-image-top:hover .category-link {
    transform: translateX(5px);
    color: var(--almost-black);
}

/* Responsive Design for 3-column grid */
@media (max-width: 992px) {
    .categories-grid-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-image-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .categories-grid-three {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .category-image-top {
        height: 200px;
    }
}

/* ===== SIMPLE UNIVERSITIES SLIDER ===== */
.universities-slider-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    padding: 0 50px;
}

.universities-slider {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.slider-item {
    flex: 0 0 calc(16.666% - 25px);
    min-width: 150px;
}

.university-slide-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.university-slide-link:hover {
    transform: translateY(-5px);
}

.university-slide-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.university-slide-link:hover .university-slide-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    color: var(--lime-green);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: var(--lime-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

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

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .categories-grid-two {
        gap: 20px;
    }
    
    .category-image-top {
        height: 200px;
    }
    
    .category-content-top {
        padding: 20px;
    }
    
    .category-content-top h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .categories-grid-two {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .category-image-top {
        height: 220px;
    }
    
    .category-content-top h3 {
        font-size: 1.4rem;
    }
    
    /* Slider responsive */
    .universities-slider-container {
        padding: 0 40px;
    }
    
    .slider-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 576px) {
    .category-image-top {
        height: 200px;
    }
    
    .category-content-top {
        padding: 18px;
    }
    
    .category-content-top h3 {
        font-size: 1.3rem;
    }
    
    .category-content-top p {
        font-size: 0.9rem;
    }
    
    .universities-slider-container {
        padding: 0 35px;
    }
    
    .slider-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 400px) {
    .slider-item {
        flex: 0 0 calc(100% - 0px);
    }
}

/* Responsive for slider based on screen size */
@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 calc(20% - 24px);
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(25% - 22.5px);
    }
}