/* ===================================
   Mother's Love Consultancy - Main CSS
   =================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for fixed header */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Social Media Bar */
.social-bar {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
    color: #2c5aa0;
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.social-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-links a {
    color: #2c5aa0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.1);
}

.social-links a:hover {
    color: white;
    background: #4a7bc8;
    transform: translateY(-2px);
}

/* Floating Contact Info */
.floating-contact-info {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 1;
    max-width: 280px;
}

/* Ensure floating contact doesn't interfere with main content */
@media (max-width: 1200px) {
    .floating-contact-info {
        left: 10px;
        max-width: 250px;
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .floating-contact-info {
        left: 5px;
        max-width: 220px;
        padding: 12px;
    }
    
    .contact-item span {
        font-size: 0.8rem;
    }
}

.floating-contact-info.hidden {
    opacity: 0;
    transform: translateY(-50%) translateX(-100%);
}

.floating-contact-info:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 20px 45px rgba(44, 90, 160, 0.4);
}

.floating-contact-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.contact-item i {
    color: #ffeb3b;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f0f0f0;
}

/* Floating Contact Animation */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.floating-contact-info {
    animation: floatIn 0.6s ease-out 1s both;
}

/* Pulse effect for attention */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(44, 90, 160, 0.5), 0 0 20px rgba(44, 90, 160, 0.3);
    }
}

.floating-contact-info:not(.hidden) {
    animation: floatIn 0.6s ease-out, pulse-glow 3s ease-in-out infinite 2s;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 35px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

header.sticky {
    top: 0;
    box-shadow: 0 4px 25px rgba(44, 90, 160, 0.4);
    border-top: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo i {
    margin-right: 12px;
    font-size: 2rem;
    color: #ffeb3b;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    margin: 0 2px;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}


.nav-links li a.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    text-align: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: 115px; 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600" opacity="0.03"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c5aa0;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: none;
    opacity: 1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.6;
    font-weight: 500;
    opacity: 1;
    letter-spacing: 0.3px;
    color: #2c2c2c;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #2c5aa0;
    color: white;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    border: 2px solid transparent;
}

.cta-button.secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    box-shadow: 0 6px 18px rgba(44, 90, 160, 0.4);
    background: #1e3c72;
}

.cta-button.secondary:hover {
    background: #2c5aa0;
    color: #ffffff;
    border-color: #2c5aa0;
}


/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}


.stats-content {
    position: relative;
}

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

.stats-header h2 {
    font-size: 2.4rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 600;
}

.stats-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2c5aa0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(44, 90, 160, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    position: relative;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2c5aa0;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
}

.stat-item p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-item .description {
    font-size: 0.95rem;
    color: #888;
    font-weight: 400;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5aa0;
    border-radius: 1px;
}

.section-title p {
    font-size: 1.3rem;
    color: #2c2c2c;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

/* Removed background pattern for clean light appearance */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.service-card {
    background: #fdfdfd;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f3f4;
    height: auto;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.12);
    border-color: rgba(44, 90, 160, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #2c5aa0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px solid #2c5aa0;
    border-radius: 18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #2c5aa0;
}

.service-card p {
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: #2c2c2c;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2c5aa0;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    background: #1e3c72;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* Destinations Section */
.destinations {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20" stroke="%232c5aa0" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M0,40 Q20,25 40,40 T80,40" stroke="%231e3c72" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M10,60 Q30,45 50,60 T90,60" stroke="%232c5aa0" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
    background-size: 300px 300px;
    animation: waveMove 15s linear infinite;
}

.destinations-content {
    position: relative;
    z-index: 2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.destination-card {
    position: relative;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(30, 60, 114, 0.8));
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
}

.destination-card:hover::before {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(30, 60, 114, 0.9));
}

.destination-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.usa-bg { background: linear-gradient(135deg, #1e3c72, #2c5aa0); }
.australia-bg { background: linear-gradient(135deg, #4a7bc8, #5d9cec); }
.canada-bg { background: linear-gradient(135deg, #2c5aa0, #4a7bc8); }
.uk-bg { background: linear-gradient(135deg, #1e3c72, #5d9cec); }
.germany-bg { background: linear-gradient(135deg, #2c5aa0, #1e3c72); }
.newzealand-bg { background: linear-gradient(135deg, #4a7bc8, #2c5aa0); }

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 35px;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    backdrop-filter: blur(5px);
}

.destination-card:hover .destination-content {
    transform: translateY(0);
}

.destination-flag {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.destination-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.destination-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.destination-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.destination-card:hover .destination-features {
    opacity: 1;
    transform: translateY(0);
}

.destination-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Our Staff Section */
.our-staff {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.our-staff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%232c5aa0" cx="10" cy="20" r="1" opacity="0.03"/><circle fill="%231e3c72" cx="90" cy="40" r="1.5" opacity="0.03"/><circle fill="%232c5aa0" cx="30" cy="80" r="1.2" opacity="0.03"/><circle fill="%231e3c72" cx="70" cy="60" r="1" opacity="0.03"/></svg>');
    background-size: 200px 200px;
    animation: patternMove 40s linear infinite;
}

.our-staff .section-title,
.our-staff .staff-grid {
    position: relative;
    z-index: 2;
}

.our-staff .section-title {
    margin-bottom: 60px;
}

.our-staff .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.our-staff .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.staff-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3c72);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.staff-card:hover::before {
    transform: scaleX(1);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.15);
}

.staff-photo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    position: relative;
}

.staff-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.staff-card:hover .staff-photo img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.3);
}

.staff-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.staff-card:hover .staff-placeholder {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.staff-info h3 {
    color: #2c5aa0 !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.staff-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-info p {
    color: #555 !important;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500 !important;
}

.staff-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.specialty-tag {
    background: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(44, 90, 160, 0.2);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 140px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2c5aa0;
    border-radius: 1px;
}

.about-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-features {
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #2c5aa0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
    padding: 18px;
    background: #2c5aa0;
    color: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(44, 90, 160, 0.2);
}

.about-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.about-image {
    position: relative;
}

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

.about-image-main {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.office-placeholder {
    text-align: center;
}

.office-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.office-placeholder h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.office-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.about-image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.about-image-overlay p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.floating-badge .badge-number {
    font-size: 1.4rem;
    line-height: 1;
}

.floating-badge .badge-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Stories Section */
.success-stories {
    background: #f8f9fa;
    padding: 140px 0;
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%232c5aa0" points="50,5 60,35 95,35 70,55 80,85 50,65 20,85 30,55 5,35 40,35" opacity="0.05"/></svg>');
    background-size: 150px 150px;
    animation: starMove 25s linear infinite;
}

.success-content {
    position: relative;
    z-index: 2;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid #f8f9fa;
    height: auto;
    min-height: 350px;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2c5aa0, #1e3c72);
}

.story-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(44, 90, 160, 0.12);
    border-color: rgba(44, 90, 160, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.student-photo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.student-photo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.student-info h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}

.student-info p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.university-badge {
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.story-card blockquote {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    margin: 0;
    padding-left: 30px;
}

.story-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.achievement-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.achievement-tag {
    background: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-container {
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-align: center;
    position: relative;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-info {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    color: white;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.2);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details a {
    color: #e8f4f8;
    text-decoration: none;
    font-weight: 600;
}

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

.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.social-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #333;
    font-weight: 700;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.12);
    background: white;
    transform: translateY(-2px);
}

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

.submit-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
    background: linear-gradient(135deg, #1e3c72, #2c5aa0);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2c5aa0 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%232c5aa0" cx="20" cy="20" r="1" opacity="0.1"/><circle fill="%231e3c72" cx="80" cy="30" r="1.5" opacity="0.1"/><circle fill="%232c5aa0" cx="40" cy="70" r="1.2" opacity="0.1"/><circle fill="%231e3c72" cx="70" cy="80" r="1" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    animation: footerPattern 30s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 22px;
    color: #2c5aa0;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2c5aa0;
    border-radius: 1px;
}

.footer-section p {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 0.7rem;
    top: 2px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
    transform: translateX(3px);
}

.company-info {
    max-width: 300px;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.company-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #2c5aa0;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-contact-item i {
    width: 18px;
    margin-right: 10px;
    color: #2c5aa0;
    font-size: 1rem;
}

.footer-contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #2c5aa0;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.newsletter h4 {
    color: #2c5aa0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #4a7bc8;
}

.footer-social {
    margin-top: 30px;
}

.footer-social h4 {
    color: #2c5aa0;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.footer-social-links a:hover {
    background: #4a7bc8;
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #aaaaaa;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2c5aa0;
}

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

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
}

.phone-btn {
    background: linear-gradient(135deg, #4a7bc8, #2c5aa0);
}

.scroll-top-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #1e3c72);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Utility Classes */
.hidden {
    display: none;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Additional Visual Improvements */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.overflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

/* Improved Card Layouts */
.card-equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content-flex {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Better Text Readability */
.text-balance {
    text-wrap: balance;
}

.line-height-relaxed {
    line-height: 1.75;
}

/* Enhanced Focus States */
*:focus-visible {
    outline: 3px solid rgba(44, 90, 160, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improved Container Spacing */
.section-spacing {
    padding: 120px 0;
}

.section-spacing-small {
    padding: 80px 0;
}

/* Better Image Handling */
.image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Enhanced Typography */
.heading-primary {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-muted {
    color: #6c757d;
    font-weight: 400;
}

/* Better Button Spacing */
.btn-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Improved Grid Layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Animation Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

@keyframes gradient-shift {
    0% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300px); }
}

@keyframes starMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-150px) translateY(-150px); }
}

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

/* Fix Section Titles Text Visibility - Per Section Basis */
/* Services Section */
.services .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.services .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

/* Destinations Section */
.destinations .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.destinations .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

/* Success Stories Section */
.success-stories .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.success-stories .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

/* About Section */
.about .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.about .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

/* Contact Section */
.contact .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    font-weight: 700 !important;
}

.contact .section-title p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

/* Fix Service Cards Text Visibility - Override any conflicting styles */
.services .service-card h3 {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.services .service-card p {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) !important;
}

.services .service-features li {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

/* Fix Success Stories Section Text Visibility */
.success-stories .student-info h4 {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.success-stories .student-info p {
    color: #2c2c2c !important;
    font-weight: 600 !important;
}

.success-stories .story-card blockquote {
    color: #1a1a1a !important;
    font-weight: 500 !important;
}

/* Custom Scrollbar with Blue Gradient Theme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    border-radius: 10px;
    border: 2px solid #f1f3f4;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4a7bc8 0%, #2c5aa0 100%);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #1e3c72 0%, #2c5aa0 100%);
}

::-webkit-scrollbar-corner {
    background: #f1f3f4;
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #2c5aa0 #f1f3f4;
}

.floating-btn-logo {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

/* Hide icons when logo is present */
.floating-btn.has-logo i {
    display: none;
}
