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

        :root {
            --primary-blue: #0066cc;
            --primary-dark: #004499;
            --secondary-blue: #0099ff;
            --light-blue: #e6f2ff;
            --dark-bg: #1a1a2e;
            --dark-gray: #2d2d44;
            --gray: #666666;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #1f1f1f;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            width: 100%;
            overflow-x: hidden;
        }
        /* Header/Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            max-width: 100%;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 1rem 2rem;
            /* overflow: hidden; */
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-brand {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

       .logo-image{
            width:100px;
            height:auto;
            display:block;
            border-radius: 15px;
        }

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

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

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

        .cta-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-btn:hover {
            background: var(--primary-dark);
        }

        .menu-toggle {
            position: relative;
            z-index: 1001;
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            min-height: 500px;
            background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23003366" width="1200" height="600"/><g opacity="0.1"><rect x="100" y="100" width="150" height="150" fill="white"/><rect x="350" y="200" width="150" height="150" fill="white"/><rect x="700" y="80" width="150" height="150" fill="white"/><rect x="250" y="400" width="150" height="150" fill="white"/><rect x="900" y="350" width="150" height="150" fill="white"/></g></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding:0;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            width:100%;
            max-width: 800px;
            padding:0 20px;
            animation: slideInUp 0.8s ease-out;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

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

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

        .btn-primary {
            background: var(--primary-blue);
            color: white;
            padding: 1rem 0.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

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

        .btn-secondary {
            background: white;
            color: var(--primary-blue);
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: var(--light-blue);
            border-color: var(--primary-blue);
        }

        /* Section Styling */
        section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-blue);
        }

        .section-title h2 {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-bg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-title h3 {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.05rem;
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

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

        .service-card {
            background: var(--white);
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card:hover {
            box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

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

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Training Section */
        .training {
            background: var(--dark-bg);
            color: white;
        }

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

        .training-card {
            background: rgba(0, 102, 204, 0.1);
            border: 1px solid rgba(0, 102, 204, 0.3);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .training-card:hover {
            background: rgba(0, 102, 204, 0.2);
            border-color: var(--secondary-blue);
            transform: translateY(-8px);
        }

       .training-icon{
         width:80px;
         height:80px;
         background:#f4f8ff;
         border-radius:50%;
         display:flex;
         justify-content:center;
         align-items:center;
         margin:0 auto 20px;
   }

     .training-icon i{
        font-size:40px;
        color:#0066ff;
  }

        .training-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .training-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .training-link {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .training-link:hover {
            gap: 0.8rem;
        }

        /* Partners Section */
        .partners {
            background: var(--white);
        }

        .partners-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--gray);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        .partner-logo {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s ease;
            font-weight: 700;
            color: var(--gray);
        }

        .partner-logo:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        /* Statistics Section */
        .stats {
            background: var(--dark-bg);
            color: white;
        }

        .stats-intro {
            text-align: center;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
        }

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

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-blue);
            margin-bottom: 0.5rem;
        }

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

        /* Gallery Section */
        .gallery {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            height: 200px;
            background: linear-gradient(135deg, var(--light-blue) 0%, #cce5ff 100%);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--primary-blue);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
        }

        /* Clients Section */
        .clients {
            background: var(--light-gray);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        .client-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            border-radius: 8px;
            width: 100%;
            font-weight: 700;
            color: var(--gray);
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            background: white;
        }

        .client-logo:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Contact Section */
        .contact {
            background: var(--light-blue);
        }

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

        .contact-content h2 {
            color: var(--dark-bg);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.9rem;
            border: none;
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
        }

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

        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .info-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }

        .info-item h3 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .info-item p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .info-item a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: #ccc;
            padding: 3rem 1rem 1rem;
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-section p,
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                 padding:12px 16px;
            }
            nav{
                width:100%;
                max-width:100%;
                display:flex;
                justify-content:space-between;
                align-items:center;
                padding:0;
            }
            .logo-brand{
                flex:0 0 auto;
            }

            .menu-toggle{
                flex:0 0 auto;
            }
            .nav-links {
                display: none;
            }

            .nav-links{
                position: fixed;
                top: 0;
                right: -280px;
                width: 260px;
                height: 100vh;

                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 20px;

                padding-top: 90px;

                background: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,.15);

                transition: right .35s ease;

                z-index: 999;
            }

            .nav-links.active{
                right: 0;
            }

            .menu-toggle {
                display: block;
            }
            .logo-image{
                width:30px;
                border-radius: 50%;
            }
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            /* *{
                 max-width:100%;
            } */
            header{
                 padding:12px 16px;
            }

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

            /* .logo-brand{
                margin-right:auto;
            }

            .menu-toggle{
                display:block;
                margin-left:auto;
            } */

            .logo-image{
                width:30px;
                height:auto;
            }
            img{
                max-width:100%;
                height:auto;
                border-radius: 10px;
            }

            .contact-form input,
            .contact-form textarea,
            .contact-form button{
             width:100%;
            }
            section {
                padding: 2.5rem 1rem;
            }

            .hero {
                margin-top: 70px;
                min-height: 450px;
                padding: 0;
                overflow: hidden;
            }

            .hero-content {
                width: 100%;
                max-width: 100%;
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.2;
                word-break: break-word;
            }
            .hero-buttons {
                width: 100%;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
            .hero p {
                font-size: 1rem;
                line-height: 1.6;
            }
            .section-title h2 {
                font-size: 1.5rem;
            }

            .services-grid,
            .training-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Alerts */
        .alert {
            padding: 1.2rem;
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }