       /* ===== Global Styles ===== */
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }
        html, body {
    overflow-x: hidden;
}

body {
    padding-top: 90px;
}

.hero-section {
    /* min-height: calc(100vh - 90px); */
    position: relative;
    overflow: hidden;
}

.search-section {
    overflow: visible;
}


        /* ===== Hero Section ===== */
        /* .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #EB17D6, #f72fd9);
            background: #fff;
            color: #fff;
            position: relative;
            overflow: hidden;
        } */
    /* Space for fixed navbar */
        body {
            padding-top: 90px;
        }

        /* ===== Hero Section ===== */
        /* .hero-section {
            background: #fff;
            position: relative;
            overflow-x: hidden;
        } */
        /* Floating bubbles */
        .hero-section::before,
        .hero-section::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-section::before {
            width: 300px;
            height: 300px;
            top: -80px;
            right: -80px;
        }

        .hero-section::after {
            width: 200px;
            height: 200px;
            bottom: -60px;
            left: -60px;
        }

        .navbar {
            background: #f72fd9;
        }

        /* ===== Navbar Fixed On Top ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 9999;
            background: #f72fd9;
        }
        /* ===== Navbar ===== */
        .navbar-brand {
            font-weight: 700;
            color: #fff !important;
        }

        .nav-link {
            color: #fff !important;
            margin-right: 15px;
        }

        .signin-btn {
            border: 1px solid #fff;
            color: #fff;
            border-radius: 20px;
            padding: 5px 15px;
        }

        .search-section {
            padding: 20px 15px;
            text-align: center;
        }

        /* Google logo */
        .google-logo {
            font-size: 64px;
            font-weight: 700;
            letter-spacing: -3px;
        }

        .google-logo span:nth-child(1) {
            color: #4285F4;
        }

        .google-logo span:nth-child(2) {
            color: #EA4335;
        }

        .google-logo span:nth-child(3) {
            color: #FBBC05;
        }

        .google-logo span:nth-child(4) {
            color: #4285F4;
        }

        .google-logo span:nth-child(5) {
            color: #34A853;
        }

        .google-logo span:nth-child(6) {
            color: #EA4335;
        }

        /* Search box */
        .search-box {
            max-width: 650px;
            margin: 15px auto;
            padding: 12px 18px;
            border-radius: 50px;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 18px;
        }

        .search-icons i {
            font-size: 20px;
            cursor: pointer;
        }

        /* Big text */
        .big-text {
            /* margin-top: 40px; */
            font-size: clamp(45px, 8vw, 120px);
            font-weight: 800;
            letter-spacing: 4px;
            background: linear-gradient(90deg, #ff00cc, #333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
        }

        /* Mobile adjustments */
        @media (max-width: 576px) {
            .google-logo {
                font-size: 48px;
            }

            .search-box {
                padding: 10px 14px;
            }

            .search-box input {
                font-size: 16px;
            }
        }

        .formstyle {
            width: -webkit-fill-available;
            padding: 2px 5px;
            border: 1px solid #000;
            border-radius: 5px;
            width: -webkit-fill-available;
        }


        .about-section {
            padding: 20px 0;
        }

        .section-title {
            font-weight: 800;
            color: #0d6efd;
        }

        .highlight {
            color: #b40992;
            font-weight: 600;
        }

        .promise-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e7f5ff;
            color: #0d6efd;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .challenge-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .challenge-card:hover {
            transform: translateY(-8px);
        }

        .challenge-icon {
            font-size: 40px;
            color: #0d6efd;
        }

        .founder-box {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .power-section {
            padding: 20px 0;
        }

        .section-heading {
            font-weight: 800;
            /* color:#0d6efd; */
        }

        .story-box {
            background: #ffffff;
            padding: 10px 30px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .story-title {
            font-weight: 700;
            font-size: 18px;
        }

        .badge-key {
            background: #e7f1ff;
            color: #0d6efd;
            font-weight: 600;
        }

        .result-line {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .choose-list li {
            list-style: none;
            padding: 14px 0;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px dashed #dee2e6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .choose-list i {
            font-size: 20px;
            color: #198754;
            margin-top: 2px;
        }

        .final-line {
            margin-top: 20px;
            font-weight: 600;
            color: #212529;
        }

        .seo-title {
            font-weight: 800;
            color: #ea4335;
        }

        .seo-title1 {
            font-weight: 800;
            color: #fbbc05;
        }

        .benefit-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 16px;
            line-height: 1.6;
        }

        .benefit-item i {
            font-size: 20px;
            color: #198754;
            margin-top: 4px;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #dee2e6, transparent);
            margin: 40px 0;
        }

        .service-list {
            columns: 2;
            column-gap: 40px;
        }

        .service-list li {
            list-style: none;
            padding: 8px 0;
            font-size: 15.5px;
            display: flex;
            gap: 10px;
            break-inside: avoid;
        }

        .service-list i {
            color: #0d6efd;
            font-size: 16px;
            margin-top: 3px;
        }

        @media(max-width:768px) {
            .service-list {
                columns: 1;
            }
        }

        .section-title {
            font-weight: 800;
            color: #0d6efd;
        }

        .section-title1 {
            font-weight: 800;
            color: #34a853;
        }

        .info-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .info-item i {
            font-size: 20px;
            color: #198754;
            margin-top: 4px;
        }

        .soft-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #dee2e6, transparent);
            margin: 40px 0;
        }

        .overview-point {
            margin-bottom: 16px;
            font-size: 15.8px;
            line-height: 1.6;
        }

        .overview-point strong {
            color: #212529;
        }

        .info-section {
            padding: 30px 0;
        }

        .package-section {
            padding: 30px 0;
        }

        .package-title {
            font-weight: 800;
            color: #ea4335;
        }

        .seo-table {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .seo-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .seo-table thead th {
            font-size: 16px;
            font-weight: 700;
            color: #495057;
            padding: 18px 20px;
            border-bottom: 1px solid #dee2e6;
            text-align: left;
        }

        .seo-table tbody td {
            padding: 18px 20px;
            font-size: 15.5px;
            color: #212529;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
        }

        .seo-table tbody tr:last-child td {
            border-bottom: none;
        }

        .check-icon {
            color: #198754;
            font-size: 18px;
            margin-right: 6px;
        }

        .footer-section {
            background: linear-gradient(80deg, #ff00cc, #1b5ba3);
            color: #ffffff;
            padding: 50px 0 45px;
        }

        .footer-title {
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-text {
            font-size: 16px;
            line-height: 1.7;
            color: #e9ecef;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 40px 0;
        }

        .contact-box {
            font-size: 16px;
            font-weight: 500;
        }

        .contact-box i {
            font-size: 18px;
            margin-right: 8px;
        }

        .contact-box span {
            display: inline-block;
            margin-right: 18px;
        }

        .brand-name {
            font-weight: 700;
            font-size: 18px;
        }

        .contact-link {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-link:hover {
            text-decoration: underline;
        }