/*
Theme Name: GG Consultant Pro
Description: A modern, professional WordPress theme for consultancy firms specializing in overseas education and immigration services.
Version: 1.1
Author: GG Consultant
*/

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

html {
    overflow-x: hidden;
    width: 100%;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 120px; /* Account for fixed header */
}

/* WordPress admin bar adjustment for body padding */
body.admin-bar {
    padding-top: 152px; /* 120px + 32px admin bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 166px; /* 120px + 46px admin bar */
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override for hero title to ensure readability */
.hero-title {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.875rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ========================================
   RESPONSIVE HEADER STYLES
   ======================================== */

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease;
    width: 100% !important;
}

/* WordPress admin bar adjustment */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Ensure header stays on top */
.site-header,
.site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}

/* Scrolled header - smaller size */
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.site-header.scrolled .header-top {
    padding: 0.2rem 0 !important;
    font-size: 0.75rem !important;
}

.site-header.scrolled .header-main {
    padding: 0.4rem 0 !important;
}

.site-header.scrolled .logo-image {
    height: 45px !important;
    max-width: 160px !important;
}

.site-header.scrolled .nav-menu {
    gap: 1.2rem !important;
}

.site-header.scrolled .nav-menu a {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.7rem !important;
}

/* Header Top Bar */
.header-top {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Header Social Links */
.header-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

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

.header-social .social-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
}

.header-social .social-link.facebook:hover {
    background: #1877f2;
}

.header-social .social-link.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
}

.header-social .social-link.youtube:hover {
    background: #ff0000;
}

/* Header Main */
.header-main {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Site Branding */
.site-branding {
    flex: 0 0 auto;
    z-index: 1001;
}

.site-logo {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-image {
    height: 65px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 300px;
        padding: 1rem 0.75rem;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
        border-radius: 4px;
        margin: 0.1rem 0;
        transition: all 0.3s ease;
        color: var(--text-dark);
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-main .container {
        justify-content: space-between;
    }
    
    .site-branding {
        flex: 0 0 auto;
    }
}

/* Mobile Header Top */
@media (max-width: 768px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    body {
        padding-top: 100px; /* Reduced for mobile */
    }
    
    body.admin-bar {
        padding-top: 132px; /* 100px + 32px admin bar */
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar {
            padding-top: 146px; /* 100px + 46px admin bar */
        }
    }
    
    .site-header.scrolled .header-top {
        padding: 0.15rem 0;
        font-size: 0.7rem;
    }
    
    .site-header.scrolled .header-main {
        padding: 0.3rem 0;
    }
    
    .site-header.scrolled .logo-image {
        height: 40px;
        max-width: 140px;
    }
    
    .header-top {
        padding: 0.4rem 0;
    }
    
    .header-top .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .contact-info {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .contact-info a {
        font-size: 0.8rem;
    }
    
    .header-social {
        gap: 0.4rem;
    }
    
    .header-social .social-link {
        width: 22px;
        height: 22px;
    }
    
    .header-social .social-link svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 0.3rem 0;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-info a {
        font-size: 0.75rem;
    }
    
    .header-social .social-link {
        width: 20px;
        height: 20px;
    }
    
    .header-social .social-link svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px; /* Further reduced for small mobile */
    }
    
    body.admin-bar {
        padding-top: 112px; /* 80px + 32px admin bar */
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar {
            padding-top: 126px; /* 80px + 46px admin bar */
        }
    }
    
    .site-header.scrolled .header-top {
        padding: 0.1rem 0;
        font-size: 0.65rem;
    }
    
    .site-header.scrolled .header-main {
        padding: 0.25rem 0;
    }
    
    .site-header.scrolled .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .header-main {
        padding: 0.75rem 0;
    }
    
    .logo-image {
        height: 50px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        padding: 0.75rem 0.5rem;
        max-width: 260px;
    }
    
    .nav-menu a {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
        margin: 0.05rem 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
}

/* Extra Small Screens */
@media (max-width: 320px) {
    .logo-image {
        height: 45px;
        max-width: 120px;
    }
    
    .mobile-menu-toggle {
        width: 32px;
        height: 32px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .contact-info a {
        font-size: 0.75rem;
    }
    
    .header-social .social-link {
        width: 20px;
        height: 20px;
    }
    
    .nav-menu {
        padding: 0.5rem 0.4rem;
        max-width: 240px;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.3rem;
        font-size: 0.8rem;
        margin: 0.02rem 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Us Hero Section */
.about-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: none;
}

/* Study Abroad Hero Section */
.study-abroad-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: none;
}

/* Services Hero Section */
.services-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: none;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: none;
}

/* Visa Types Hero Section */
.visa-types-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 50%, rgba(30, 64, 175, 0.8) 100%);
    z-index: 2;
}

/* Background Overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 58, 138, 0.4) 50%, rgba(30, 58, 138, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem 4rem;
    text-align: left;
}

/* About Us Hero Content */
.about-hero-section .hero-content {
    z-index: 3;
    text-align: left;
    padding: 8rem 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Study Abroad Hero Content */
.study-abroad-hero-section .hero-content {
    z-index: 3;
    text-align: left;
    padding: 8rem 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Hero Content */
.services-hero-section .hero-content {
    z-index: 3;
    text-align: left;
    padding: 8rem 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Hero Content */
.contact-hero-section .hero-content {
    z-index: 3;
    text-align: left;
    padding: 8rem 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visa Types Hero Content */
.visa-types-hero-section .hero-content {
    z-index: 3;
    text-align: left;
    padding: 8rem 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    margin-bottom: 1rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    letter-spacing: -0.01em;
}

/* Animations removed as requested */

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 1;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fbbf24;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.25);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    min-width: 140px;
}

.hero-stats .stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.2rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    opacity: 1;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(3px);
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0;
}

/* Home Page Hero Buttons - Left Aligned */
.hero-section .cta-buttons {
    justify-content: flex-start;
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    text-align: center;
    min-width: 170px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #f59e0b;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 2px solid #f59e0b;
}

.btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}


/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateX(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-card.card-1 {
    animation-delay: 0.2s;
}

.floating-card.card-2 {
    animation-delay: 0.4s;
}

.floating-card.card-3 {
    animation-delay: 0.6s;
}

.card-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--white);
    font-weight: 600;
}

.card-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Removed hover animation as requested */

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

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    object-fit: cover;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 1rem;
    z-index: 1;
    pointer-events: none;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Why Study Abroad Buttons */
.why-study-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.why-study-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.why-study-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.why-study-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.why-study-buttons .btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.why-study-buttons .btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Visa Categories Grid */
.visa-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.visa-category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.visa-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.visa-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.visa-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.visa-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.visa-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.visa-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Universities Section */
.universities-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.country-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.country-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.country-flag {
    font-size: 2rem;
    margin-right: 1rem;
}

.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.universities-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.university-item {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.2s ease;
    position: relative;
}

.university-item:hover {
    background: #e0f2fe;
    border-left-color: #1e3a8a;
    transform: translateX(5px);
}

.university-item::before {
    content: "🎓";
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    overflow: hidden;
    z-index: 1;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(30, 64, 175, 0.9) 100%);
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    animation: float-particles 20s linear infinite;
    z-index: 2;
}

@keyframes float-particles {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 1.2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cta-feature .feature-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-btn-primary {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 150px;
    transition: all 0.3s ease;
}

.cta-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item h3.counter {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.stat-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

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

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

/* Contact Form Styles */
.form-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.btn-loading {
    display: none;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.g-recaptcha {
    margin-bottom: 1rem;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Scroll to Top Button - Left Side */
.scroll-to-top {
    position: fixed !important;
    left: 20px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.05);
}

/* Scroll to Top Button - Show State */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    animation: pulse-call 3s infinite;
}

.call-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5), 0 0 0 8px rgba(255, 107, 107, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .scroll-to-top {
        left: 15px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .scroll-to-top {
        left: 10px;
        bottom: 10px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Gallery Slider Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-slider-container {
    position: relative;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-slider {
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.gallery-slide {
    position: relative;
    min-width: 100%;
    height: 400px;
    transition: transform 0.5s ease;
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-image {
    flex: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 300px;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-image.empty-slot {
    background: transparent;
    box-shadow: none;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.gallery-image.empty-slot:hover {
    transform: none;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-scroll-container {
    overflow-x: auto;
    padding: 2rem 0;
    margin-top: 4rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-bg);
    scroll-behavior: smooth;
}

.testimonials-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.testimonials-scroll {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    min-width: max-content;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    box-shadow: var(--shadow-md);
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.scroll-indicator:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .scroll-left {
        left: -20px;
    }
    
    .scroll-right {
        right: -20px;
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--white);
}

.video-container-full {
    margin-top: 4rem;
    width: 100%;
}

.video-wrapper-full {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info a.contact-link {
	color: #3067ce !important;
}
.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Contact Page Specific Styles */
.contactussectionmain .contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contactussectionmain .contact-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.contactussectionmain .contact-form-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Page - Contact Info Styles */
.contactussectionmain .contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 5rem !important;
    border-radius: 2.5rem !important;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(20px) !important;
    display: block !important;
    gap: 0 !important;
}

.contactussectionmain .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    border-radius: 2.5rem 2.5rem 0 0;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contactussectionmain .contact-info::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contactussectionmain .contact-info-header {
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contactussectionmain .contact-info-header h3 {
    font-size: 3.5rem !important;
    color: var(--white) !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    position: relative !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.contactussectionmain .contact-info-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.2); }
}

.contactussectionmain .contact-info-header p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    font-weight: 500 !important;
}

.contactussectionmain .contact-items-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.contactussectionmain .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 2rem !important;
    padding: 2.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 2rem !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    overflow: visible !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 0 !important;
    backdrop-filter: blur(20px) !important;
    min-height: 200px !important;
    width: 100% !important;
}

.contactussectionmain .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 2rem 2rem 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.contactussectionmain .contact-item:hover::before {
    transform: scaleX(1);
}

.contactussectionmain .contact-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contactussectionmain .contact-item:hover::after {
    opacity: 1;
    animation: shimmer 0.8s ease-in-out;
}

.contactussectionmain .contact-item:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.contactussectionmain .contact-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    flex-shrink: 0 !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: visible !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.contactussectionmain .contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contactussectionmain .contact-item:hover .contact-icon::before {
    transform: translateX(100%);
}

.contactussectionmain .contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg) !important;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.contactussectionmain .contact-details {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: visible !important;
}

.contactussectionmain .contact-details h4 {
    font-size: 1.5rem !important;
    color: #2d3748 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    position: relative !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    line-height: 1.2 !important;
}

.contactussectionmain .contact-details h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%, 100% { width: 60px; }
    50% { width: 80px; }
}

.contactussectionmain .contact-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
    width: 100% !important;
}

.contactussectionmain .contact-link {
    color: #2d3748 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%) !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    position: relative !important;
    overflow: visible !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
}

.contactussectionmain .contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.6s ease;
}

.contactussectionmain .contact-link:hover::before {
    left: 100%;
}

.contactussectionmain .contact-link:hover {
    color: var(--white) !important;
    transform: translateX(12px) scale(1.05) !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
}

.contactussectionmain .contact-link::after {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--primary-color);
    transform: translateX(-5px);
}

.contactussectionmain .contact-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contactussectionmain .contact-note {
    color: #4a5568 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    font-style: italic !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    border-left: 4px solid #667eea !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    word-wrap: break-word !important;
}

.contactussectionmain .contact-schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contactussectionmain .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.contactussectionmain .schedule-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.contactussectionmain .schedule-item .time {
    color: var(--primary-color);
    font-weight: 500;
}

.contactussectionmain .schedule-item .time.closed {
    color: var(--text-light);
    font-style: italic;
}

/* Contact Page - Contact Form Styles */
.contactussectionmain .contact-form {
    background: var(--white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contactussectionmain .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.contactussectionmain .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contactussectionmain .form-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contactussectionmain .form-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

.contactussectionmain .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contactussectionmain .form-group {
    margin-bottom: 1.5rem;
}

.contactussectionmain .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.contactussectionmain .form-group input,
.contactussectionmain .form-group textarea,
.contactussectionmain .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.contactussectionmain .form-group input:focus,
.contactussectionmain .form-group textarea:focus,
.contactussectionmain .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-1px);
}

.contactussectionmain .form-group input::placeholder,
.contactussectionmain .form-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.contactussectionmain .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.contactussectionmain .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contactussectionmain .form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contactussectionmain .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.contactussectionmain .form-submit-btn:active {
    transform: translateY(0);
}

.contactussectionmain .btn-loading {
    display: none;
}

.contactussectionmain .form-submit-btn.loading .btn-text {
    display: none;
}

.contactussectionmain .form-submit-btn.loading .btn-loading {
    display: inline;
}

/* Contact Page - Form Message Styles */
.contactussectionmain .form-message {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: none;
}

.contactussectionmain .form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contactussectionmain .form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Contact Page - reCAPTCHA Styling */
.contactussectionmain .g-recaptcha {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Contact Page - Quick Contact Section */
.quick-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

 .quick-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

 .quick-contact-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

 .quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 2rem 2rem 0 0;
}

 .quick-contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

 .quick-contact-card:hover::after {
    opacity: 1;
    animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.quick-contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.quick-contact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

 .quick-contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

 .quick-contact-card:hover .quick-contact-icon::before {
    transform: translateX(100%);
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.contactussectionmain .quick-contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contactussectionmain .quick-contact-icon.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
}

.contactussectionmain .quick-contact-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contactussectionmain .quick-contact-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contactussectionmain .quick-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.contactussectionmain .quick-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contactussectionmain .quick-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contactussectionmain .quick-contact-btn:hover::before {
    left: 100%;
}

.contactussectionmain .quick-contact-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.contactussectionmain .quick-contact-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.contactussectionmain .quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contactussectionmain .quick-contact-btn.whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contactussectionmain .quick-contact-btn.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
}

.contactussectionmain .quick-contact-btn.email:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(234, 67, 53, 0.4);
}

.contactussectionmain .quick-contact-time {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    background: rgba(30, 58, 138, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 0 0;
    margin: 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 0.25rem 0 0;
    text-align: center;
    color: #9ca3af;
    margin: 0;
    background: var(--text-dark);
}

/* Ensure no white space after footer */
.site-footer {
    margin-bottom: 0 !important;
}

.site-footer * {
    margin-bottom: 0 !important;
}

/* Remove any default margins from the last elements */
.footer-bottom p {
    margin: 0;
    padding: 0.25rem 0;
}

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

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.university-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.university-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.country-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.country-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Grid Layout */
.testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Testimonial Navigation */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.testimonial-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    border: 2px solid var(--white);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-scroll {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-navigation {
        gap: 1rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .testimonial-dots {
        gap: 0.3rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-scroll {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Fade-in animation removed */

/* Large screens optimization */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 3.8rem;
        color: #ffffff !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 1.1rem;
        padding: 1rem 2.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .hero-section {
        padding: 3rem 0 2rem;
        height: 100vh;
    }
    
    .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        max-width: 100%;
    }
    
    /* About Us Hero Mobile */
    .about-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .about-hero-section .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        text-align: left;
    }
    
    /* Study Abroad Hero Mobile */
    .study-abroad-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .study-abroad-hero-section .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        text-align: left;
    }
    
    /* Services Hero Mobile */
    .services-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .services-hero-section .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        text-align: left;
    }
    
    /* Contact Hero Mobile */
    .contact-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .contact-hero-section .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        text-align: left;
    }
    
    /* Visa Types Hero Mobile */
    .visa-types-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .visa-types-hero-section .hero-content {
        padding: 6rem 1rem 4rem 2rem;
        text-align: left;
    }
    
    /* Visa Categories Mobile */
    .visa-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visa-category-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        padding: 1.5rem 1.5rem;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .hero-stats .stat-item {
        padding: 0.6rem 1rem;
        min-width: 120px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0;
        padding: 0;
    }
    
    .btn {
        min-width: 180px;
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .video-container-full {
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Page Mobile Styles */
    .contactussectionmain .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contactussectionmain .contact-info {
        padding: 3rem !important;
    }
    
    .contactussectionmain .contact-info-header h3 {
        font-size: 2.5rem !important;
    }
    
    .contactussectionmain .contact-info-header p {
        font-size: 1.2rem !important;
    }
    
    .contactussectionmain .contact-items-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contactussectionmain .contact-item {
        padding: 2rem !important;
        gap: 1.5rem !important;
        min-height: auto !important;
    }
    
    .contactussectionmain .contact-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .contactussectionmain .contact-details h4 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contactussectionmain .contact-link {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .contactussectionmain .contact-note {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .contactussectionmain .contact-form {
        padding: 2rem;
    }
    
    .contactussectionmain .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contactussectionmain .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contactussectionmain .quick-contact-card {
        padding: 2rem;
    }
    
    .gallery-slide {
        height: 200px;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-image {
        height: 100%;
        min-height: 180px;
    }
    
    .gallery-image img {
        min-height: 180px;
    }
    
    .gallery-image.empty-slot {
        border: 1px dashed rgba(255, 255, 255, 0.2);
        min-height: 180px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-scroll {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 350px;
    }
    
    /* CTA Section Tablet */
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
    }
    
    .cta-features {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        gap: 1.2rem;
        justify-content: center;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .testimonials-scroll {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 2rem 0 1rem;
        height: 100vh;
    }
    
    /* About Us Hero Small Mobile */
    .about-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero-section .hero-content {
        padding: 4rem 1rem 2rem 1.5rem;
        text-align: left;
    }
    
    /* Study Abroad Hero Small Mobile */
    .study-abroad-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .study-abroad-hero-section .hero-content {
        padding: 4rem 1rem 2rem 1.5rem;
        text-align: left;
    }
    
    /* Services Hero Small Mobile */
    .services-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .services-hero-section .hero-content {
        padding: 4rem 1rem 2rem 1.5rem;
        text-align: left;
    }
    
    /* Contact Hero Small Mobile */
    .contact-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .contact-hero-section .hero-content {
        padding: 4rem 1rem 2rem 1.5rem;
        text-align: left;
    }
    
    /* Visa Types Hero Small Mobile */
    .visa-types-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .visa-types-hero-section .hero-content {
        padding: 4rem 1rem 2rem 1.5rem;
        text-align: left;
    }
    
    /* Why Study Buttons Mobile */
    .why-study-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .why-study-buttons .btn {
        min-width: 140px;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.4rem;
        color: #ffffff !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem 0.8rem;
        min-width: 100px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .cta-buttons {
        margin-bottom: 0;
        padding: 0;
        gap: 0.6rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .cta-stats .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .cta-stats .stat-number {
        font-size: 2rem;
    }
    
    .cta-stats .stat-label {
        font-size: 0.9rem;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 3.5rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visa-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Screens (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .hero-section {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text {
        margin-bottom: 0;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Screens (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text {
        margin-bottom: 0;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .cta-stats .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .cta-stats .stat-number {
        font-size: 2rem;
    }
    
    .cta-stats .stat-label {
        font-size: 0.9rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Small Mobile Screens (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        height: 55vh;
        min-height: 350px;
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .about-text {
        margin-bottom: 0;
    }
    
    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-feature {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        min-width: 180px;
        width: 100%;
        max-width: 250px;
    }
    
    .cta-stats {
        gap: 1rem;
    }
    
    .cta-stats .stat-item {
        padding: 0.8rem 1rem;
        min-width: 100px;
    }
    
    .cta-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        padding: 0.8rem;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
        font-size: 0.95rem;
    }
    
    /* Form improvements for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Button improvements for mobile */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Minimum touch target size */
    }
}

/* Extra Small Screens (up to 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-contact-info {
    margin-top: 0;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 0.75rem 0 0;
    }
    
    .footer-logo-image {
        max-width: 150px;
    }
    
    .footer-content {
        gap: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-section {
        margin-bottom: 0.5rem;
    }
    
    .footer-section h3 {
        margin-bottom: 0.25rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 0.5rem 0 0;
    }
    
    .footer-logo-image {
        max-width: 120px;
    }
    
    .footer-content {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section {
        margin-bottom: 0.75rem;
    }
    
    .footer-section h3 {
        margin-bottom: 0.4rem;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Print Styles */
@media print {
    .floating-buttons,
    .scroll-to-top {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
    
    .cta-section {
        background: none !important;
        color: #000 !important;
    }
    
    .btn {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
    
    .social-links {
        display: none !important;
    }
}

/* Force sticky header - highest priority */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

body.admin-bar .site-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px !important;
    }
}
