   .hero {
            height: 50vh;
            background: linear-gradient(135deg, #0FA9E1 0%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
    .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #e0f3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.3s both;
        }
    .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #ff6b00;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    /* Projects Section */
        .projects-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #0D2538 0%, #091821 100%);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: #fff;
        }

        .section-title span {
            color: #e63946;
        }

        /* Scrolling Projects Container */
        .projects-scroll-container {
            overflow: hidden;
            position: relative;
            padding: 40px 0;
        }

        .projects-track {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
            width: max-content;
        }

        .projects-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .project-card {
            width: 450px;
            height: 300px;
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-title {
           
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
        }

        .project-category {
           
            color: #ff6b00;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Reverse Direction Track */
        .projects-track-reverse {
            animation: scrollReverse 35s linear infinite;
        }

        @keyframes scrollReverse {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }    
    /* Services Section */
        .services-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0FA9E1 0%, #16213e 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: #ff6b00;
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .service-card p {
            color: #ccc;
            line-height: 1.6;
        }    
    /* CTA Section */
        .cta-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0FA9E1 0%, #16213e 100%);
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: linear-gradient(45deg, #ff6b00, #ffb800);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
        }

        /* Partners Section */
        .partners-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #0D2538 0%, #091821 100%);
        }

        .partners-scroll-container {
            overflow: hidden;
            position: relative;
            padding: 40px 0;
        }

        .partners-track {
            display: flex;
            gap: 60px;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            width: 200px;
            height: 100px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partner-logo:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: #ff6b00;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) brightness(1.5);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%) brightness(1);
        }

        /* Certifications Section */
        .certifications-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0FA9E1 0%, #16213e 100%);
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cert-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .cert-card:hover {
            border-color: #ff6b00;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
        }

        .cert-image {
            width: 100%;
            height: 300px;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        .cert-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            filter: brightness(0.9);
        }

        .cert-card:hover .cert-image img {
            transform: scale(1.05);
            filter: brightness(1);
        }

        .cert-card h3 {
            font-size: 1.5rem;
            color: #ff6b00;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .cert-card p {
            color: #ccc;
        
        }

        /* Contact Form */
        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 50px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #ff6b00;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #999;
        }

        .form-textarea {
            margin-bottom: 20px;
            resize: vertical;
        }

        select.form-input {
            cursor: pointer;
        }

        select.form-input option {
            background: #1a1a1a;
            color: #fff;
        }

        .contact-form .cta-button {
            width: 100%;
            margin-top: 10px;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
         

            .hero p {
                font-size: 1.2rem;
            }

            .stats {
                flex-direction: column;
                gap: 30px;
            }

            .project-card {
                width: 350px;
                height: 250px;
            }

            .section-title {
                font-size: 2rem;
            }

            .partner-logo {
                width: 150px;
                height: 80px;
            }

            .certifications-section {
                padding: 60px 20px;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cert-image {
                height: 250px;
            }

            .services-section {
                padding: 60px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .cta-section {
                padding: 60px 20px;
            }

            .partners-section {
                padding: 60px 0;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                padding: 60px 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1.5rem;
            }

            .project-title {
                font-size: 1.2rem;
            }

            .project-overlay {
                padding: 20px;
            }

            .service-card {
                padding: 30px;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .cert-card h3 {
                font-size: 1.3rem;
            }

            .projects-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .project-card {
                width: 300px;
                height: 220px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .partner-logo {
                width: 120px;
                height: 70px;
            }

            .cert-image {
                height: 200px;
            }

            .cta-button {
                padding: 15px 40px;
               
            }

            .form-input, .form-textarea {
                padding: 12px 15px;
                
            }
        }     







