        /* Global Styles */
        :root {
            --input-height: 3rem;
            --input-font-size: 1rem;
            --input-padding-x: 1rem;
            --button-padding-x: 1.5rem;
            --btn-radius: 8px;
            --brand-blue: #0056b3;
            --brand-gold: #FFD700;
            --transition: 0.3s ease;
        }
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                         Roboto, 'Helvetica Neue', Arial, sans-serif;
          }          

        /* Hero Section */
        .hero-section {
            color: black;
            background-color: #FFD700;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            position: relative;
            background-image: url('../images/full-backgroud-1.webp');
            background-size: cover;
            background-repeat: no-repeat;
            padding: 20px;
            padding-top: 80px;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .hero-section .highlight {
            color: #0056b3;
        }

        .hero-section p {
            font-size: 1.2rem;
        }

        /* Buttons */
        .btn-custom {
            background-color: #0056b3;
            color: white;
            border-radius: 20px;
            padding: 10px 20px;
            font-weight: bold;
            margin-left: 18px;
        }

        .btn-custom:hover {
            background-color: #004494;
        }

        .btn-custom1 {
            font-size: 2rem;
            background-color: #0056b3;
            color: white;
            border-radius: 20px;
            padding: 15px 30px;
            font-weight: bold;
            margin-left: 18px;
        }

        .btn-custom1:hover {
            background-color: #fff;
            color: #0056b3;
        }

        /* Auto-Typing Input in Hero Section */
        .search-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            width: 100%;
        }
        
        .search-input,
        .search-button {
        height: var(--input-height);
        font-size: var(--input-font-size);
        line-height: var(--input-height);
        border-radius: var(--btn-radius);
        border: none;
        outline: none;
        box-sizing: border-box;
        }

        .search-input {
            flex: 1 1 500px;
            max-width: 600px;
            min-width: 300px;
            padding-inline: var(--input-padding-x);
            color: #000;
          }
          
          .search-button {
            padding-inline: var(--button-padding-x);
            font-weight: bold;
            background-color: var(--brand-blue);
            color: #fff;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--transition);
          }
          
          .search-button:hover {
            background-color: #fff;
            color: var(--brand-blue);
          }
          
          /* Lighter text for auto-typed content */
          .auto-typed {
            color: #999;
          }


        .highlight-effect {
            background: linear-gradient(120deg, #FFD700, #FFC107); /* A subtle gold gradient */
            color: #0056b3;          /* Using the blue to tie with the branding */
            font-size: 1.5rem;       /* Increase the font size for impact */
            font-weight: bold;       /* Bold text for emphasis */
            padding: 10px 20px;      /* Add some padding for breathing room */
            border-radius: 10px;     /* Rounded corners for a modern look */
            display: inline-block;   /* To fit content width and center align nicely */
          }          

        /* Feature Section */
        .feature-section {
            padding: 80px 0;
        }

        .feature-section h2 {
            font-size: 2rem;
            font-weight: bold;
        }

        .feature-section p {
            font-size: 1rem;
            color: #555;
        }

        .highlight {
            font-weight: bold;
        }

        .image-container {
            position: relative;
            display: inline-block;
            max-width: 100%;
        }

        .laptop-img {
            width: 100%;
            height: auto;
        }

        .mobile-img {
            position: absolute;
            right: 10%;
            bottom: 0;
            width: 35%;
            max-width: 150px;
        }

        .image-container {
            background: #0056b3;
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        /* CTA Section */
        .cta-section {
            background: #0a0a0a;
            color: white;
            border-radius: 15px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 150px;
        }

        .cta-section span {
            font-weight: bold;
            color: #ffc107;
        }

        .cta-btn {
            background: #0056b3;
            color: white;
            border-radius: 5px;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s ease;
        }

        .cta-btn:hover {
            background: #004094;
        }

        /* Info Box Section */
        .info-box {
            background: #f3f4f6;
            padding: 20px;
            border-radius: 10px;
            transition: 0.3s ease;
            height: auto;
            margin-bottom: 20px;
        }

        .info-box:hover {
            background: #e5e7eb;
            color: #0a0a0a;
        }

        .highlight2 {
            background: #1e40af;
            color: white;
        }

        .info-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: 0.3s ease-in-out;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .highlight3 {
            background: #FFD700;
        }

        .bg-infocard {
            background: rgb(255, 247, 204);
        }

        /* Testimonial Section */
        .testimonial-card {
            position: relative;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 550px;
            border: 1px solid blue;
            height: auto;
            margin-bottom: 20px;
        }

        .profile {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .profile img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .imgsection {
            position: absolute;
            bottom: 10px;
            right: 10px;
        }

        .imgsection img {
            width: 50px;
            height: auto;
        }

        /* Dataset Section */
        .dataset-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            margin-bottom: 20px;
        }

        .dataset-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .dataset-card:hover {
            transform: scale(1.02);
        }

        .dataset-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: yellow;
            padding: 5px 10px;
            font-weight: bold;
            border-radius: 5px;
            font-size: 14px;
        }

        .dataset-content {
            margin-top: 15px;
            font-size: 14px;
            color: #333;
        }

        .section-title {
            font-weight: bold;
            font-size: 24px;
        }

        .section-subtitle {
            font-size: 14px;
            color: gray;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: black;
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }

        .footer a {
            color: gray;
            text-decoration: none;
        }

        .footer a:hover {
            color: white;
        }

        /* CTA Section 2 */
        .cta-section2 {
            background: linear-gradient(to right, #0047AB, #002F6C);
            border-radius: 20px;
            padding: 50px;
            color: #fff;
            position: relative;
            overflow: hidden;
            width: 80%;
            top: -20%;
            left: 10%;
            height: auto;
            margin-bottom: 40px;
        }

        .cta-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .cta-text {
            font-size: 14px;
            max-width: 600px;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .cta-btn2 {
            display: inline-block;
            font-size: 16px;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            width: 150px;
            text-align: center;
        }

        .signup-btn {
            background: #FFC107;
            color: #000;
            border: none;
        }

        .login-btn {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 8px 23px;
        }

        .signup-btn:hover {
            background: #e0a800;
        }

        .login-btn:hover {
            background: #1b1b1d;
            color: #faf5f5;
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            
            :root {
                --input-height: 2.6rem;
                --input-font-size: 0.95rem;
                --input-padding-x: 0.75rem;
                --button-padding-x: 1.25rem;
              }

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .btn-custom1 {
                font-size: 1.2rem;
                padding: 10px 20px;
            }

            .cta-section {
                flex-direction: column;
                text-align: center;
                height: auto;
                padding: 20px;
            }

            .cta-section p {
                margin-bottom: 10px;
            }

            .cta-btn {
                width: 100%;
                text-align: center;
            }

            .mobile-img {
                width: 25%;
                right: 5%;
                bottom: -10%;
            }

            .cta-section2 {
                position: static;
                width: 100%;
                margin-top: 20px;
                padding: 20px;
            }

            .cta-title {
                font-size: 22px;
            }

            .cta-text {
                font-size: 16px;
            }

            .cta-btn2 {
                width: 100%;
                margin: 5px 0;
            }
            .search-container {
                flex-direction: column;
                align-items: stretch;
                margin-top: 20px;
                padding: 0 10px;
              }
            
              .search-input,
              .search-button {
                width: 100%;
                margin: 0;
              }
            
              .search-input {
                margin-bottom: 10px;
              }
        }

        @media (max-width: 576px) {

            :root {
                --input-height: 2.6rem;
                --input-font-size: 0.95rem;
                --input-padding-x: 0.75rem;
                --button-padding-x: 1.25rem;
              }
              
            .hero-section h1 {
                font-size: 1.5rem;
            }

            .btn-custom1 {
                font-size: 1.2rem;
                padding: 12px 24px;
                display: block; 
                margin: 0 auto;
            }

            .cta-section p {
                font-size: 14px;
            }

            .cta-btn {
                font-size: 14px;
                padding: 8px 12px;
            }

            .cta-title {
                font-size: 20px;
            }

            .cta-text {
                font-size: 14px;
            }

            .cta-btn2 {
                font-size: 14px;
                padding: 10px;
            }

            .search-container {
                flex-direction: column;
                align-items: stretch;
                margin-top: 20px;
                padding: 0 10px;
              }
            
              .search-input,
              .search-button {
                width: 100%;
                margin: 0;
              }
            
              .search-input {
                margin-bottom: 10px;
              }
        }

        /* Offcanvas Menu Adjustments */
        .offcanvas.offcanvas-end {
            width: 250px;
            height: auto;
            top: 0;
            bottom: auto;
            max-height: 100vh;
            overflow-y: auto;
        }

        @media (max-width: 768px) {
            .search-container {
              flex-direction: column;
              align-items: stretch;
              margin-top: 20px;
              padding: 0 10px;
            }
          
            .search-input,
            .search-button {
              width: 100%;
              height: 44px; /* Remove fixed height */
              font-size: 1rem;
              box-sizing: border-box;
              margin: 0;
            }
          
            .search-input {
              margin-bottom: 10px;
              max-height: 3rem;
              width: 100%;
              margin: 0;
            }
          
            .search-button {
              font-weight: bold;
              background-color: #0056b3;
              border-radius: 8px;
            }
          
            .search-button:hover {
              background-color: #fff;
              color: #0056b3;
            }
          }
          
          .benefits-list li {
            margin-bottom: 10px;
            font-size: 1.1rem;
          }
          
          .badge {
            font-size: 1rem;
            padding: 12px 20px;
            border-radius: 10px;
            line-height: 1.4;
          }
          
          a.badge {
            text-decoration: none !important;
          }

          
                    
