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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    overflow-x: hidden;
    font-display: swap;
    margin: 0;
    padding: 0;
}

body.ltr {
    font-family: 'Inter', 'Cairo', sans-serif;
}

/* Font loading optimization */
body.fonts-loaded {
    --fonts-loaded: 1;
}

/* Prevent layout shift during font loading */
.nav-logo, .logo {
    font-display: swap;
}

/* Critical above-the-fold styles - Optimized for LCP */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8rem 0 2rem;
    margin-top: 70px;
    contain: layout style paint;
}

/* Optimize initial rendering - LCP Element */
.hero {
    text-align: center;
    padding: 4rem 0;
    contain: layout style;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    contain: layout style;
}

.logo .gold {
    color: #ffd700;
}

/* LCP Optimization - H1 Element */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
    contain: layout style;
}

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

/* Preload critical images */
.powered-by img {
    width: auto;
    height: 40px;
    contain: layout style;
}

/* Navigation */
.navbar {
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 60, 114, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.nav-logo .gold {
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nav-link.active {
    background: #ffd700;
    color: #1e3c72;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nav-cta-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e3c72;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Language Toggle */
.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 40px;
}

.language-btn.active {
    background: #ffd700;
    color: #1e3c72;
}

.language-btn:hover:not(.active) {
    background: rgba(255, 215, 0, 0.2);
}

/* RTL/LTR Support */
body.ltr {
    direction: ltr;
}

body.ltr .nav-container {
    flex-direction: row;
}

body.ltr .language-toggle {
    margin-left: 0;
    margin-right: 1rem;
}

body.ltr .nav-cta-btn {
    margin-right: 0;
    margin-left: 1rem;
}

body.ltr .feature-icon {
    margin-left: 0;
    margin-right: 1rem;
}

body.ltr .service-detail-content li {
    padding-right: 0;
    padding-left: 1.5rem;
}

body.ltr .service-detail-content li:before {
    right: auto;
    left: 0;
}

body.ltr .testimonial-card {
    border-right: none;
    border-left: 4px solid #ffd700;
}

body.ltr .step-item:nth-child(odd) .step-content {
    margin-right: 0;
    margin-left: 2rem;
}

body.ltr .step-item:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: 2rem;
}

body.ltr .step-item:nth-child(odd) .step-content::before {
    left: auto;
    right: -30px;
    border-right-color: transparent;
    border-left-color: #f8f9fa;
}

body.ltr .step-item:nth-child(even) .step-content::before {
    right: auto;
    left: -30px;
    border-left-color: transparent;
    border-right-color: #f8f9fa;
}

@media (max-width: 1120px) {

    body.ltr .step-item:nth-child(odd) .step-content,
    body.ltr .step-item:nth-child(even) .step-content {
        margin-right: 0;
        margin-left: 1rem;
    }

    .language-toggle {
        margin: 0;
        order: -1;
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo .gold {
    color: #ffd700;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e3c72;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #1e3c72, #ffd700);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

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

.service-icon {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

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

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-left: 1rem;
}

.feature-text {
    font-weight: 600;
    color: #1e3c72;
}

/* Special Offer */
.special-offer {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 4rem 0;
    text-align: center;
    color: #1e3c72;
}

.offer-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #1e3c72;
    color: white;
}

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

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(30, 60, 114, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.contact-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 215, 0, 0.05));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.contact-icon {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    color: #1e3c72;
    text-shadow: 0 6px 12px rgba(30, 60, 114, 0.3);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1e3c72;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: #2a5298;
}

.contact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item p a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item p a:hover {
    background: rgba(255, 255, 255, 1);
    border-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-item p a[href^="mailto:"]::before {
    content: '✉';
    font-size: 1.1em;
}

.contact-item p a[href^="https://wa.me/"]::before {
    content: '📱';
    font-size: 1.1em;
}

.contact-item p a[href^="https://"]::before {
    content: '🌐';
    font-size: 1.1em;
}

.contact-item p a[href^="https://"][href*="wa.me"]::before {
    content: '📱';
    font-size: 1.1em;
}

/* Social Media Section */
.social-media-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
}

.social-title h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-title p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #42a5f5);
}

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

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

.share-section {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

.share-section h4 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    background: white;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook-share:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.twitter-share:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-btn.linkedin-share:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.share-btn.whatsapp-share:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.copy-link:hover {
    border-color: #6c757d;
    color: #6c757d;
}

/* Responsive Design for Social Media */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .share-buttons {
        gap: 0.8rem;
    }
    
    .share-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-title h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 180px;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #0f1729;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 1120px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

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

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

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

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

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission h3,
.vision h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission h3 i,
.vision h3 i {
    color: #ffd700;
    margin-left: 0.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed #1e3c72;
}

.image-placeholder i {
    font-size: 4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #1e3c72;
    font-weight: 600;
    margin: 0;
}

/* Detailed Services */
.detailed-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.detailed-services-list {
    margin-top: 3rem;
}

.service-detail {
    display: flex;
    background: white;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-detail-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: #ffd700;
}

.service-detail-content {
    padding: 2rem;
    flex: 1;
}

.service-detail-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-right: 1.5rem;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-right: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #1e3c72;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.pricing-badge {
    background: #ffd700;
    color: #1e3c72;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
}

.price-period {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #ffd700;
    margin-left: 0.5rem;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
}

.pricing-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #1e3c72;
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Partners & Certifications */
.partners {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.partner-item {
    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;
}

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

.partner-icon {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.partner-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.partner-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Steps */
.process {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #ffd700 100%);
    transform: translateX(50%);
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:nth-child(odd) {
    flex-direction: row;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.step-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-item:nth-child(odd) .step-content {
    margin-right: 2rem;
}

.step-item:nth-child(even) .step-content {
    margin-left: 2rem;
}

.step-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Arrow indicators */
.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.step-item:nth-child(odd) .step-content::before {
    left: -30px;
    border-right-color: #f8f9fa;
}

.step-item:nth-child(even) .step-content::before {
    right: -30px;
    border-left-color: #f8f9fa;
}

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

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

/* Responsive Updates */
@media (max-width: 1120px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail-icon {
        min-width: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-steps::before {
        right: 30px;
        transform: none;
    }

    .step-item:nth-child(odd),
    .step-item:nth-child(even) {
        flex-direction: row;
    }

    .step-item:nth-child(odd) .step-content,
    .step-item:nth-child(even) .step-content {
        margin-right: 0;
        margin-left: 1rem;
    }

    .step-content::before {
        display: none;
    }

    .step-number {
        margin: 0 1rem 0 0;
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta-btn {
        display: none;
    }

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

    .header {
        padding: 6rem 0 2rem;
    }
}