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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h2 {
    color: #DAA520;
    font-weight: 700;
    font-size: 1.5rem;
}

.menu-toggle {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, #2E8B57 0%, #228B22 100%);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-nav {
    padding: 1rem 0;
}

/* Navigation Sections */
.nav-section {
    margin-bottom: 0.5rem;
}

.nav-section-title {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-section-title i {
    margin-left: 8px;
    font-size: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding-right: 2.5rem;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-right: 4px solid #FFD700;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FFD700;
}

.nav-link {
    position: relative;
}

.nav-link i {
    margin-left: 12px;
    font-size: 1.1rem;
}

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

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

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 300px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 2rem;
    position: relative;
    z-index: 15;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-learn-more {
    background: linear-gradient(135deg, #2E8B57, #32CD32);
    color: white;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.btn-course-details {
    background: linear-gradient(135deg, #228B22, #2E8B57);
    color: white;
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.btn-view-packages {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-order-now {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-register-big {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-register-big i {
    margin-left: 10px;
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.academic-banner,
.courses-banner,
.quran-banner,
.design-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2E8B57, #228B22);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.academic-banner i,
.courses-banner i,
.quran-banner i,
.design-banner i {
    font-size: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.section-intro {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Cards and Grids */
.features-grid,
.courses-grid,
.packages-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card,
.course-card,
.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:hover,
.course-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i,
.course-icon i,
.service-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-card h3,
.course-card h3,
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-price {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-weight: 600;
}

/* Package Cards */
.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.package-card.featured {
    transform: scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    text-align: right;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-features i {
    color: #10ac84;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

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

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ffd700;
}

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

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

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

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

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

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

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

.register-section {
    margin-bottom: 2rem;
}

.copyright {
    opacity: 0.7;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1rem 0;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    /* Hero Services Mobile */
    .hero-services {
        margin: 3rem 0 2rem;
        padding: 0 1rem;
    }
    
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-header h3 {
        font-size: 1.6rem;
    }
    
    .hero-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-service-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .hero-service-card.featured {
        transform: none;
        margin-top: 0;
    }
    
    .hero-service-card.featured:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-service-card h4 {
        font-size: 1.1rem;
    }
    
    .hero-service-card p {
        font-size: 0.9rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .courses-grid,
    .packages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 300px;
        right: -300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .btn-register-big {
        font-size: 1rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0.5rem 0;
        min-height: 100vh;
        margin-bottom: 572px;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        gap: 0.6rem;
    }
    
    /* Hero Services Very Small Screens */
    .hero-services {
        margin: 2rem 0 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .services-header {
        margin-bottom: 1.5rem;
    }
    
    .services-header h3 {
        font-size: 1.4rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .hero-service-card {
        padding: 1.2rem;
        margin: 0;
        min-height: 160px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-service-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        top: -3px;
        right: -3px;
    }
    
    .academic-banner,
    .courses-banner,
    .quran-banner,
    .design-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .academic-banner i,
    .courses-banner i,
    .quran-banner i,
    .design-banner i {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
}

.about-section {
    background: rgba(255, 255, 255, 0.05);
}

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

.about-text {
    color: white;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2E8B57;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-list i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background: rgba(255, 255, 255, 0.03);
}

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

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.team-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2E8B57, #228B22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.team-role {
    font-size: 1.1rem;
    color: #2E8B57;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Hero Services Section */
.hero-services {
    margin: 4rem 0 3rem;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 10;
}

.hero-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
    z-index: 20;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.hero-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.hero-service-card.featured {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.02);
    position: relative;
    z-index: 25;
}

.hero-service-card.featured:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #228B22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.hero-service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.5);
}

.hero-service-card.featured .service-icon-wrapper {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.hero-service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffd700;
}

.hero-service-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-arrow {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #2E8B57;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    animation: pulse 2s infinite;
}

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

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 8%;
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 80%;
    animation-delay: 6s;
}

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

/* Section Header for other pages */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2E8B57, #228B22);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #228B22, #2E8B57);
} 