    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-blue: #2563eb;
        --secondary-orange: #f97316;
        --accent-green: #10b981;
        --light-bg: #f8fafc;
        --dark-text: #1e293b;
        --muted-text: #64748b;
        --white: #ffffff;
        --border: #e2e8f0;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: var(--dark-text);
        background-color: var(--white);
    }




    /* Emergency Banner */

    .container_banner {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;

    }

    .emergency-banner {
        background: linear-gradient(135deg, #3a76f7 0%, #172d76 100%);
        color: white;
        padding: 10px 0;
        /* border-radius: 40px 40px 40px 40px; */
    }

    .emergency-banner-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .phone-icon {
        width: 1rem;
        height: 1rem;
    }

    .emergency-banner span {
        font-size: 0.875rem;
        font-weight: 500;
    }



    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        border-radius: 0px 0px 40px 40px;
    }

    .nav-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .company-logo {
        height: 60px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: bold;
        color: var(--primary-blue);
        text-decoration: none;
    }

    .logo-img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        /* background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange)); */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
    }

    .nav-links a {
        color: var(--dark-text);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: var(--primary-blue);
    }

    .nav-buttons {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .btn {
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-size: 14px;
    }

    .btn-outline {
        padding: 6px 15px;
        background: transparent;
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);

    }

    .btn-outline:hover {
        background: var(--primary-blue);
        color: white;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
        color: white;
        border: none; 
        padding: 10px 20px;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }

    .btn-secondary {
        background: var(--secondary-orange);
        color: white;
    }


    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-blue);
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 20px;
        z-index: 999;
        border-radius: 40px 40px 0px 0px;
        margin: 0 8px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav-links {
        list-style: none;
        margin-bottom: 20px;
    }

    .mobile-nav-links li {
        margin-bottom: 12px;
    }

    .mobile-nav-links a {
        display: block;
        padding: 12px;
        color: var(--dark-text);
        text-decoration: none;
        font-weight: 500;
        border-radius: 8px;
        transition: background 0.3s;
    }

    .mobile-nav-links a:hover {
        background: var(--light-bg);
    }

    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        background: linear-gradient(135deg, #3a76f7 0%, #172d76 100%);
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.5;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        color: white;
        max-width: 1200px;
        margin-top: 70px;
        padding: 0 40px;
    }

    .hero-badge {
        display: inline-block;
        background: var(--secondary-orange);
        color: white;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.8;
        }
    }

    .hero h1 {
        font-size: 56px;
        font-weight: bold;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .hero h1 .highlight {
        color: var(--secondary-orange);
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 32px;
        opacity: 0.95;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
        opacity: 0.8;
    }

    /* Section Styles */
    section {
        padding: 80px 0;
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 64px;
        margin-top: 50px;
    }

    .section-header h2 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 16px;
        color: var(--dark-text);
    }

    .section-divider {
        width: 96px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
        margin: 0 auto 24px;
    }

    .section-header p {
        font-size: 18px;
        color: var(--muted-text);
    }

    /* About Section */
    .about {
        background: var(--light-bg);
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
    }

    .card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .card.mission h3 {
        color: var(--primary-blue);
    }

    .card.vision h3 {
        color: var(--secondary-orange);
    }

    .features-list {
        display: grid;
        gap: 16px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        color: var(--accent-green);
        flex-shrink: 0;
    }

    /* Courses Section */
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 48px;
    }

    .course-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        transition: all 0.3s;
    }

    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .course-header {
        height: 8px;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    }

    .course-content {
        padding: 24px;
    }

    .course-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
        color: var(--dark-text);
    }

    .course-details {
        margin: 16px 0;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 14px;
        color: var(--muted-text);
    }

    /* Benefits Section */
    .benefits {
        background: var(--light-bg);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 64px;
    }

    .benefit-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
    }

    .benefit-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .stats-banner {
        background: linear-gradient(135deg, var(--primary-blue), #1e40af);
        color: white;
        padding: 48px;
        border-radius: 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        text-align: center;
    }

    .stats-banner .stat-number {
        font-size: 48px;
    }

    /* Testimonials Section */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .testimonial-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
    }

    .stars {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
    }

    .star {
        color: var(--secondary-orange);
        font-size: 20px;
    }

    .testimonial-content {
        font-style: italic;
        color: var(--muted-text);
        margin-bottom: 24px;
        line-height: 1.8;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }

    .author-info .name {
        font-weight: 600;
        color: var(--dark-text);
    }

    .author-info .role {
        font-size: 14px;
        color: var(--muted-text);
    }

    .author-info .company {
        font-size: 14px;
        color: var(--primary-blue);
        font-weight: 500;
    }

    /* Contact Section */
    .contact {
        background: var(--light-bg);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--dark-text);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 16px;
        font-family: inherit;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .info-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        gap: 20px;
    }

    .info-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        flex-shrink: 0;
    }

    .info-icon.phone {
        background: #dbeafe;
        color: var(--primary-blue);
    }

    .info-icon.email {
        background: #fed7aa;
        color: var(--secondary-orange);
    }

    .info-icon.location {
        background: #d1fae5;
        color: var(--accent-green);
    }

    /* Footer */
    .footer {
        background: var(--dark-text);
        color: white;
        padding: 48px 0 24px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer h3 {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: white;
    }

    .social-links {
        display: flex;
        gap: 12px;
        /* margin-top: 16px; */
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }

    .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {

        .nav-links,
        .nav-buttons {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-grid,
        .courses-grid,
        .benefits-grid,
        .testimonials-grid,
        .contact-grid,
        .footer-grid,
        .stats-banner {
            grid-template-columns: 1fr;
        }

        .section-header h2 {
            font-size: 32px;
        }
    }