Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/testing.codeskitter.site/one/
Upload File :
Current File : /home/users/unlimited/www/testing.codeskitter.site/one/index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Generated Page</title>
  <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>SpeedoLoan</title>
  <link rel="stylesheet" href="global.css">
  <style id="sections-styles">
/* CSS for section section:header */
.site-header {
        background-color: var(--white);
        padding-top: 15px;
        padding-bottom: 15px;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        position: relative;
        width: 200px;
        height: 45px;
        flex-shrink: 0;
    }
    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 48px;
    }
    .main-nav a {
        text-decoration: none;
        color: #2a2c2b;
        font-size: 18px;
        font-weight: 500;
        transition: color 0.3s;
    }
    .main-nav a:hover {
        color: var(--primary-color);
    }
    .btn-repay {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        padding: 11px 25px;
        border-radius: 28px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: background-color 0.3s, color 0.3s;
    }
    .btn-repay:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
    @media (max-width: 992px) {
        .main-nav {
            display: none; /* Simplified for this example, would use JS for a hamburger menu */
        }
    }
    @media (max-width: 576px) {
        .header-container {
            flex-direction: column;
            gap: 15px;
        }
    }

/* CSS for section section:hero */
.hero-section {
        background-color: var(--primary-color);
        padding-top: 0;
        padding-bottom: 80px;
        overflow: hidden;
    }
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        position: relative;
    }
    .hero-image-wrapper {
        position: relative;
        height: 530px;
    }
    .hero-person-img {
        position: absolute;
        z-index: 3;
        width: 507px;
        height: 530px;
        object-fit: contain;
        bottom: 0;
        left: -70px;
    }
    .deco-shape-1, .deco-shape-2 {
        position: absolute;
        z-index: 1;
    }
    .deco-shape-1 {
        width: 600px;
        height: 446px;
        left: -37px;
        top: 60px;
    }
    .deco-shape-2 {
        width: 487px;
        height: 487px;
        left: -212px;
        top: -80px;
        z-index: 2;
    }
    .hero-form-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .loan-form {
        background-color: var(--white);
        border-radius: 32px;
        padding: 40px;
        width: 100%;
        max-width: 473px;
        text-align: center;
        box-shadow: 0px 4px 4.3px rgba(0, 0, 0, 0.25), 0px -2px 6px rgba(0, 0, 0, 0.25);
    }
    .loan-form h2 {
        color: var(--primary-color);
        font-size: 28px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    .loan-form p {
        color: #404040;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        margin-bottom: 24px;
    }
    .otp-inputs {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-bottom: 24px;
    }
    .otp-inputs input {
        width: 46px;
        height: 50px;
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        color: var(--text-dark);
    }
    .terms-check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        margin-bottom: 30px;
    }
    .terms-check img {
        width: 17px;
        height: 17px;
        margin-top: 2px;
    }
    .terms-check label {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: rgba(10, 10, 10, 0.8);
        line-height: 1.5;
    }
    .terms-check a {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
    }
    .btn-submit {
        background-color: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: 65px;
        width: 100%;
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.3s;
    }
    .btn-submit:hover {
        opacity: 0.9;
    }
    @media (max-width: 1200px) {
        .hero-person-img { left: 0; }
    }
    @media (max-width: 992px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero-image-wrapper {
            height: 400px;
            margin-bottom: -50px;
        }
        .hero-person-img {
            position: relative;
            width: 80%;
            left: 0;
        }
        .deco-shape-1, .deco-shape-2 { display: none; }
    }
    @media (max-width: 576px) {
        .loan-form { padding: 20px; }
        .otp-inputs { gap: 10px; }
        .otp-inputs input { width: 38px; height: 42px; font-size: 20px; }
    }

/* CSS for section section:features */
.features-section {
        background-color: var(--white);
        padding-bottom: 0;
        margin-top: -40px;
        position: relative;
        z-index: 5;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: center;
    }
    .feature-card {
        background-color: var(--white);
        border: 1px solid var(--primary-color);
        border-radius: 26px;
        padding: 40px 20px;
        text-align: center;
        box-shadow: 0px 2px 15.8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    }
    .feature-card.featured {
        background-color: var(--primary-color);
        color: var(--white);
        transform: scale(1.05);
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .feature-card.featured:hover {
        transform: scale(1.1) translateY(-10px);
    }
    .feature-icon-wrapper {
        margin: 0 auto 25px;
        width: 97px;
        height: 97px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(253, 104, 0, 0.1);
        border-radius: 50%;
    }
    .feature-card.featured .feature-icon-wrapper {
        background-color: var(--white);
        width: 120px;
        height: 120px;
    }
    .feature-icon {
        width: 60%;
        height: 60%;
    }
    .debt-icon-container {
        position: relative;
        width: 97px;
        height: 97px;
    }
    .feature-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--text-dark);
    }
    .feature-card.featured h3 {
        color: var(--white);
        font-size: 28px;
    }
    .feature-card p {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        color: var(--text-body);
    }
    .feature-card.featured p {
        color: var(--white);
        font-size: 19px;
    }
    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .feature-card.featured {
            transform: scale(1);
        }
        .feature-card.featured:hover {
            transform: translateY(-10px);
        }
    }

/* CSS for section section:risks */
.risks-section {
        background-color: var(--background-light);
    }
    .risks-header {
        text-align: center;
        margin-bottom: 60px;
    }
    .risks-header h2 {
        font-size: 50px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.2;
    }
    .risks-header h3 {
        font-size: 40px;
        font-weight: 600;
        color: var(--primary-color);
        line-height: 1.2;
    }
    .risks-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .risk-card {
        background-color: var(--white);
        border-radius: 14px;
        padding: 30px;
        box-shadow: 0px 1px 3.7px rgba(0, 0, 0, 0.25);
    }
    .risk-icon, .risk-icon-merged {
        width: 63px;
        height: 63px;
        margin-bottom: 20px;
    }
    .risk-icon-merged {
        position: relative;
    }
    .risk-card h4 {
        font-size: 24px;
        font-weight: 500;
        color: var(--text-body);
        margin-bottom: 15px;
        line-height: 1.3;
    }
    .risk-card p {
        font-size: 16px;
        line-height: 1.5;
    }
    @media (max-width: 992px) {
        .risks-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    @media (max-width: 768px) {
        .risks-header h2 { font-size: 40px; }
        .risks-header h3 { font-size: 30px; }
        .risks-grid {
            grid-template-columns: 1fr;
        }
    }

/* CSS for section section:rates-fees */
.rates-fees-section {
        background-color: var(--background-alt);
    }
    .rates-fees-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
        margin-bottom: 50px;
    }
    .rates-fees-header h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--text-body);
    }
    .rates-fees-header .highlight {
        color: var(--primary-color);
    }
    .rates-fees-header .line {
        width: 107px;
        height: 3px;
        background-color: #000;
    }
    .rates-list {
        max-width: 900px;
        margin: 0 auto 60px;
    }
    .rate-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 28px 0;
        border-bottom: 1px solid #bebebe;
    }
    .rate-item:first-child {
        padding-top: 0;
    }
    .rate-item p {
        font-size: 20px;
        font-weight: 500;
        color: var(--text-body);
    }
    .rate-value {
        background-color: var(--white);
        border: 1px solid #ffddc5;
        border-radius: 8px;
        padding: 15px 30px;
        color: var(--primary-color);
        font-size: 16px;
        font-weight: 600;
        min-width: 260px;
        text-align: center;
    }
    .representative-example {
        text-align: center;
    }
    .representative-example h3 {
        font-size: 36px;
        font-weight: 700;
        color: var(--text-body);
        margin-bottom: 30px;
    }
    .example-table {
        font-size: 16px;
        font-weight: 500;
    }
    .table-header, .table-row {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        align-items: center;
    }
    .table-header {
        background-color: #ff8027;
        color: var(--text-dark);
        padding: 18px 10px;
    }
    .table-row {
        background-color: #eeeeee;
        color: var(--text-body);
        padding: 24px 10px;
        font-size: 14px;
    }
    @media (max-width: 992px) {
        .rate-item { flex-direction: column; gap: 15px; }
        .example-table { display: none; /* Complex tables need specific mobile design */ }
    }
    @media (max-width: 768px) {
        .rates-fees-header h2 { font-size: 32px; }
        .rate-item p { font-size: 18px; text-align: center; }
    }

/* CSS for section section:terms */
.terms-section {
        background-color: var(--primary-light);
    }
    .terms-container {
        max-width: 690px;
        text-align: center;
    }
    .terms-container h2 {
        font-size: 36px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 34px;
    }
    .terms-container h2 .highlight {
        color: var(--primary-color);
    }
    .welcome-text {
        font-size: 20px;
        font-weight: 500;
        color: #fc6800;
        margin-bottom: 34px;
    }
    .terms-body {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 34px;
    }
    .read-more {
        font-size: 16px;
        color: #fc6800;
        text-decoration: none;
        font-weight: 400;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    @media (max-width: 768px) {
        .terms-container h2 { font-size: 28px; }
    }

/* CSS for section section:footer */
.site-footer {
        background-color: var(--dark-footer);
        color: var(--white);
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-col h4 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 24px;
    }
    .footer-col p, .footer-col a {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: var(--white);
        text-decoration: none;
    }
    .footer-col ul {
        list-style: none;
        padding: 0;
    }
    .footer-col ul li {
        margin-bottom: 12px;
    }
    .footer-col a:hover {
        text-decoration: underline;
    }
    .footer-divider {
        height: 1px;
        background-color: rgba(255, 255, 255, 0.6);
        margin: 40px 0;
    }
    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .footer-social a {
        display: inline-block;
        background-color: var(--white);
        border-radius: 6px;
        width: 54px;
        height: 53px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-social img {
        height: 24px;
    }
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
  </style>
  <script src="global.js" defer></script>
</head>
<body>
<header class="site-header">
    <div class="container header-container">
        <!--merged image-->
        <a href="#" class="logo">
            <img src="images/794_764.svg" alt="logo part" style="position: absolute; top: 0.17px; left: 0px; width: 36.69px; height: 36.69px;">
            <img src="images/794_769.svg" alt="logo part" style="position: absolute; top: 13.28px; left: 30.18px; width: 26.13px; height: 31.38px;">
            <img src="images/794_771.svg" alt="logo part" style="position: absolute; top: 17.58px; left: 34.0px; width: 18.5px; height: 22.66px;">
            <img src="images/794_774.svg" alt="logo part" style="position: absolute; top: 10.18px; left: 59.7px; width: 11.27px; height: 14.9px;">
            <img src="images/794_778.svg" alt="logo part" style="position: absolute; top: 10.27px; left: 72.95px; width: 10.97px; height: 14.63px;">
            <img src="images/794_782.svg" alt="logo part" style="position: absolute; top: 10.27px; left: 85.59px; width: 9.58px; height: 14.63px;">
            <img src="images/794_786.svg" alt="logo part" style="position: absolute; top: 10.27px; left: 97.17px; width: 9.58px; height: 14.63px;">
            <img src="images/794_790.svg" alt="logo part" style="position: absolute; top: 10.39px; left: 108.7px; width: 12.96px; height: 14.51px;">
            <img src="images/794_794.svg" alt="logo part" style="position: absolute; top: 10.16px; left: 123.34px; width: 15.03px; height: 14.94px;">
            <img src="images/794_798.svg" alt="logo part" style="position: absolute; top: 10.39px; left: 145.67px; width: 9.64px; height: 14.51px;">
            <img src="images/794_802.svg" alt="logo part" style="position: absolute; top: 10.16px; left: 157.11px; width: 15.03px; height: 14.94px;">
            <img src="images/794_806.svg" alt="logo part" style="position: absolute; top: 10.22px; left: 173.36px; width: 14.37px; height: 14.67px;">
            <img src="images/794_810.svg" alt="logo part" style="position: absolute; top: 10.39px; left: 188.74px; width: 11.26px; height: 14.51px;">
        </a>
        <nav class="main-nav">
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#section-risks">About Us</a></li>
                <li><a href="#section-footer">Contact Us</a></li>
            </ul>
        </nav>
        <a href="#" class="btn-repay">Repay Now</a>
    </div>
</header>
<section id="section-hero" class="hero-section">
    <div class="container hero-container">
        <div class="hero-image-wrapper">
            <img src="images/2006abd5d499acf8de404c35b7260ad1645e463b.png" alt="Man using a phone" class="hero-person-img">
            <img src="images/420_1469.svg" alt="decorative shape" class="deco-shape-1">
            <img src="images/420_1379.svg" alt="decorative shape" class="deco-shape-2">
        </div>
        <div class="hero-form-wrapper">
            <form class="loan-form">
                <h2>Apply for a Personal Loan</h2>
                <p>Enter your 10 digit mobile number to get started</p>
                <div class="otp-inputs">
                    <input type="text" value="7" maxlength="1">
                    <input type="text" value="4" maxlength="1">
                    <input type="text" value="8" maxlength="1">
                    <input type="text" value="2" maxlength="1">
                    <input type="text" value="6" maxlength="1">
                    <input type="text" value="9" maxlength="1">
                </div>
                <div class="terms-check">
                    <img src="images/420_1249.svg" alt="checkbox icon">
                    <label>By selecting this checkbox, I authorize the receipt of digital communication <a href="#">read more.</a></label>
                </div>
                <button type="submit" class="btn-submit">Verify OTP</button>
            </form>
        </div>
    </div>
</section>
<section id="section-features" class="features-section">
    <div class="container">
        <div class="features-grid">
            <div class="feature-card">
                <div class="feature-icon-wrapper">
                    <img src="images/I420_1636_420_958.svg" alt="Instant Loan Icon" class="feature-icon">
                </div>
                <h3>Instant Loan</h3>
                <p>We offer instant loan to help you tackle unexpected financial needs swiftly and efficient.</p>
            </div>
            <div class="feature-card featured">
                <div class="feature-icon-wrapper">
                    <img src="images/I420_1636_420_935.svg" alt="Short Loan Icon" class="feature-icon">
                </div>
                <h3>Short loan</h3>
                <p>Discover the convenience of short loan at Speedoloan, designed to meet your immediate financial needs with ease</p>
            </div>
            <div class="feature-card">
                <div class="feature-icon-wrapper">
                    <!--merged image-->
                    <div class="debt-icon-container">
                        <img src="images/I420_1636_420_946.svg" alt="Debt Consolidation Icon Part" style="position: absolute; top: 25px; left: 19px; width: 30px; height: 32.86px;">
                        <img src="images/I420_1636_420_947.svg" alt="Debt Consolidation Icon Part" style="position: absolute; top: 32.42px; left: 41px; width: 36px; height: 38.16px;">
                    </div>
                </div>
                <h3>Debt Consolidation</h3>
                <p>Take control of your finances with our debt consolidation service. Consolidate multiple debts into one manageable payment</p>
            </div>
        </div>
    </div>
</section>
<section id="section-risks" class="risks-section">
    <div class="container">
        <div class="risks-header">
            <h2>RISKS</h2>
            <h3>A disclaimer before you Apply+</h3>
        </div>
        <div class="risks-grid">
            <div class="risk-card">
                <img src="images/I420_1637_632_484.svg" alt="Residents only icon" class="risk-icon">
                <h4>Residents only</h4>
                <p>We greatly value the trust of our Indian customers and are committed to providing services that prioritize your unique requirements.</p>
            </div>
            <div class="risk-card">
                <!--merged image-->
                <div class="risk-icon-merged">
                    <img src="images/I420_1638_632_505.svg" alt="Salary loans icon part" style="position: absolute; top: 0px; left: 6.71px; width: 51.65px; height: 60.75px;">
                    <img src="images/I420_1638_632_507.svg" alt="Salary loans icon part" style="position: absolute; top: 23.45px; left: 0px; width: 24.99px; height: 16.68px;">
                    <img src="images/I420_1638_632_508.svg" alt="Salary loans icon part" style="position: absolute; top: 31.26px; left: 31.63px; width: 16.58px; height: 23.45px;">
                    <img src="images/I420_1638_632_504.svg" alt="Salary loans icon part" style="position: absolute; top: 2px; left: 8.94px; width: 17.83px; height: 17.96px;">
                </div>
                <h4>Salary loans</h4>
                <p>This is short term loan service only for salaried individuals with a salary above INR 35000/-.</p>
            </div>
            <div class="risk-card">
                <img src="images/I420_1639_632_581.svg" alt="High interest rate icon" class="risk-icon">
                <h4>Relatively high interest rate</h4>
                <p>The rates are somewhat higher as compared to long-term loans like automobile loans from banks.</p>
            </div>
        </div>
    </div>
</section>
<section id="section-rates-fees" class="rates-fees-section">
    <div class="container">
        <div class="rates-fees-header">
            <h2>Rates and <span class="highlight">Fees</span></h2>
            <div class="line"></div>
        </div>
        <div class="rates-list">
            <div class="rate-item">
                <p>Monthly Interest Rate:</p>
                <div class="rate-value">2.9166%</div>
            </div>
            <div class="rate-item">
                <p>Offered Annual Percentage Rate (APR):</p>
                <div class="rate-value">35% (Fixed)</div>
            </div>
            <div class="rate-item">
                <p>Tenure/Repayment Period:</p>
                <div class="rate-value">INR 10,000 - 5,00,000</div>
            </div>
            <div class="rate-item">
                <p>Minimum-Maximum Loan Amount:</p>
                <div class="rate-value">INR 10,000 - 5,00,000</div>
            </div>
            <div class="rate-item">
                <p>Processing Fee:</p>
                <div class="rate-value">2%</div>
            </div>
            <div class="rate-item">
                <p>GST on Processing Fee (Exclusive):</p>
                <div class="rate-value">18%</div>
            </div>
        </div>
        <div class="representative-example">
            <h3>Representative Example</h3>
            <div class="example-table">
                <div class="table-header">
                    <span>Loan Amount</span><span>APR</span><span>Tenure</span><span>Processing Fees</span><span>GST on Processing Fee</span><span>Amount Disbursed</span><span>EMI</span><span>Total Repayment Amount</span><span>Total Interest</span>
                </div>
                <div class="table-row">
                    <span>₹ 50,000</span><span>35%</span><span>12 Months</span><span>₹ 1,000</span><span>₹180</span><span>₹48,820</span><span>₹4,998</span><span>₹59,978</span><span>₹9,978</span>
                </div>
            </div>
        </div>
    </div>
</section>
<section id="section-terms" class="terms-section">
    <div class="container terms-container">
        <h2>Terms and <span class="highlight">Conditions</span></h2>
        <p class="welcome-text">Welcome to the Speedoloan website,</p>
        <p class="terms-body">operated by Agrim Private Limited (we, us, our). By accessing or using our website(Site) and services (Services) you agree to be bound by the following terms and conditions.</p>
        <a href="#" class="read-more">read more <img src="images/420_1427.svg" alt="arrow"></a>
    </div>
</section>
<footer class="site-footer">
    <div class="container">
        <div class="footer-grid">
            <div class="footer-col">
                <h4>REACH US</h4>
                <p>Address: 276,m First Floor, Gagan Vihar, Shadra Delhi</p>
            </div>
            <div class="footer-col">
                <h4>QUICK LINKS</h4>
                <ul>
                    <li><a href="#">Terms & Condition</a></li>
                    <li><a href="#">Privacy Policy</a></li>
                    <li><a href="#">Cancellation & Refund Policy</a></li>
                    <li><a href="#">FAQs</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>CONTACT</h4>
                <p>Email: info@speedoloan.com</p>
                <p>Phone: +91 9099909941</p>
            </div>
        </div>
        <div class="footer-divider"></div>
        <div class="footer-social">
            <a href="#"><img src="images/420_1624.svg" alt="Facebook"></a>
            <a href="#"><img src="images/420_1625.svg" alt="LinkedIn"></a>
            <a href="#"><img src="images/420_1626.svg" alt="YouTube"></a>
            <a href="#"><img src="images/420_1627.svg" alt="Twitter"></a>
            <a href="#"><img src="images/420_1629.svg" alt="Instagram"></a>
        </div>
        <div class="footer-divider"></div>
    </div>
</footer>
</body>
</html>