/* Professional Enhancements */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Professional Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Professional Card Effects */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

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

.section-title h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Professional Footer Enhancements */
#footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #007bff;
}

/* Professional Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

/* Partnership Section Styles */
#partnerships {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-card.featured {
    border: 2px solid #007bff;
}

.partner-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.partner-logo-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
}

.partner-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.partner-content {
    padding: 25px;
}

.partner-location {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: 600;
}

.partner-location i {
    margin-right: 10px;
}

.partner-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.partner-services h4,
.partner-contact h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.partner-services ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.partner-services li {
    margin-bottom: 8px;
    color: #555;
}

.partner-contact p {
    margin: 5px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.partner-contact i {
    margin-right: 10px;
    color: #007bff;
    width: 20px;
}

.partner-regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.region-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.region-item i {
    margin-right: 10px;
    color: #007bff;
}

.partnership-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partnership-benefits h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.benefit-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-header {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-logo-placeholder {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .partner-regions {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-benefits {
        padding: 25px;
    }
}

/* Agreement Cards Styles */
.agreement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.agreement-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.agreement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.agreement-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.agreement-card h3 i {
    font-size: 1.1rem;
}

.agreement-card p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.agreement-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.agreement-card li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.agreement-card .btn {
    margin-top: 15px;
    display: inline-block;
}

@media (max-width: 768px) {
    .agreement-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agreement-card {
        padding: 20px;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 10px;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        padding-left: 20px;
    }
    
    .dropdown-menu li a {
        padding: 10px 0;
        color: var(--text-color);
    }
    
    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--primary-color);
    }
}

/* Registration Notice Styles */
.registration-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-bottom: 3px solid #f39c12;
    padding: 20px 0;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.notice-text {
    flex: 1;
}

.notice-text h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.notice-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.notice-action {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0f3460;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 86, 167, 0.3);
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .notice-action {
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Global Styles */
:root {
    --primary-color: #1a56a7;
    --secondary-color: #ff6b35;
    --accent-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --gradient-primary: linear-gradient(135deg, #1a56a7 0%, #0f3460 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    --gradient-accent: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --gradient-dark: linear-gradient(135deg, #1a56a7 0%, #0f3460 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 86, 167, 0.9) 0%, rgba(15, 52, 96, 0.95) 100%);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.text-primary {
    color: var(--primary-color);
}

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

/* Professional Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(26, 86, 167, 0.3);
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 86, 167, 0.4);
}

.logo:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header & Navigation */
#header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

 .navbar nav {
     position: relative;
 }

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 4px;
}

.logo span {
    display: inline-block;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background-blend-mode: overlay;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 100, 0.9) 0%, rgba(0, 20, 60, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #4fc3f7;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #fff;
    transform: translateY(-3px);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta .btn-primary {
    background: #2196f3;
    border: 2px solid #2196f3;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.hero-cta .btn-primary:hover {
    background: #1976d2;
    border-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.hero-cta .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 150px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        width: 45%;
        margin-bottom: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 80%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .stat-item {
        width: 100%;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #003d82;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-nav {
    padding: 2rem;
}

.mobile-menu-nav ul {
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-nav .btn-nav {
    background: var(--primary-color);
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 86, 167, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 86, 167, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

/* Services Section */
#services {
    padding: 5rem 0;
    background: #f9f9f9;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
#about {
    padding: 5rem 0;
}

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

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

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    object-fit: cover;
}

/* Demand Letters Section */
.section-gray {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.demand-letter-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.demand-letter-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.demand-letter-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    text-align: left;
}

.demand-letter-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.demand-letter-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Contact Section */
#contact {
    padding: 5rem 0;
    background: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #003d82;
}

/* Footer */
#footer {
    background: linear-gradient(135deg, #1a3a5f 0%, #0f1f2e 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p, .footer-section a {
    color: #bbb;
    margin-bottom: 1rem;
    display: block;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Floating Icons Animation */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.3; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-icons span {
    position: absolute;
    display: block;
    font-size: 2rem;
    opacity: 0;
    animation: float 15s linear infinite;
}

.floating-icons span:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.floating-icons span:nth-child(2) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 18s; }
.floating-icons span:nth-child(3) { left: 70%; top: 50%; animation-delay: 4s; animation-duration: 20s; }
.floating-icons span:nth-child(4) { left: 30%; top: 70%; animation-delay: 6s; animation-duration: 16s; }

/* Section Headers with Map Pin */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-title h2::before {
    content: '📍';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .demand-letters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-stats { gap: 2rem; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    #hero { padding: 150px 0 100px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-item { flex: 0 0 calc(50% - 1rem); margin-bottom: 1rem; }
    .section-title h2 { font-size: 2rem; }
    .section-title h2::before { display: none; }

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

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .demand-letters-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Map Section */
.section-map {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.section-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23e0e6f0" fill-opacity="0.3"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.map-container {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.world-map {
    flex: 2;
    position: relative;
    min-height: 600px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background: #2196f3;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-marker:hover .marker-pin {
    background: #ff6b35;
    transform: rotate(-45deg) scale(1.2);
}

.marker-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.map-marker:hover .marker-info {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.marker-info h4 {
    margin: 0 0 5px;
    color: #2c3e50;
    font-size: 1rem;
}

.marker-info p {
    margin: 0 0 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.btn-view {
    display: inline-block;
    background: #2196f3;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

.map-legend {
    flex: 1;
    padding: 40px;
    background: #f9fafc;
    border-left: 1px solid #eef1f7;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.category-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 0.95rem;
}

.category-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.category-dot.construction { background-color: #f6ad55; }
.category-dot.healthcare { background-color: #68d391; }
.category-dot.engineering { background-color: #63b3ed; }
.category-dot.it { background-color: #b794f4; }
.category-dot.hospitality { background-color: #f687b3; }
.category-dot.education { background-color: #4fd1c5; }

.map-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef1f7;
}

.map-stats .stat-item {
    text-align: center;
}

.map-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.map-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .map-container {
        flex-direction: column;
    }
    
    .world-map {
        min-height: 500px;
        padding: 30px;
    }
    
    .map-legend {
        border-left: none;
        border-top: 1px solid #eef1f7;
    }
}

@media (max-width: 768px) {
    .section-map {
        padding: 60px 0;
    }
    
    .world-map {
        min-height: 400px;
        padding: 20px;
    }
    
    .map-legend {
        padding: 25px;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Modern Animations & Effects Inspired by Top Recruitment Websites */

/* Smooth Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Advanced Hover Effects */
.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.feature-card, .category-card, .service-card, .job-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before, .category-card::before, .service-card::before, .job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover, .category-card:hover, .service-card:hover, .job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before, .category-card:hover::before, .service-card:hover::before, .job-card:hover::before {
    opacity: 0.1;
}

/* Icon Animations */
.feature-icon, .category-icon, .service-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.category-card:hover .category-icon,
.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

/* Parallax Hero Section */
#hero {
    position: relative;
    overflow: hidden;
}

#hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Animated Statistics */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sticky Navigation with Scroll Effects */
#header {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 86, 167, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(26, 86, 167, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 86, 167, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Particle Background Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 10s infinite linear;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Modern Form Effects */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 167, 0.1);
    transform: translateY(-2px);
}

/* Testimonial Carousel Animation */
.testimonial-card {
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.9);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu Animation */
.mobile-menu-btn {
    transition: all 0.3s ease;
}

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

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

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Footer Animation */
.footer-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Job Card Special Effects */
.job-card {
    position: relative;
    overflow: hidden;
}

.job-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;
}

.job-card:hover::after {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translateX(100%);
        opacity: 0;
    }
}

/* Responsive Animations */
@media (max-width: 768px) {
    .reveal, .reveal-left, .reveal-right {
        transform: none;
        opacity: 1;
    }
    
    .feature-card:hover, .category-card:hover, .service-card:hover, .job-card:hover {
        transform: none;
    }
}

/* Enhanced Hero Section Styles - Added Directly */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a56a7 0%, #0f3460 50%, #1a56a7 100%);
}

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

.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.gradient-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 86, 167, 0.8) 0%, rgba(15, 52, 96, 0.7) 50%, rgba(26, 86, 167, 0.8) 100%);
    z-index: 2;
}

.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* Floating Reviews */
.floating-reviews {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.floating-review {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 250px;
    animation: floatReview 8s ease-in-out infinite;
    border: 2px solid rgba(255, 107, 53, 0.3);
    pointer-events: auto;
}

.review-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.review-2 {
    top: 50%;
    right: 8%;
    animation-delay: 3s;
}

.review-3 {
    bottom: 20%;
    right: 3%;
    animation-delay: 6s;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.floating-review p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

@keyframes floatReview {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px) rotate(-1deg);
        opacity: 0.95;
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content-enhanced {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-left {
    color: white;
}

.hero-title-enhanced {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.title-main {
    color: white;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.title-accent {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 50%, #667eea 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.title-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.hero-description-enhanced {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
    position: relative;
}

.hero-description-enhanced::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    border-radius: 2px;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item-quick {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    min-width: 140px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item-quick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(240, 147, 251, 0.1));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat-item-quick:hover::before {
    opacity: 1;
}

.stat-item-quick:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number-quick {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label-quick {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Buttons */
.hero-cta-enhanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-enhanced {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

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

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    color: white;
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary-enhanced:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Hero Right - Success Cards */
.hero-right {
    position: relative;
    z-index: 15;
}

.success-cards-stack {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
    z-index: 10;
}

.success-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

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

.success-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.success-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.6s ease;
}

.success-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.card-content h4 {
    color: #1a56a7;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.card-content p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.salary {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.8rem;
}

.success-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #48bb78;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 13;
    transform: rotate(-5deg);
    position: relative;
}

.card-2 {
    top: 80px;
    left: 30px;
    z-index: 12;
    transform: rotate(3deg);
    position: relative;
}

.card-3 {
    top: 160px;
    left: 60px;
    z-index: 11;
    transform: rotate(-3deg);
    position: relative;
}

/* Live Counter */
.live-counter {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.counter-pulse {
    width: 10px;
    height: 10px;
    background: #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.counter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

/* Basic Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #1a56a7 0%, #0f3460 100%);
    color: white;
}

.section-light {
    background: #f8f9fa;
    color: #333;
}

.section-alert {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
    color: white;
    padding: 8px 0 2px 0;
    margin-bottom: 5px;
}

.section-alert .container {
    padding-top: 5px;
    padding-bottom: 5px;
}

 #scam-alert {
     margin-bottom: 0;
 }
 
 #scam-alert + #footer {
     margin-top: 0;
     padding-top: 1.5rem;
 }

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    color: #333;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.about-features {
    margin: 2rem 0;
}

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

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Additional Section Styles */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.process-step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f093fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a56a7, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.alert-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.alert-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Testimonials Section Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: #ff6b35;
    position: absolute;
    opacity: 0.3;
}

.testimonial-content p::before {
    top: -10px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -20px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.testimonial-author h4 {
    color: #1a56a7;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Hero Styles */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.gradient-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

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

.hero-left {
    color: white;
}

.hero-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    color: white;
}

.title-accent {
    display: block;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero-description-enhanced {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.quick-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item-quick {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-number-quick {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label-quick {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta-enhanced {
    display: flex;
    gap: 1rem;
}

.btn-enhanced {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-secondary-enhanced {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-right {
    position: relative;
}

.success-cards-stack {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
}

.success-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 280px;
    transition: all 0.3s ease;
}

.success-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.card-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.salary {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.success-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.card-2 {
    top: 80px;
    left: 40px;
    z-index: 2;
}

.card-3 {
    top: 160px;
    left: 80px;
    z-index: 1;
}

.live-counter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-pulse {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

.counter-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.floating-reviews {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 5;
}

.floating-review {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.review-1 {
    animation-delay: 0.5s;
}

.review-2 {
    animation-delay: 1s;
}

.review-3 {
    animation-delay: 1.5s;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.floating-review p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.navbar {
    padding: 1rem 2rem;
}

.navbar nav {
    position: relative;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 12px;
}

.page-header {
    padding: 130px 0 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        z-index: 1001;
    }

    .nav-links.active li {
        margin: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo::before {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .hero-content-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .quick-stats {
        justify-content: center;
    }
    
    .hero-cta-enhanced {
        justify-content: center;
    }
    
    .floating-reviews {
        display: none;
    }
    
    .success-cards-stack {
        height: 300px;
    }
    
    .success-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin-bottom: 1rem;
        transform: none !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hero-title-enhanced {
        font-size: 2.5rem;
    }
    
    .hero-description-enhanced {
        font-size: 1rem;
    }
    
    .success-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 1rem;
    }
    
    .mobile-menu {
        width: 90%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-enhanced {
        font-size: 2rem;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-enhanced {
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Footer visibility fix */
#footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

#footer .container,
#footer .footer-content,
#footer .footer-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

#footer h3,
#footer p,
#footer a {
    color: #fff !important;
}

/* Ensure footer has minimum height and content */
#footer {
    min-height: 300px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
}
