/*
Theme Name: Debati Medical Foundation
Theme URI: https://debatimedical.com
Author: Debati Medical Team
Author URI: https://debatimedical.com
Description: Complete WordPress theme for MBBS admissions in Georgia
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: debati-medical
*/

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

:root {
    --primary: #0066cc;
    --secondary: #ff6b35;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --white: #ffffff;
    --text: #333333;
    --text-light: #7f8c8d;
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    z-index: 1001;
}

.logo a {
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;          /* ✅ ADD THIS */
    list-style: none;
    gap: 5px;                     /* ✅ CHANGE 0 to 5px */
    margin: 0;
    padding: 0;
}


.nav-links li {
    position: relative;
    list-style: none;             /* ✅ ADD THIS */
    margin: 0;                    /* ✅ ADD THIS */
    padding: 0;                   /* ✅ ADD THIS */
}


.nav-links a {
    color: var(--dark);
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.05);
}
/* WordPress Menu Item Classes */
.nav-links .menu-item {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.nav-links .menu-item > a {
    display: block;
}

/* Current/Active Menu Item */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.08);
    font-weight: 600;
}

/* Dropdown/Submenu */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-links .menu-item:hover > .sub-menu {
    display: block;
}

.nav-links .sub-menu .menu-item {
    display: block;
    width: 100%;
}

.nav-links .sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
}

.nav-links .sub-menu a:hover {
    background: #f8f9fa;
}

/* WordPress Menu ID Wrappers */
#menu-primary-navigation,
#menu-primary-navigation-1 {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

#menu-primary-navigation > .menu-item,
#menu-primary-navigation-1 > .menu-item {
    display: inline-block;
}


.nav-cta {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.btn-secondary:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary i {
    font-size: 12px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero.has-slider {
    padding: 0;
    min-height: 500px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none; /* ← REMOVED OVERLAY */
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* ============================================
   UNIVERSITY CAROUSEL
   ============================================ */

.university-carousel {
    margin: 40px 0 60px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
}

.university-carousel h3 {
    text-align: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 35px;
    font-weight: 700;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.university-card {
    min-width: 320px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.university-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

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

.university-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #0052a3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.university-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.university-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.university-card-image i {
    font-size: 80px;
    color: white;
    opacity: 0.3;
    z-index: 1;
}

.university-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.university-card-badge.government {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.university-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.university-card-content h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 12px;
    min-height: 50px;
    font-weight: 600;
    line-height: 1.4;
}

.university-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.university-card-meta i {
    color: var(--primary);
    font-size: 14px;
}

.university-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 15px 0;
}

.university-card-fee {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    border-radius: 10px;
    margin-top: 15px;
}

.university-card-fee .fee-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.university-card-fee .fee-amount {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
    display: block;
}

.university-card-cta {
    margin-top: 15px;
    text-align: center;
}

.university-card-cta .btn-details {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary), #0052a3);
    color: white;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.university-card-cta .btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

/* Carousel Navigation - Desktop */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 102, 204, 0.3);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dfe6e9;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   QUICK INFO BAR
   ============================================ */

.quick-info {
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
}

.quick-info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 13px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-item i {
    font-size: 20px;
}



/* ============================================
   ABOUT SECTION - TWO COLUMN INNOVATIVE DESIGN
   ============================================ */

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column - Image & Stats */
.about-left {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.05);
}

.about-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #0052a3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.overlay-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Quick Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.stat-content h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.stat-content p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

/* Right Column - Content */
.about-right {
    padding: 20px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Features List */
.about-features {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success), #229954);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */
.about-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-about-primary,
.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--primary), #0052a3);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.btn-about-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-about-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.badge-item i {
    font-size: 16px;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }

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

/* Responsive - Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-image {
        height: 350px;
    }

    .about-overlay-card {
        bottom: 20px;
        left: 20px;
        padding: 20px;
        gap: 15px;
    }

    .overlay-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .overlay-content h4 {
        font-size: 24px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-cta-group {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }
}
/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 50px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   WHY GEORGIA SECTION
   ============================================ */

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

.feature-box {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.feature-box:hover {
    box-shadow: 0 8px 30px rgba(0,102,204,0.15);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), #0052a3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-box h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-box p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   UNIVERSITIES TABLE
   ============================================ */

.table-container {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 13px;
}

thead {
    background: var(--primary);
    color: white;
}

thead th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

tbody tr:hover {
    background: #f8f9fa;
}

tbody td {
    padding: 15px 12px;
}

tbody td:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.timeline-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,102,204,0.15);
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.timeline-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   CARDS GRID
   ============================================ */

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

.info-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,102,204,0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary), #0052a3);
    color: white;
    padding: 20px;
    text-align: center;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-body ul {
    list-style: none;
}

.card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body ul li:last-child {
    border-bottom: none;
}

.card-body ul li i {
    color: var(--success);
    font-size: 14px;
}

/* ============================================
   COST SECTION
   ============================================ */

.cost-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cost-box {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.cost-box:hover {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.cost-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.cost-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.cost-label {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--secondary);
    color: white;
}

.btn-orange:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

#faq {
    position: relative;
    overflow: hidden;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--primary);
    color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    font-size: 13px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 18px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--dark);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--secondary);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

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

/* ============================================
   POPUP MODAL
   ============================================ */

.dmf-popup {
    display: none;
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.dmf-popup.active {
    display: block;
    right: 0;
}

.dmf-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
}

.dmf-popup-overlay.active {
    display: block;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary), #0052a3);
    color: white;
    padding: 25px 20px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.popup-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.popup-header p {
    font-size: 13px;
    opacity: 0.9;
}

.popup-body {
    padding: 30px 20px;
}

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

.popup-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.popup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-form button[type="submit"]:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.popup-success,
.popup-error {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 13px;
    display: none;
}

.popup-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.popup-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1200px) {
    .nav-links a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .btn-sm {
        padding: 7px 14px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .nav-links a {
        padding: 8px 8px;
        font-size: 12px;
    }

    .nav-cta {
        gap: 6px;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .nav-container {
        padding: 12px 20px;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 25px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        padding: 14px 10px;
        width: 100%;
        font-size: 14px;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 10px;
    }

    .btn-sm {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 40px 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-box {
        padding: 15px 8px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 8px;
    }

    /* University Carousel - Mobile */
    .university-carousel {
        padding: 30px 0;
        margin: 30px 0;
    }

    .university-carousel h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .carousel-container {
        padding: 0;
        overflow: visible;
    }

    .carousel-track {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 15px;
        gap: 15px;
        transform: none !important;
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    .university-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .university-card:hover {
        transform: none;
    }

    .university-card-image {
        height: 160px;
    }

    .university-card-content {
        padding: 20px 15px;
    }

    .university-card-content h4 {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .university-card-meta {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .university-card-fee {
        padding: 12px;
        margin-top: 12px;
    }

    .university-card-fee .fee-amount {
        font-size: 20px;
    }

    .university-card-cta {
        margin-top: 12px;
    }

    .university-card-cta .btn-details {
        padding: 9px 20px;
        font-size: 12px;
    }

    .carousel-nav {
        display: none !important;
    }

    .carousel-dots {
        margin-top: 20px;
        padding: 0 15px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    /* Quick Info */
    .quick-info-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .quick-item {
        font-size: 11px;
        width: 100%;
    }

    /* Sections */
    section {
        padding: 30px 15px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .features-grid,
    .timeline-items,
    .cards-grid,
    .cost-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 75px;
        right: 15px;
    }

    /* Popup */
    .dmf-popup {
        width: 100%;
        right: -100%;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Extra Small Phones */
@media (max-width: 375px) {
    .university-card {
        min-width: 260px;
        max-width: 260px;
    }

    .university-card-image {
        height: 140px;
    }
}
/* ============================================
   POPUP MODAL - SIDE SLIDE
   ============================================ */

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden !important;
}

/* Popup Overlay */
.dmf-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dmf-popup-overlay.active {
    display: block;
    opacity: 1;
}

/* Popup Container - Side Slide */
.dmf-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: block;
}

.dmf-popup.active {
    right: 0;
}

/* Popup Header */
.popup-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px 25px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popup-header h3 {
    font-size: 24px;
    margin: 0 0 8px 0;
    padding-right: 40px;
    font-weight: 700;
}

.popup-header p {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
}

/* Popup Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Popup Body */
.popup-body {
    padding: 30px 25px;
}

/* Form Styles */
.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.popup-form label span {
    color: var(--danger);
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.popup-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

/* Submit Button */
.popup-form .btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.popup-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.popup-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.popup-success,
.popup-error {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 10px;
}

.popup-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.popup-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.popup-success i,
.popup-error i {
    font-size: 20px;
}

/* Scrollbar for popup */
.dmf-popup::-webkit-scrollbar {
    width: 8px;
}

.dmf-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dmf-popup::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.dmf-popup::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dmf-popup {
        max-width: 100%;
        width: 100%;
    }
    
    .popup-header {
        padding: 25px 20px;
    }
    
    .popup-header h3 {
        font-size: 20px;
    }
    
    .popup-header p {
        font-size: 13px;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .popup-form .form-group {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .popup-header {
        padding: 20px 18px;
    }
    
    .popup-body {
        padding: 20px 18px;
    }
}
/* ========================================
   CERTIFICATION BANNER - COMPACT SINGLE LINE
======================================== */
.certification-banner-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 0;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.banner-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    color: white;
    font-size: 13px;
}

.banner-item i {
    font-size: 18px;
    color: #4ade80;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.banner-item span {
    font-weight: 400;
    letter-spacing: 0.3px;
}

.banner-item strong {
    font-weight: 700;
    margin-right: 4px;
}

.banner-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
}

/* Responsive */
@media (max-width: 992px) {
    .banner-item {
        padding: 0 15px;
        font-size: 12px;
    }
    
    .banner-item i {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .certification-banner-compact {
        padding: 10px 15px;
    }
    
    .banner-inline {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .banner-item {
        padding: 0 12px;
        font-size: 11px;
    }
    
    .banner-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-item:last-child {
        display: none; /* Hide location on very small screens */
    }
}

