        /* Reset and Base Styles */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
        }


        .fade-in-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-subtitle {
            font-size: 18px;
            margin-bottom: 40px;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #1E88E5;
            color: white;

        }

        .btn-primary:hover {
            background-color: #1565C0;
        }

        .btn-outline {
            border: 2px solid #1E88E5;
            color: #1E88E5;
        }

        .btn-outline:hover {
            background-color: #1E88E5;
            color: white;
        }

        /* Header section with background image */
        .header-section {
            height: 1042px;
            position: relative;
            background-image: url('assets/headerBackGround1.png');
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        header {
            padding: 24px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-align: center;
            font-weight: bold;
            font-size: 24px;
            color: white;
        }

        .logo span {
            color: #00B2FF;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav a {
            color: white;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        .social-icons {
            display: flex;
            gap: 24px;
        }

        .social-icon {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero section */
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-grow: 1;
            padding: 40px 20px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 24px;
            max-width: 800px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .cta-button {
            background-color: #2D9CDB;
            color: white;
            font-weight: 500;
            padding: 12px 32px;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #2180B7;
        }


        /* Wave bottom */

        /* Responsive styles */
        @media (max-width: 768px) {
            .nav-links, .social-icons {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .logo {
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }
        }


        /* Features Section */
        .features {
            padding: 80px 0;
        }

        .features-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .feature-item {
            flex-basis: calc(33.333% - 30px);
            text-align: center;
            margin-bottom: 40px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
        }

        .feature-title {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Video Section */
        .video-section {
            display: flex;
            align-items: center;
            padding: 60px 0;
        }

        .video-container {
        width: 900px;
            max-width: 100%;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            margin: auto; /* centers it */ /* Soft shadow behind video */
        }

        video {
            border-radius: 20px; /* Rounded corners for the video itself */
            display: block;
            width: 100%;
            height: auto;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background-color: #1E88E5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0.8;
            z-index: 2;
        }

        /* Triangle inside the play button */
        .play-button::before {
        content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 16px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            left: 50%;
            top: 50%;
            transform: translate(-40%, -50%);
        }


        /* Info Sections */

        /* .info-section {
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        .info-content {
            flex: 1;
            padding-right: 50px;
        }

        .info-image {
            flex: 1;
        } */

        .info-section .container {
            display: flex;
            flex-wrap: wrap; /* Makes it responsive on smaller screens */
            align-items: center;
            justify-content: space-between;
            padding: 50px 20px;
            gap: 20px; /* Optional: Adds spacing between image and text */
        }

        .info-content {
            flex: 1;
            min-width: 300px;
        }

        .info-content-submission-box{
            display: flex;
            gap: 30px;
        }

        .info-image {
            flex: 1;
            min-width: 300px;
        }

        .info-image img {
            max-width: 100%;
            height: auto;
        }



        /* .info-section.reverse {
            flex-direction: row-reverse;
        }

        .info-section.reverse .info-content {
            padding-right: 0;
            padding-left: 50px;
        }

        .info-title {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .info-text {
            margin-bottom: 30px;
            color: #666;
        } */
         

        .info-content, .info-image {
            flex: 1;
        }

        .info-image img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .info-title {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .info-text {
            margin-bottom: 30px;
            color: #666;
        }


        /* Partners Section */
        /* .partners {
            padding: 60px 0;
            text-align: center;
        }

        .partner-logos {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .partner-logo {
            flex-basis: calc(20% - 20px);
            margin: 10px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        } */


        .partners {
            padding: 60px 0;
            text-align: center;
        }

        .partner-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }

        .partner-logo {
            flex: 0 0 calc(20% - 40px); /* 25% for 4 per row, adjust margin below */
            margin: 20px;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .partner-logo img {
            max-width: 100%;
            height: auto;
            display: block;
            width: 80px;  /* reduce logo size */
            margin: 0 auto;
        }

        .partner-logo:hover {
            opacity: 0.7;
        }


        /* Testimonials Section */
        /* .testimonials {
            padding: 80px 0;
            text-align: center;
            background-color: #f9f9f9;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            padding: 30px;
        }

        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .testimonial-company {
            color: #666;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
        }

        .dot.active {
            background-color: #1E88E5;
        } */



        .testimonial-slider {
        position: relative;
        }

        .testimonial {
        display: none;
        animation: fadeIn 0.5s ease-in-out;
        }

        .testimonial.active {
        display: block;
        }

        .testimonial-author-info {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        }

        .author-photo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
        }

        .testimonial-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        }

        .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        }

        .dot.active {
        background-color: #1E88E5;
        }

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



        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background-color: #1A2238;
            color: white;
        }

        .pricing-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .pricing-plan {
            flex-basis: calc(33.333% - 30px);
            background-color: white;
            color: #333;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .pricing-header {
            padding: 30px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .pricing-plan.featured .pricing-header {
            background-color: #1E88E5;
            color: white;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .plan-price {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .plan-price span {
            font-size: 20px;
            font-weight: 400;
        }

        .plan-billing {
            color: #666;
            font-size: 14px;
        }

        .pricing-features {
            padding: 30px;
        }

        .pricing-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .pricing-features li::before {
            content: '✓';
            color: #1E88E5;
            margin-right: 10px;
            font-weight: bold;
        }

        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }


        /* Contact Section */

        .contact-info-section {
        text-align: center;
        padding: 60px 20px;
        }

        .contact-details-row {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
        margin-bottom: 40px;
        }

        .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 200px;
        font-size: 10px;
        color: #333;
        }

        .contact-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        }

        .map-container {
        margin: 40px auto;
        max-width: 600px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .social-icons {
        margin-top: 30px;
        }

        .social-icons a {
        margin: 0 10px;
        display: inline-block;
        }

        .social-icons img {
        width: 30px;
        height: 30px;
        transition: transform 0.2s;
        }

        .social-icons img:hover {
        transform: scale(1.1);
        }

        .contact-info-row {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 30px;
        text-align: center;
        }


        .contact {
            padding: 80px 0;
        }

        .contact-grid {
            display: flex;
            margin-top: 50px;
        }

        .contact-form {
            flex: 1;
            padding-right: 50px;
        }

        .contact-map {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        textarea.form-control {
            height: 150px;
            resize: vertical;
        }


        /* Footer */
        .custom-footer {
        background-color: #1f2539;
        padding: 60px 40px;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
        }

        .footer-container {
        max-width: 1200px;
        margin: auto;
        }

        .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        }

        .footer-column {
        flex: 1;
        min-width: 160px;
        margin: 20px;
        }

        .footer-column ul {
        list-style: none;
        padding: 0;
        }

        .footer-column li {
        margin: 8px 0;
        color: #ddd;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        }

        .footer-title {
        color: #fff;
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 16px;
        }

        .footer-column a {
        color: #ccc;
        text-decoration: none;
        }

        .footer-column a:hover {
        text-decoration: underline;
        }

        .contact-column img {
        width: 20px;
        height: 20px;
        }

        .footer-social {
        margin-top: 20px;
        }

        .footer-social a {
        margin-right: 15px;
        display: inline-block;
        }

        .footer-social img {
        width: 30px;
        height: 30px;
        transition: transform 0.3s;
        }

        .footer-social img:hover {
        transform: scale(1.2);
        }
