.topMenu a {
display: block;
padding: 0.3125rem 0.25rem;
}

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        
        /* Navbar */
        .navbar {
            background-color: #ffffff;
            padding: 5px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            color: #fff !important;
            font-weight: 700;
            font-size: 1.4rem;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-nav .nav-link {
            color: #000 !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #2aa2ff !important;
        }

        .dropdown-menu {
            background-color: #fff;
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin-top: 10px;
        }

        .dropdown-item {
            color: #1a1a3e;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: #2aa2ff;
            color: #fff;
        }

        .dropdown-toggle::after {
            margin-left: 5px;
            vertical-align: middle;
        }

        .btn-contact {
            background-color: #2aa2ff;
            color: #fff;
            padding: 10px 30px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-contact:hover {
            background-color: #2aa2ff;
            transform: translateY(-2px);
            opacity: 0.9;
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, #1a1a3e 0%, #0d0d2b 100%); */
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 65px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url("./Images/slider-bg.png");

            /* Full height */
            height: 100%;

            /* Center and scale the image nicely */
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            /* background-size: 100px 100px; */
            opacity: 0.08;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: left;
        }

        .hero-welcome {
            color: #2aa2ff;
            font-weight: 500;
            font-size: 1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            color: #0d0d2b;
        }

        .hero-description {
            font-size: 1rem;
            color: #565656;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .btn-outline-white {
            background-color: transparent;
            border: 2px solid #2aa2ff;
            color: #2aa2ff;
            padding: 12px 35px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background-color: #2aa2ff;
            color: #fff;
            border-color: #2aa2ff;
        }

        .video-play-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2aa2ff, #0099ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(42, 162, 255, 0.4);
            transition: transform 0.3s;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button i {
            font-size: 1.5rem;
            color: #fff;
            margin-left: 3px;
        }

        .play-text {
            color: #2aa2ff;
            font-weight: 600;
            font-size: 1rem;
        }

        .text-accent {
            color: #2aa2ff;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 75%;
            max-width: 600px;
            height: auto;
            position: relative;
            z-index: 2;
            animation: floatUpDown 3s ease-in-out infinite;
        }

        @keyframes floatUpDown {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .partners-section {
            margin-top: 5rem;
            padding-top: 5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partner-logo {
            opacity: 0.6;
            filter: grayscale(100%);
            max-width: 120px;
            transition: all 0.3s;
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: #0d0d2b;
        }

        .about-image {
            border-radius: 100px 15px 15px 15px;
            width: 100%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .about-image1 {
            border-radius: 15px 15px 100px 15px;
            width: 75%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-left: 111px;
        }

        .experience-badge {
            background: linear-gradient(135deg, #2aa2ff, #0099ff);
            border-radius: 15px 50px 15px 15px;
            padding: 30px;
            text-align: left;
            /* box-shadow: 0 10px 30px rgba(42, 162, 255, 0.3); */
            margin-top: 52px;
            height: 180px;
            width: 220px;
        }

        .experience-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a1a3e;
            margin: 0;
        }

        .experience-text {
            color: #1a1a3e;
            font-weight: 600;
            margin: 0;
            font-size: 1rem;
        }

        .about-content {
            color: #fff;
        }

        .about-label {
            color: #2aa2ff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .about-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .about-description {
            color: #b8b8d1;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .feature-icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(42, 162, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-icon-wrapper i {
            font-size: 1.8rem;
            color: #2aa2ff;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .feature-description {
            color: #b8b8d1;
            margin: 0;
            font-size: 0.95rem;
        }

        .slider-dot {
            color: #ddd;
            margin: 0 0.5rem;
            font-size: 1.2rem;
        }

        .slider-dot.active {
            color: #2aa2ff;
        }

        /* Why Choose Us Section */
        .why-choose-section {
            padding: 100px 0;
            background-color: #0d0d2b;
            color: #fff;
        }

        .why-choose-label {
            color: #2aa2ff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .why-choose-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            color: #fff;
        }

        .why-choose-description {
            color: #b8b8d1;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .why-feature-box {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .why-feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(42, 162, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-feature-icon i {
            font-size: 1.5rem;
            color: #2aa2ff;
        }

        .why-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .why-feature-text {
            color: #b8b8d1;
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }

        .why-choose-images {
            position: relative;
        }

        .why-image-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(42, 162, 255, 0.2);
        }

        .why-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        .stats-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: #b8b8d1;
            margin: 0;
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .section-label {
            color: #2aa2ff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 60px;
        }

        .service-card {
            background: #fff;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: #2aa2ff24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 2rem;
            color: #2aa2ff;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: #2aa2ff;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .service-link:hover {
            color: #2aa2ff;
        }

        
        /* Training programs Section */
        .training-programs-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .training-programs-section .section-label {
            color: #2aa2ff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .training-programs-section .section-title {
            color: #1a1a3e;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .training-programs-section .training-subtitle {
            color: #666;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 50px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .training-programs-section .training-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .training-programs-section .training-feature-title {
            color: #1a1a3e;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: 20px;
        }

        .training-programs-section .training-list {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .training-programs-section .training-list li {
            color: #666;
            font-size: 1rem;
            line-height: 2;
            padding-left: 25px;
            position: relative;
        }

        .training-programs-section .training-list li:before {
            content: '✓';
            color: #2aa2ff;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .training-programs-section .training-offer-box {
            background: rgba(42, 162, 255, 0.05);
            border: 2px solid rgba(42, 162, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin-top: 25px;
        }

        .training-programs-section .training-offer-box h4 {
            color: #2aa2ff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .training-programs-section .training-offer-box p {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .training-programs-section .training-offer-box strong {
            color: #1a1a3e;
        }

        .training-mascot-wrapper {
            text-align: center;
            padding: 20px;
        }

        .training-mascot-image {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(42, 162, 255, 0.3));
        }

        .btn-custom {
            background-color: #2aa2ff;
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-custom:hover {
            background-color: #0099ff;
            transform: translateY(-2px);
        }

        /* Solution Section */
        .solution-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .solution-image {
            /* border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
            width: 90%;
            height: auto;
        }

        .solution-badge {
            background-color: #2aa2ff;
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .solution-badge-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #2aa2ff;
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .section-subtitle {
            color: #b8b8d1;
            max-width: 700px;
            margin: 0 auto;
        }

        .solution-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 25px;
        }

        .solution-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .solution-feature {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }

        .solution-feature-icon {
            width: 60px;
            height: 60px;
            background-color: #e6fffa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .solution-feature-icon i {
            font-size: 1.5rem;
            color: #2aa2ff;
        }

        .solution-feature-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-bottom: 5px;
        }

        .solution-feature-text p {
            color: #666;
            margin: 0;
            font-size: 0.9rem;
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e 0%, #0d0d2b 100%);
            color: #fff;
        }

        .portfolio-section .section-title {
            color: #fff;
        }

        .portfolio-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
        }

        .portfolio-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 30px;
        }

        .portfolio-overlay h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .portfolio-overlay p {
            color: #2aa2ff;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Enterprises Section */
        .enterprises-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d0d2b 0%, #1a1a3e 100%);
            text-align: center;
            color: #fff;
        }

        .enterprise-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .enterprise-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .enterprise-description {
            color: #b8b8d1;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .testimonial-icon {
            width: 50px;
            height: 50px;
            background-color: #e6fffa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .testimonial-icon i {
            font-size: 1.5rem;
            color: #2aa2ff;
        }

        .testimonial-text {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1a1a3e;
        }

        /* Experts Section */
        .experts-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d0d2b 0%, #1a1a3e 100%);
            color: #fff;
        }

        .experts-section .section-title {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .expert-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 30px;
        }

        .expert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #2aa2ff 0%, #0099ff 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 15px;
            z-index: 0;
        }

        .expert-card:hover::before {
            opacity: 0.15;
        }

        .expert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(42, 162, 255, 0.3);
        }

        .expert-image-wrapper {
            position: relative;
            overflow: hidden;
            width: 200px;
            height: 200px;
            border-radius: 10px;
            flex-shrink: 0;
            order: 2;
        }

        .expert-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .expert-card:hover .expert-image {
            transform: scale(1.05);
        }

        .expert-info {
            flex: 1;
            position: relative;
            z-index: 1;
            order: 1;
            padding-right: 30px;
        }

        .expert-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .expert-role {
            font-size: 0.9rem;
            color: #2aa2ff;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .expert-description {
            font-size: 0.7rem;
            color: #b8b8d1;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .expert-social {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-link:hover {
            background-color: #2aa2ff;
            border-color: #2aa2ff;
            color: #fff;
            transform: translateY(-3px);
        }
        

        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e 0%, #0d0d2b 100%);
        }

        .blog-section .section-title {
            color: #fff;
            text-align: center;
        }

        .blog-section .section-title span {
            color: #2aa2ff;
        }

        .blog-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 15px;
        }

        .blog-content p {
            color: #666;
            font-size: 0.9rem;
        }
        /* Banner Section */
        .banner-section {
            margin-top: 68px;
            position: relative;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('https://agi-prod-file-upload-public-main-use1.s3.amazonaws.com/67b431c9-0f94-49ee-a7e9-f026ca068093');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 13, 43, 0.7);
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
        }

        .banner-breadcrumb {
            font-size: 1rem;
            color: #b8b8d1;
        }

        .banner-breadcrumb a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .banner-breadcrumb a:hover {
            color: #2aa2ff;
        }

        .banner-breadcrumb span {
            margin: 0 10px;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .content-container {
            max-width: 900px;
            margin: 0 auto;
            color: #1a1a3e;
        }

        .content-section h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2aa2ff;
        }

        .content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .content-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        .content-section p {
            font-size: 1rem;
            line-height: 1.8;
            color: #565656;
            margin-bottom: 20px;
        }

        .content-section ul {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .content-section ul li {
            font-size: 1rem;
            line-height: 1.8;
            color: #565656;
            margin-bottom: 12px;
        }

        .content-section strong {
            color: #1a1a3e;
            font-weight: 600;
        }

        /* Highlighted Box */
        .highlight-box {
            background-color: rgba(42, 162, 255, 0.05);
            border-left: 4px solid #2aa2ff;
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 5px;
        }

        .highlight-box p {
            margin-bottom: 0;
            color: #1a1a3e;
            font-weight: 500;
        }

        /* Demo Section */
        .demo-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .demo-form {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .demo-form h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 30px;
        }

        .demo-form .form-control {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .demo-form .btn-submit {
            background-color: #2aa2ff;
            color: #fff;
            padding: 15px 40px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            width: 100%;
            transition: all 0.3s;
        }

        .demo-form .btn-submit:hover {
            background-color: #2aa2ff;
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .demo-image {
            border-radius: 15px;
            width: 95%;
            height: auto;
        }

        .demo-badge {
            position: absolute;
            bottom: 0px;
            right: 0px;
            background-color: #2aa2ff;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            max-width: 250px;
        }

        .demo-badge-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .demo-badge-text {
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-logo {
            height: 50px;
        }

        .footer-text {
            color: #b8b8d1;
            margin-bottom: 20px;
        }

        /* Footer */
        .footer {
            background-color: #1a1a3e;
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
            color: #2aa2ff;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #b8b8d1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: #2aa2ff;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: #2a2a4e;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: #2aa2ff;
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #b8b8d1;
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e 0%, #0d0d2b 100%);
            color: #fff;
        }

        .portfolio-section .section-title {
            color: #fff;
        }

        .section-subtitle {
            color: #b8b8d1;
            max-width: 700px;
            margin: 0 auto;
        }

        
        .portfolio-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.5s;
            height: 100%;
        }

        .portfolio-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(42, 162, 255, 0.4);
        }

        .portfolio-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-card:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 30px;
        }
        /* .portfolio-overlay:hover {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            background: linear-gradient(rgb(15 15 46), transparent);
            padding: 30px;
        } */

        .portfolio-overlay h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .portfolio-overlay p {
            color: #2aa2ff;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Slider Container */
        .slider-container {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .slider-wrapper {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .slider-wrapper .col-md-4,
        .slider-wrapper .col-md-3 {
            flex: 0 0 calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
        }

        /* Freelance Opportunities Section - Same style as Training Programs */
        .freelance-section {
        padding: 100px 0;
        background-color: #f8f9fa;
        }

        .freelance-section .section-label {
        color: #2aa2ff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        margin-bottom: 15px;
        text-align: center;
        }

        .freelance-section .section-title {
        color: #1a1a3e;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        }

        .freelance-section .section-subtitle {
        color: #666;
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 50px;
        text-align: center;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        }

        .freelance-image-wrapper {
        text-align: center;
        padding: 20px;
        }

        .freelance-mascot-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        /* filter: drop-shadow(0 10px 30px rgba(42, 162, 255, 0.3)); */
        }

        .freelance-description {
        color: #666;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        }

        .freelance-feature-title {
        color: #1a1a3e;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        }

        .freelance-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
        }

        .freelance-list li {
        color: #666;
        font-size: 1rem;
        line-height: 2;
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px;
        }

        .freelance-list li:before {
        content: "\f058";
        color: #2aa2ff;
        font-weight: bold;
        position: absolute;
        left: 0;
        font-family: "bootstrap-icons";
        font-size: 1.1rem;
        }

        .freelance-offer-box {
        background: rgba(42, 162, 255, 0.05);
        border: 2px solid rgba(42, 162, 255, 0.2);
        border-radius: 15px;
        padding: 25px;
        margin-top: 25px;
        }

        .freelance-offer-box h4 {
        color: #2aa2ff;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        }

        .freelance-offer-box p {
        color: #666;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 10px;
        }

        .freelance-offer-box strong {
        color: #1a1a3e;
        }
        
        /* Contact Page Specific Styles */
.contact-details-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 2px solid #f0f2f5;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2aa2ff, #0099ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(42,162,255,0.3);
}

.contact-link {
    color: #2aa2ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0099ff;
    text-decoration: underline;
}

.whatsapp-link {
    background: #25d366 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.contact-link.whatsapp-link:hover {
    color: #0099ff !important;
    text-decoration: underline;
}

.quick-contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.social-links .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links .social-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.contact-cta {
    background: linear-gradient(135deg, #f8fcff, #e3f2fd);
    padding: 60px 40px;
    border-radius: 25px;
    border: 2px solid #e3f2fd;
}

.contact-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

        /* ========================================
        ENHANCED CONTACT DETAILS (New - Matches your image)
        ======================================== */
        .contact-details {
        padding: 40px;
        background: linear-gradient(135deg, rgba(42, 162, 255, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(42, 162, 255, 0.15);
        height: 100%;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(42, 162, 255, 0.2);
        transition: all 0.3s;
        }

        .contact-details:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(42, 162, 255, 0.25);
        }

        .contact-section.even .contact-details {
        background: linear-gradient(135deg, rgba(42, 162, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
        color: #fff;
        border-color: rgba(42, 162, 255, 0.4);
        }

        .contact-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(42, 162, 255, 0.2);
        }

        .contact-header i {
        font-size: 2rem;
        color: #2aa2ff;
        background: rgba(42, 162, 255, 0.1);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        .contact-header h5 {
        color: #1a1a3e;
        font-weight: 700;
        font-size: 1.4rem;
        margin: 0;
        }

        .contact-section.even .contact-header h5 {
        color: #fff;
        }

        .contact-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        }

        .contact-link {
        color: #2aa2ff;
        text-decoration: none;
        /* display: flex; */
        align-items: center;
        gap: 15px;
        font-weight: 500;
        font-size: 1.1rem;
        /* padding: 15px; */
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        /* transition: all 0.3s; */
        /* border: 1px solid rgba(42, 162, 255, 0.1);
        }

        .contact-link:hover {
        background: rgba(42, 162, 255, 0.1);
        color: #0099ff;
        /* transform: translateX(10px); */
        /* box-shadow: 0 10px 25px rgba(42, 162, 255, 0.2); */
        }

        .contact-section.even .contact-link {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-color: rgba(42, 162, 255, 0.3);
        }

        .contact-section.even .contact-link:hover {
        background: rgba(42, 162, 255, 0.2);
        text-decoration: none;
        color: #fff;
        }

        .contact-link i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        background: rgba(42, 162, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .content-container {
            max-width: 900px;
            margin: 0 auto;
            color: #1a1a3e;
        }

        .content-section h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2aa2ff;
        }

        .content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a3e;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .content-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        .content-section p {
            font-size: 1rem;
            line-height: 1.8;
            color: #565656;
            margin-bottom: 20px;
        }

        .content-section ul {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .content-section ul li {
            font-size: 1rem;
            line-height: 1.8;
            color: #565656;
            margin-bottom: 12px;
        }

        .content-section strong {
            color: #1a1a3e;
            font-weight: 600;
        }

        /* ========================================
   Ethical Hacking Training Page Styles - White Theme
   ======================================== */
.training-hero-title {
    color: #1a1a3e !important;
    font-weight: 800 !important;
    font-size: 3.5rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1) !important;
    margin-bottom: 3rem !important;
}

.training-section {
    background: #ffffff !important;
    color: #1a1a3e !important;
    padding: 80px 0 !important;
    min-height: 100vh;
}

.training-card {
    background: #ffffff !important;
    border: 2px solid #f0f2f5 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin-bottom: 30px !important;
    transition: all 0.3s ease !important;
}

.training-card:hover {
    transform: translateY(-8px) !important;
    border-color: #2aa2ff !important;
    box-shadow: 0 30px 80px rgba(42, 162, 255, 0.15) !important;
}

.training-card img {
    max-width: 100%;
    height: auto;
    /* filter: drop-shadow(0 10px 30px rgba(42, 162, 255, 0.3)); */
}

.course-duration-badge {
    background: linear-gradient(135deg, #2aa2ff, #0099ff) !important;
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 10px 25px rgba(42, 162, 255, 0.3) !important;
}

.course-fee-badge {
    background: #f8fcff !important;
    color: #2aa2ff !important;
    padding: 15px 25px !important;
    border-radius: 15px !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    border: 2px solid #e3f2fd !important;
    display: inline-block !important;
    box-shadow: 0 8px 25px rgba(42, 162, 255, 0.1) !important;
}

.enroll-card {
    background: #ffffff !important;
    border: 2px solid #f0f2f5 !important;
    border-radius: 25px !important;
    padding: 50px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12) !important;
    position: relative !important;
    overflow: hidden !important;
}

.enroll-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, #2aa2ff, #0099ff, #2aa2ff) !important;
}

.enroll-btn-primary {
    background: linear-gradient(135deg, #2aa2ff, #0099ff) !important;
    color: white !important;
    border: none !important;
    padding: 18px 50px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(42, 162, 255, 0.4) !important;
}

.enroll-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(42, 162, 255, 0.6) !important;
    background: linear-gradient(135deg, #0099ff, #2aa2ff) !important;
}

.module-accordion {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 15px !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.module-header {
    padding: 20px 25px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    color: #1a1a3e !important;
    background: #ffffff !important;
}

.module-header:hover {
    background: #e3f2fd !important;
    color: #2aa2ff !important;
}

.module-header.active {
    background: linear-gradient(135deg, #2aa2ff, #0099ff) !important;
    color: white !important;
}

.module-lock-icon {
    color: #6c757d !important;
    font-size: 1.2rem !important;
    margin-left: 15px !important;
    transition: all 0.3s ease !important;
}

.module-lock-icon.unlocked {
    color: white !important;
}

.module-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease !important;
    background: #f8f9fa !important;
}

.module-content.active {
    max-height: 1000px !important;
}

.module-list {
    padding: 20px 25px 25px !important;
    list-style: none !important;
    margin: 0 !important;
}

.module-list li {
    padding: 8px 0 !important;
    color: #495057 !important;
    position: relative !important;
    padding-left: 25px !important;
    font-size: 0.95rem !important;
}

.module-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #2aa2ff !important;
    font-weight: bold !important;
}

.enroll-stats {
    display: flex !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
}

.enroll-stat-item {
    text-align: center !important;
}

.enroll-stat-number {
    font-size: 2.5rem !important;
    color: #2aa2ff !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.enroll-stat-label {
    color: #6c757d !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
}

.training-modules-locked {
    text-align: center !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #f8fcff, #e3f2fd) !important;
    border-radius: 15px !important;
    border: 2px dashed #2aa2ff !important;
}

.training-modules-locked h5 {
    color: #1a1a3e !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.training-modules-locked p {
    color: #495057 !important;
    margin-bottom: 0 !important;
    font-size: 1.1rem !important;
}

.form-input-focus .form-control,
.form-input-focus .form-select {
    border-color: #2aa2ff !important;
    box-shadow: 0 0 0 0.2rem rgba(42, 162, 255, 0.25) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .training-hero-title {
        font-size: 2.5rem !important;
    }
    
    .enroll-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .training-card,
    .enroll-card {
        padding: 30px 20px !important;
    }
    
    .module-header {
        padding: 18px 20px !important;
        font-size: 0.95rem !important;
    }
}

/* Signup Split Layout */
        .signup-wrapper {
            min-height: 100vh;
            display: flex;
            /* background: linear-gradient(135deg, #0d0d2b 0%, #1a1a3e 100%); */
            background-image: url(Images/10414.jpeg);
        }

        /* Left Side - Form */
        .signup-form-section {
            flex: 1;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            position: relative;
        }

        .signup-form-container {
            max-width: 500px;
            width: 100%;
        }

        .signup-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .signup-logo-text {
            font-size: 2rem;
            font-weight: 800;
            color: #2aa2ff;
        }

        .signup-header {
            margin-bottom: 15px;
        }

        .signup-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a3e;
            margin-bottom: 15px;
        }

        .signup-subtitle {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .signup-login-link {
            text-align: right;
            margin-bottom: 30px;
        }

        .signup-login-link a {
            color: #2aa2ff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .signup-login-link a:hover {
            color: #0099ff;
            text-decoration: underline;
        }

        /* Form Styles */
        .signup-form-group {
            margin-bottom: 25px;
        }

        .signup-form-label {
            display: block;
            color: #1a1a3e;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .signup-form-input {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #057edc;
            border-radius: 3px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #ffffff;
            color: #1a1a3e;
        }

        .signup-form-input:focus {
            outline: none;
            border-color: #2aa2ff;
            box-shadow: 0 0 0 4px rgba(42, 162, 255, 0.1);
        }

        .signup-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Password Strength */
        .password-suggestions {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border-left: 4px solid #2aa2ff;
        }

        .password-suggestions-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1a1a3e;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .password-suggestions ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .password-suggestions li {
            color: #666;
            font-size: 0.85rem;
            padding: 4px 0;
            padding-left: 20px;
            position: relative;
        }

        .password-suggestions li:before {
            content: "•";
            position: absolute;
            left: 5px;
            color: #2aa2ff;
            font-weight: bold;
        }

        /* Checkbox */
        .signup-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 30px;
        }

        .signup-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .signup-checkbox:checked {
            background: #2aa2ff;
            border-color: #2aa2ff;
        }

        .signup-checkbox-label {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .signup-checkbox-label a {
            color: #2aa2ff;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-checkbox-label a:hover {
            text-decoration: underline;
        }

        /* Submit Button */
        .signup-submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #2aa2ff, #2aa2ff);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(107, 173, 248, 0.3);
        }

        .signup-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(53, 141, 255, 0.4);
        }

        /* Right Side - Hero */
        
        .signup-hero-paralax{
            background-image: url(./Images/penetration_testing.png);
            min-height: auto;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .signup-hero-section {
            flex: 1;
            background: linear-gradient(135deg, #0d0d2b96 0%, #0d0d2bbd 100%);
            backdrop-filter: blur(4px);
            padding: 60px 60px;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .signup-hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(42,162,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .signup-hero-title {
            font-size: 2rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .signup-companies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
            position: relative;
            z-index: 2;
        }

        .signup-company-logo {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .signup-company-logo:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .signup-company-logo img {
            max-width: 120px;
            height: auto;
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .signup-hero-description {
            color: #b8b8d1;
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .signup-wrapper {
                flex-direction: column;
            }

            .signup-form-section,
            .signup-hero-section {
                flex: none;
                width: 100%;
            }

            .signup-form-section {
                padding: 30px 30px;
            }

            .signup-hero-section {
                padding: 60px 30px;
            }

            .signup-companies-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .signup-form-row {
                grid-template-columns: 1fr;
            }

            .signup-title {
                font-size: 2rem;
            }

            .signup-hero-title {
                font-size: 2.2rem;
            }

            .signup-companies-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* =========================================================================
                                    Responsive part 
        ========================================================================= */

        /* Tablet and mobile */
        @media (max-width: 992px) {
            .navbar {
                padding: 15px 0;
            }
            
            .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.1;
            }
            
            .hero-description {
                font-size: 0.95rem;
            }
            
            .hero-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 2rem !important;
            }
            
            .about-title, .why-choose-title {
                font-size: 2.2rem !important;
            }
            
            .service-card {
                padding: 25px 20px;
                margin-bottom: 20px;
            }
        }

        /* Small tablet */
        @media (max-width: 768px) {
            .hero-section {
                margin-top: 70px;
                padding-top: 40px;
                text-align: center;
            }
            
            .hero-content {
                text-align: center;
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2rem !important;
            }
            
            .hero-image {
                width: 90% !important;
                margin-top: 30px;
            }
            
            .about-section, .services-section, .training-programs-section {
                padding: 60px 0 !important;
            }

            .expert-info {
                padding-right: 0;
            }
            .expert-social {
                justify-content: center;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .service-icon i {
                font-size: 1.5rem;
            }
            
            .expert-card {
                flex-direction: column !important;
                text-align: center;
                padding: 20px !important;
            }
            
            .expert-image-wrapper {
                width: 150px;
                height: 150px;
                margin: 0 auto 20px;
                order: -1;
            }
            
            .demo-form {
                padding: 30px 20px !important;
            }
            
            .footer {
                padding: 40px 0 20px !important;
            }
            
            .slider-wrapper .col-md-4 {
                flex: 0 0 100% !important;
                max-width: 100% !important;
            }
            
            .freelance-section {
                padding: 60px 0 !important;
            }
            .freelance-section .section-title {
                font-size: 2rem !important;
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1.2rem !important;
            }
            
            .navbar-brand img {
                height: 40px;
            }
            
            .hero-section {
                margin-top: 70px;
                padding-top: 25px;
                text-align: center;
            }
            
            .experience-badge {
                padding: 7px;
                margin-top: 37px;
                height: 100px;
                width: 170px;
            }

            .expert-info {
                padding-right: 0;
            }
            .expert-social {
                justify-content: center;
            }

            .about-image1 {
                margin-left: 65px;
            }
            .hero-title {
                font-size: 1.8rem !important;
            }
            
            .btn-contact, .btn-custom {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .service-card h3 {
                font-size: 1.2rem;
            }
            
            .experience-number {
                font-size: 2.5rem !important;
            }
            
            .why-choose-title, .about-title {
                font-size: 1.8rem !important;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .play-button i {
                font-size: 1.2rem;
            }
        }

        /* very small screen */
        @media (max-width: 360px) {
            
            .hero-section {
                margin-top: 70px;
                padding-top: 25px;
                text-align: center;
            }
            
            .experience-badge {
                padding: 7px;
                margin-top: 37px;
                height: 100px;
                width: 170px;
            }
            
            .about-image1 {
                margin-left: 65px;
            }
            .hero-title {
                font-size: 1.6rem !important;
            }
            
            .padding-section {
                padding: 40px 0 !important;
            }

            .expert-info {
                padding-right: 0;
            }
            .expert-social {
                justify-content: center;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }


        @media (max-width: 1200px) {
            .slider-wrapper .col-md-4,
            .slider-wrapper .col-md-3 {
                flex: 0 0 calc(33.333% - 20px);
                max-width: calc(33.333% - 20px);
            }
        }

        @media (max-width: 768px) {
            .slider-wrapper .col-md-4,
            .slider-wrapper .col-md-3 {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }
        }

        @media (max-width: 480px) {
            .slider-wrapper .col-md-4,
            .slider-wrapper .col-md-3 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-amount {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .solution-content h2 {
                font-size: 1.8rem;
            }

            .enterprises-section h2 {
                font-size: 2rem;
            }
        }