    /* Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }

    body {
        background: #f9f9f9;
    }

    .premium-header {
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 15px 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo a {
        text-decoration: none;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .logo span {
        color: #6c63ff;
    }

    .navbar .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .nav-links li a:hover {
        color: #6c63ff;
    }

    .header-actions {
        display: none;
        align-items: center;
        gap: 20px;
        width: auto;
    }

    .search-box {
        display: flex;
        align-items: center;
        background: #f5f5f5;
        border-radius: 30px;
        padding: 8px 15px;
    }

    .search-box input {
        border: none;
        outline: none;
        background: transparent;
        width: 200px;
        font-size: 14px;
    }

    .search-box button {
        border: none;
        background: transparent;
        color: #777;
    }

    .user-actions {
        display: flex;
        gap: 15px;
    }

    .user-actions a {
        color: #555;
        font-size: 18px;
        transition: color 0.3s;
    }

    .user-actions a:hover {
        color: #6c63ff;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: #333;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .header-actions {
            display: flex;
        }

        .navbar {
            position: fixed;
            top: 68px;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            z-index: 999;
        }

        .navbar.active {
            left: 0;
        }

        .nav-links {
            flex-direction: column;
            padding: 30px;
        }

        .menu-toggle {
            display: block;
        }

        .search-box {
            display: none;
        }
    }

    /* Prevent horizontal scroll globally and enable smooth scrolling */
    html,
    body {
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    /* Scrollbar styling: WebKit and Firefox */
    /* WebKit browsers (Chrome, Edge, Safari) */
    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: #dd382b; /* red */
        border-radius: 8px;
        border: 3px solid rgba(0,0,0,0.05);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #c52f24;
    }

    /* Firefox */
    html {
        scrollbar-width: thin;
        scrollbar-color: #dd382b transparent;
    }

    /* Banner Section */
    .banner {
        background: url('assets/img/home-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: center;
        padding: 60px 0;
    }

    .banner p {
        font-size: 25px;
        line-height: 35px;
        color: #333;
        font-weight: 400;
        max-width: 800px;
    }

    .banner p:first-child {
        color: #dd382b;
        font-size: 45px;
        font-weight: 600;
        line-height: 55px;
    }

    .banner img {
        max-width: 80%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .banner .cta-btn {
        background: #000000;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 16px;
        margin-top: 10px;
        cursor: auto;
        transition: box-shadow 0.2s ease, transform 0.12s ease;
        box-shadow: 0 6px 12px rgba(72, 72, 73, 0.2);
    }

    .banner .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(72, 72, 73, 0.28);
    }

    /* Logo minor movement setup */
    .logo {
        will-change: transform;
    }

    /* Header logo image and looping animation */
    .logo img.header-logo {
        height: 40px;
        width: auto;
        display: block;
    }

    @keyframes logo-loop {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(14px);
        }

        100% {
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        .logo img.header-logo {
            height: 32px;
            animation-duration: 5s;
        }
        .banner p:first-child {
    font-size: 25px !important;
    line-height: 35px !important;
}
.banner{
    gap: 5px !important;
}
.banner p {
    font-size: 15px !important;
    line-height: 25px !important;
}
.about-right ul{
    flex-direction: column !important;
    gap: 10px !important;
}
.about-section{
    padding: 0 10px !important;
}
.cards-section{
    padding: 20px 10px !important;
}


        @keyframes logo-loop {
            0% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(8px);
            }

            100% {
                transform: translateX(0);
            }
        }
    }

    .about-section {
        background: #fff;
        padding: 80px 16px;
    }

    .about-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
        align-items: flex-start;
        padding: 0 12px;
    }

    .about-left {
        flex: 1 1 45%;
    }

    .about-left img {
        width: 100%;
        max-width: 460px;
        height: auto;
        border-radius: 10px;
        display: block;
    }

    .about-right {
        flex: 1 1 50%;
        color: #333;
    }

    .about-right p {
        margin-bottom: 20px;
        line-height: 30px;
        font-size: 18px;
    }

    @media (max-width: 768px) {
        .about-wrapper {
            flex-direction: column;
            text-align: left;
        }

        .about-left img {
            max-width: 100%;
        }
    }

    .cards-section {
        background: #fff;
        padding: 36px 16px;
    }

    .cards-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        align-items: start;
        justify-items: center;
        padding: 0 12px;
    }

    .card {
        width: 100%;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        text-align: center;
        padding: 12px;
    }

    .card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
        margin-bottom: 10px;
    }

    .card h4 {
        font-size: 16px;
        color: #333;
        margin: 6px 0 0;
    }

    footer {
        background: #fff;
        text-align: center;
        padding: 20px 0;
    }

    footer h4 {
        font-size: 35px;
        color: #333;
        margin-bottom: 8px;
        font-weight: 600;
    }

    footer p {
        text-decoration: none;
        color: #000000;
        margin-top: 10px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

    /* Responsive grid: 3 columns, 2 columns, then 1 column */
    @media (max-width: 1100px) {
        .cards-wrapper {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .cards-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 420px) {
        .cards-wrapper {
            grid-template-columns: 1fr;
        }
    }