@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
@import url('');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css'); /* Importing Bootstrap */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
}

/* Header Section */
.header {
    background-color: #0052cc;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-circle {
    background-color: white;
    color: #0052cc;
    border-radius: 50%;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-text {
    font-weight: bold;
    font-size: 20px;
}

.user-info a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
}

.user-info a:hover {
    text-decoration: underline;
}

        /* navbar section start */
       /* Custom styling for buttons */
       .btn {
        border-radius: 10px;
        padding: 10px 15px;
        font-weight: 500;
        font-size: 14px;
        text-transform: capitalize;
    }

    .btn-outline-dark {
        background-color: #f8f9fa;
        color: #343a40;
        border-color: #e0e0e0;
    }

    .btn-outline-dark:hover {
        background-color: #e9ecef;
        color: #000;
    }

    .btn-primary {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .btn-primary i {
        margin-right: 5px;
    }

    .btn-outline-dark i {
        margin-right: 5px;
    }

    /* Fix links inside buttons */
    .btn a {
        color: inherit; /* Match button color */
        text-decoration: none; /* Remove underline */
    }

    .btn a:hover {
        color: inherit; /* Prevent link color change on hover */
    }

    /* nav section start */
    .back-button, .skip-button {
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .back-button {
        background-color: black;
        color: white;
    }

    .skip-button {
        background-color: #4caf50;
        color: white;
    }

    .hero-section {
        background-color: #ffffff;
        padding: 60px 0;
    }

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

    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .start-now-btn {
        background-color: #3e2ad5;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        padding: 10px 25px;
        border: none;
        border-radius: 5px;
        text-decoration: none;
    }

    .start-now-btn:hover {
        background-color: #221372;
        color: #fff;
    }

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

    /* Top bar styling */
    .top-bar {
        background-color: #3e2ad5;
        color: white;
        padding: 5px 0;
        font-size: 0.9rem;
        height: 70px;
    }

    .top-bar a {
        color: white;
        margin-right: 15px;
        text-decoration: none;
    }

    .social-icons a {
        color: #3e2ad5;
        font-size: 1.3rem;
        margin-right: 5px;

    }

    .social-icons a i {
        background-color: white;
        padding: 5px;
        border-radius: 50px;
    }

    .navbar-custom {
        background-color: #ffffff;
    }



