    /* Global Styles */
    @import url('https://fonts.googleapis.com/css?family=Lora:700&family=Montserrat:600&family=Poppins:400,600');

    /* Reset default margins, paddings, and box-sizing */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Body styling */
    body {
        font-family: 'Times New Roman', Times, serif;
        background: linear-gradient(135deg, #8e44ad, #3498db);
        color: #fff;
        min-height: 100vh;
        /* Ensures full viewport height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers content vertically */
        align-items: center;
        /* Centers content horizontally */
        text-align: center;
    }

    /* Login Container */
    .login-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        width: 400px;
        text-align: center;
        margin: auto;
        max-width: 90%;
    }

    .login-form-head {
        margin-bottom: 20px;
    }

    .login-form-head001 {
        width: 100%;
        /* Make it take full width */
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        /* Prevents line breaks */
    }

    .login-form-head h4 {
        font-family: 'Lora', serif;
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: linear-gradient(90deg, #8e44ad, #e84393);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        margin-bottom: 10px;
    }

    .login-form-head001 h4 {
        font-family: 'Lora', serif;
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: linear-gradient(90deg, #8e44ad, #e84393);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        margin-bottom: 10px;
        white-space: nowrap;
        /* Prevents text from breaking */
        display: inline-block;
        /* Keeps it inline */
    }

    .login-form-head p,
    .login-form-head001 p {
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        /* Increased font size */
        font-weight: 600;
        letter-spacing: 1px;
        color: black;
        text-transform: uppercase;
        margin-top: 0;
    }



    /* Input Fields */
    .form-gp {
        position: relative;
        margin-bottom: 20px;
    }

    .form-gp input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .form-gp label {
        position: absolute;
        top: -10px;
        left: 10px;
        background: #ffffff;
        padding: 0 5px;
        font-size: 12px;
        color: #555;
    }

    /* Icons */
    .form-gp i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        cursor: pointer;
    }

    /* Button */
    .submit-btn-area button {
        width: 100%;
        background: #007bff;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn-area button:hover {
        background: #0056b3;
    }

    /* Links */
    .form-footer p a {
        color: #007bff;
        text-decoration: none;
        font-size: 14px;
    }

    .form-footer p a:hover {
        text-decoration: underline;
    }

    /* Error Message */
    .errorWrap {
        background: #f8d7da;
        color: #721c24;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    /* General Styling */
    .rmber-area {
        justify-content: space-between;
        align-items: center;
    }

    .rmber-area .custom-control {
        font-size: 14px;
    }

    .rmber-area a {
        font-size: 14px;
        color: #007bff;
        text-decoration: none;
    }

    .rmber-area a:hover {
        text-decoration: underline;
    }


    /* Comprehensive Responsive Design */

    /* Large Desktops and Monitors (1200px and up) */
    @media screen and (min-width: 1200px) {
        .login-box {
            width: 400px;
            /* Reduced from 450px */
            padding: 30px;
            /* Reduced from 35px */
        }

        .login-form-head h4,
        .login-form-head001 h4 {
            font-size: 22px;
            /* Reduced from 26px */
        }

        .login-form-head p,
        .login-form-head001 p {
            font-size: 18px;
            /* Reduced from 17px */
        }

        .form-gp input {
            padding: 11px;
            /* Reduced from 12px */
            font-size: 14px;
            /* Reduced from 15px */
        }

        .submit-btn-area button {
            padding: 12px;
            /* Reduced from 14px */
            font-size: 16px;
            /* Reduced from 17px */
        }

        /* Reduce Space Between Footer Links */
        .form-footer {
            margin-top: 15px !important;
            /* Reduce space */
        }

        .form-footer p {
            font-size: 14px;
            /* Adjust font size if needed */
            margin-bottom: 5px;
            /* Reduce bottom margin */
        }

        .form-footer a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

    }

    /* Desktop and Small Laptops (992px to 1199px) */
    @media screen and (min-width: 992px) and (max-width: 1199px) {
        .login-box {
            width: 420px;
        }
    }

    /* Tablets and Larger Phones (768px to 991px) */
    @media screen and (min-width: 768px) and (max-width: 991px) {
        .login-box {
            width: 380px;
            padding: 25px;
        }

        .login-form-head h4,
        .login-form-head001 h4 {
            font-size: 20px;
        }

        .login-form-head p,
        .login-form-head001 p {
            font-size: 16px;
            letter-spacing: 1.5px;
        }
    }

    /* Medium Phones (576px to 767px) */
    @media screen and (min-width: 576px) and (max-width: 767px) {
        .login-box {
            width: 85%;
            padding: 25px;
            border-radius: 25px;
        }

        .login-form-head,
        .login-form-head001 {
            margin-bottom: 15px;
        }

        .login-form-head h4,
        .login-form-head001 h4 {
            font-size: 20px;
        }

        .login-form-head p .login-form-head001 p {
            font-size: 15px;
            letter-spacing: 1.5px;
        }

        .form-gp {
            margin-bottom: 18px;
        }

        .submit-btn-area button {
            padding: 10px;
        }
    }

    /* Small Phones (320px to 575px) */
    @media screen and (max-width: 575px) {
        body {
            background-attachment: scroll;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding: 0 15px;
        }

        .login-box {
            width: 90%;
            max-width: 320px;
            padding: 20px;
            border-radius: 20px;
        }

        .login-form-head,
        .login-form-head001 {
            margin-bottom: 15px;
            text-align: center;
        }

        .login-form-head h4,
        .login-form-head001 h4 {
            font-size: 18px;
            letter-spacing: 0.8px;
        }

        .login-form-head p .login-form-head001 p {
            font-size: 12px;
            letter-spacing: 1.2px;
        }

        .form-gp {
            margin-bottom: 15px;
        }

        .form-gp input {
            padding: 9px;
            font-size: 13px;
        }

        .form-gp label {
            font-size: 11px;
        }

        .submit-btn-area button {
            padding: 10px;
            font-size: 14px;
        }

        .form-footer {
            margin-top: 10px !important;
        }

        .form-footer p a {
            font-size: 13px;
        }
    }

    /* Extra Small Phones and Watches (Below 320px) */
    @media screen and (max-width: 319px) {
        .login-box {
            width: 95%;
            padding: 15px;
            border-radius: 15px;
        }

        .login-form-head h4,
        .login-form-head001 h4 {
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .login-form-head p .login-form-head001 p {
            font-size: 11px;
            letter-spacing: 1px;
        }

        .form-gp input {
            padding: 8px;
            font-size: 12px;
        }

        .form-gp i {
            right: 10px;
        }

        .submit-btn-area button {
            padding: 8px;
            font-size: 13px;
        }
    }

    /* Portrait vs Landscape Orientations */
    @media screen and (orientation: landscape) and (max-height: 500px) {
        body {
            height: auto;
            min-height: 100vh;
            padding: 20px 0;
        }

        .login-box {
            margin: 20px auto;
        }
    }

    label[for="exampleInputText1"],
    label[for="exampleInputPassword1"] {
        font-family: 'Poppins', sans-serif;
        /* Change font family */
        font-size: 13px;
        /* Adjust font size */
        font-weight: 400;
        /* Medium weight */
        color: #333;
        /* Darker color for better readability */
    }

    i.ti-eye,
    i.ti-user {
        color: #333;
        /* Dark gray for better readability */
        font-size: 16px;
        /* Adjust size if needed */
    }

    .submit-btn-area button {
        background-color: #007bff;
        /* Button background */
        color: #fff;
        /* Text color */
        font-size: 16px;
        font-weight: 600;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .submit-btn-area button:hover {
        background-color: #732d91;
        /* Darker shade on hover */
        box-shadow: 0 4px 10px rgba(142, 68, 173, 0.5);
        /* Soft shadow */
        transform: scale(1.05);
        /* Slight scale effect */
    }

    input[type="text"]#username,
    input[type="text"]#exampleInputEmail1,
    input[type="password"]#exampleInputPassword1 {
        border: 1px solid #555;
        /* Darker border */
        color: #333;
        /* Darker text color */
        font-size: 16px;
        padding: 10px;
        border-radius: 5px;
        outline: none;
        transition: border-color 0.3s ease-in-out;
        width: 100%;
        max-width: 300px;
        /* Adjust width as needed */
    }

    input[type="text"]#username:focus,
    input[type="text"]#exampleInputEmail1:focus,
    input[type="password"]#exampleInputPassword1:focus {
        border-color: #8e44ad;
        /* Highlight border on focus */
        box-shadow: 0 0 5px rgba(142, 68, 173, 0.5);
    }

    /* Navbar Styling */
    .navbar {
        width: 100%;
        padding: 5px 15px;
        /* Reduce padding */
        background-color: rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* Align everything to the left */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        width: 100px;
        margin-left: -10px;
        margin-top: -10px;
        /* Reduce logo size */
        max-height: 100px;
        /* Reduce height */
        margin-right: 10px;
        /* Add small spacing from other content */
    }


    .navbar-title {
        margin-left: 8px;
        font-size: 18px;
        font-weight: bold;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 1s ease-in-out;
    }

    .hero h1 {
        margin-bottom: 10px;
        font-size: 30px;
        font-weight: 600;
        white-space: nowrap;
        /* Prevents text wrapping */
    }

    .hero p {
        margin-bottom: 10px;
        max-width: 80%;
        font-size: 16px;
        opacity: 0.9;
        white-space: nowrap;
    }

    /* Buttons */
    .btn-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        overflow: hidden;
    }

    .btn-custom {
        background-color: #3498db;
        color: #fff;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        width: 180px;
        cursor: pointer;
        white-space: nowrap;
    }

    .btn-custom:hover {
        background-color: #6c3483;
        transform: scale(1.05);
    }

    /* Features Section */
    .features {
        width: 100%;
        background: #f5f7fa;
        color: #333;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        gap: 20px;
    }

    .features-title {
        width: 100%;
        margin-bottom: 15px;
        font-size: 22px;
        color: #4a235a;
    }

    /* Feature Box Styling */
    .feature-box {
        padding: 15px;
        width: 180px;
        /* Smaller width to fit in one row */
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    /* Footer */
    .footer {
        width: 100%;
        padding: 8px;
        background: #4a235a;
        color: #ecf0f1;
        text-align: center;
        font-size: 12px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .features {
            flex-wrap: wrap;
            /* Allows stacking for smaller screens */
        }
    }

    @media (max-width: 768px) {
        .btn-container {
            flex-wrap: wrap;
        }
    }

    @media (max-width: 480px) {
        .feature-box {
            max-width: 85%;
        }

        .hero h1,
        .hero p {
            white-space: normal;
            /* Allow wrapping */
        }
    }


    /* Buttons */
    .btn-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .btn-custom {
        background-color: #3498db;
        /* Default purple color */
        color: #fff;
        font-weight: bold;
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        width: 220px;
        cursor: pointer;
    }

    /* Hover effect */
    .btn-custom:hover {
        background-color: #6c3483;
        /* Darker shade of purple */
        transform: scale(1.05);
    }

    /* Active (click) effect */
    .btn-custom:active {
        transform: scale(0.95);
    }


    .btn-custom:nth-child(2) {
        background-color: #3498db;
    }

    .btn-custom i {
        margin-right: 8px;
    }

    .btn-custom:hover {
        background-color: #6c3483;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        opacity: 0.9;
    }

    /* Features Section */
    .features {
        font-family: 'Times New Roman', Times, serif;
        width: 100%;
        background: #f5f7fa;
        color: #333;
        text-align: center;
        padding: 40px 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
    }

    .features-title {
        font-family: 'Times New Roman', Times, serif;
        width: 100%;
        margin-bottom: 30px;
        font-size: 24px;
        color: #4a235a;
        animation: fadeIn 1s ease-in-out;
    }

    /* Feature Box Styling */
    .feature-box {
        padding: 20px;
        width: 100%;
        max-width: 220px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        animation: scaleUp 1s ease-in-out;
    }

    /* Hover Animation */
    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    /* Feature Icon */
    .feature-icon {
        font-size: 35px;
        margin-bottom: 10px;
        color: #5b3cc4;
        transition: transform 0.3s ease-in-out;
    }

    /* Different colors for each feature icon */
    .feature-box:nth-child(1) .feature-icon {
        color: #5b3cc4;
    }

    .feature-box:nth-child(2) .feature-icon {
        color: #8e44ad;
    }

    .feature-box:nth-child(3) .feature-icon {
        color: #3498db;
    }

    .feature-box:nth-child(4) .feature-icon {
        color: #9b59b6;
    }

    /* Icon Bounce on Hover */
    .feature-box:hover .feature-icon {
        transform: scale(1.1);
    }

    /* Feature Title */
    .feature-title {
        font-size: 18px;
        font-weight: bold;
        margin-top: 8px;
    }

    .feature-description {
        font-family: 'Times New Roman', Times, serif;
        font-size: 17px;
        color: black;
        margin-top: 8px;
        line-height: 1.4;
    }

    /* Footer */
    .footer {
        width: 100%;
        padding: 12px;
        background: #4a235a;
        color: #ecf0f1;
        text-align: center;
        font-size: 12px;
        margin-top: auto;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
        .btn-container {
            flex-direction: row;
            gap: 12px;
        }

        .hero h1 {
            font-size: 38px;
        }

        .hero p {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .feature-box {
            max-width: 90%;
        }

        .feature-icon {
            font-size: 28px;
        }

        .feature-title {
            font-size: 14px;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleUp {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }