    .page-hero-title,
    .how-title,
    .page-text-section-title,
    .page-text-content-title,
    .bullet-point-title,
    .products-title, .text-slider-section__title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    /* Page Hero Banner Start */
    .page-hero-banner-1 {
        min-height: 700px;
        background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
        overflow: hidden;
        border-radius: 80px;
        position: relative;
    }

    .page-hero-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(63, 45, 167, 0.6), rgba(79, 63, 179, 0.6));
        z-index: 1;
        border-radius: 2rem;
        pointer-events: none;
    }

    .page-hero-input-group,
    .page-hero-input,
    .page-hero-btn {
        position: relative;
        z-index: 2;
    }

    /* Text */
    .page-hero-title {
        position: relative;
        z-index: 2;
        /* font-size: 3rem;
            font-weight: 800; */
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
        animation: fadeUp 1s ease forwards;
    }

    .page-hero-subtitle {
        position: relative;
        z-index: 2;
        color: var(--clr-off-white);
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25);
        animation: fadeUp 1.2s ease forwards;
    }

    /* Hero Image */
    .page-hero-img {
        position: relative;
        z-index: 2;
        max-width: 100%;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .page-hero-img:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }

    /* Glass Input */
    .page-hero-input-group.glass-effect {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border-radius: 12px;
        padding: 0.5rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Input and Button */
    .page-hero-input {
        flex: 1;
        min-width: 200px;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem 0 0 0.5rem;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        transition: background 0.3s ease;
    }

    .page-hero-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .page-hero-input:focus {
        background: rgba(255, 255, 255, 0.35);
        outline: none;
    }

    .page-hero-btn {
        border: none;
        background: var(--clr-primary-light);
        color: #fff;
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 0 0.5rem 0.5rem 0;
        cursor: pointer;
        transition: all 0.4s ease;
    }

    .page-hero-btn:hover {
        background: var(--clr-primary-dark);
        /* transform: translateY(-3px) scale(1.03); */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    /* Floating Shapes */
    .page-hero-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
        z-index: 1;
    }

    .page-hero-shape-1 {
        width: 250px;
        height: 250px;
        background: var(--clr-primary-light);
        top: -50px;
        left: -50px;
    }

    .page-hero-shape-2 {
        width: 150px;
        height: 150px;
        background: var(--clr-primary-dark);
        bottom: -30px;
        right: -30px;
    }

    /* Animations */
    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media(max-width:992px) {
        .page-hero-row {
            flex-direction: column-reverse;
            gap: 0.5rem;
        }
    }

    @media(max-width:992px) {
        /* .page-hero-title {
                font-size: 2.5rem;
            } */
    .page-hero-banner-1 {
        border-radius: 30px;
    }
        .page-hero-subtitle {
            font-size: 1.2rem;
        }
    }

    @media(max-width:576px) {
        /* .page-hero-title {
                font-size: 2rem;
            } */

        .page-hero-subtitle {
            font-size: 1rem;
        }

        .page-hero-input-group {
            flex-direction: column;
            gap: 0.5rem;
        }

        .page-hero-input,
        .page-hero-btn {
            border-radius: 0.5rem !important;
            width: 100%;
        }
    }


    /* Page Hero Banner End */



    /* Steps Of Working Section Start */

    .how-it-works-section {
        background: var(--clr-light-gray);
    }

    .how-title {
        /* font-size: 3rem;
            font-weight: 800; */
        color: var(--clr-primary-dark);
    }

    .steps-heading-h5 {
        color: var(--clr-primary);
    }

    /* Step Card */
    .how-card {
        position: relative;
        background: var(--clr-white);
        border-radius: 16px;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.35s ease;
    }

    .how-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(63, 45, 167, 0.25);
    }

    /* Step Badge */
    .step-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* Icons / Images */
    .how-card img {
        max-width: 150px;
        border-radius: 30px;
        transition: transform 0.3s ease;
    }

    .how-card:hover img {
        transform: scale(1.1);
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        .how-card {
            padding: 25px 15px;
        }
    }

    /* Steps Of Working Section End */



    /* 2 Text Section Start */

    .page-text-section {
        background: linear-gradient(180deg,
                var(--clr-off-white),
                var(--clr-light-gray));
        border-radius: 80px;

    }

    /* Content Card */
    .text-card {
        background: var(--clr-white);
        border-radius: 18px;
        padding: 40px 35px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.35s ease;
    }

    .text-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(63, 45, 167, 0.18);
    }

    /* Highlighted Card (optional emphasis) */
    .highlight-card {
        background: linear-gradient(135deg,
                var(--clr-primary),
                var(--clr-primary-light));
        color: var(--clr-white);
    }

    .highlight-card .page-text-section-subtitle {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Title */
    .page-text-section-title {
        /* font-size: 3rem;
            font-weight: 800; */
        color: var(--clr-primary-dark);
    }

    .highlight-card .page-text-section-title {
        color: var(--clr-white);
    }

    /* Divider under title */
    .title-divider {
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg,
                var(--clr-primary),
                var(--clr-primary-light));
        border-radius: 2px;
    }

    /* Paragraph text */
    .page-text-section-subtitle {
        font-size: 1rem;
        line-height: 1.75;
        color: var(--clr-mid-gray);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .text-card {
            padding: 30px 25px;
        }

        /* .page-text-section-title {
                font-size: 1.6rem;
            } */
    }

    /* 2 Text Section End */



    /* 1 Text Section Start */
    .page-text-content {
        background: linear-gradient(180deg,
                var(--clr-off-white),
                var(--clr-light-gray));
    }

    /* Content Card */
    .content-card {
        background: var(--clr-white);
        border-radius: 20px;
        padding: 50px 45px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    /* Title */
    .page-text-content-title {
        /* font-size: 3rem;
            font-weight: 800; */
        color: var(--clr-primary-dark);
    }

    /* Divider */
    .title-divider {
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg,
                var(--clr-primary),
                var(--clr-primary-light));
        border-radius: 3px;
    }

    /* Paragraphs */
    .page-text-content-subtitle {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--clr-mid-gray);
        margin-bottom: 1.5rem;
    }

    /* Highlight Callout */
    .content-highlight {
        background: rgba(63, 45, 167, 0.08);
        border-left: 5px solid var(--clr-primary);
        padding: 20px 25px;
        border-radius: 10px;
        font-weight: 500;
        color: var(--clr-primary-dark);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .content-card {
            padding: 35px 25px;
        }

        /* .page-text-content-title {
                font-size: 1.7rem;
            } */

        .page-text-content-subtitle {
            font-size: 1rem;
        }
    }


    /* 1 Text Section End */



    /* Bullets Point Section Start */
    .bullet-point-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .bullet-point-section {
        background: var(--clr-off-white);
    }

    .bullet-point-title {
        /* font-size: 3rem;
            font-weight: 800; */
        color: var(--clr-primary-dark);
    }

    .edan-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(180deg,
                var(--clr-primary-dark),
                var(--clr-primary-light));
        border-radius: 50px;
    }

    .bullet-point-intro {
        font-size: 1.05rem;
        color: #5f6c75;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Benefit Card */
    .bullet-point-card {
        background: var(--clr-off-white);
        border-radius: 16px;
        padding: 25px 22px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
    }

    .bullet-point-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        /* background: #4AAB3D; */
        background: linear-gradient(180deg,
                var(--clr-primary-dark),
                var(--clr-primary-light));
    }

    .bullet-point-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

    /* Card Heading */
    .bullet-point-heading {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--clr-primary-dark);
    }

    /* Benefit List */
    .bullet-point-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .bullet-point-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-size: 0.95rem;
        color: #495057;
        line-height: 1.6;
    }

    .bullet-point-list li::before {
        /* content: "✔"; */
        content: "*";
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--clr-primary);
        font-weight: 700;
        font-size: 0.9rem;
    }

    /* Bullets Point Section End */







    /* Products Section Start */


    .products-section {
        background: var(--clr-off-white);
        border-radius: 80px;
    }

    .products-title {
        /* font-size: 3rem;
            font-weight: 800; */
        color: var(--clr-primary-dark);
    }

    .products-subtitle {
        font-size: 1.05rem;
        color: #5f6c75;
    }

    /* Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }

    /* Card */
    .product-card {
        background: var(--clr-white);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(63, 45, 167, .25);
        transition: all 0.35s ease;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }

    /* Image */
    .product-image {
        background: var(--clr-white);
        padding: 20px;
        text-align: center;
    }

    .product-image img {
        max-width: 220px;
        height: auto;
    }

    /* Body */
    .product-body {
        padding: 22px;
        flex-grow: 1;
    }

    .product-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--clr-primary-dark);
        margin-bottom: 10px;
    }

    .product-desc {
        font-size: 0.95rem;
        color: #5f6c75;
        margin-bottom: 15px;
    }

    /* Features */
    .product-features {
        list-style: none;
        padding: 0;
        margin: 0 0 18px 0;
    }

    .product-features li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: var(--clr-mid-gray);
        line-height: 1.6;
    }

    /* Tick Icon */
    .product-features li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--clr-primary);
    }

    /* Footer */
    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .product-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--clr-primary-light);
    }

    .product-btn {
        background: linear-gradient(180deg,
                var(--clr-primary-dark),
                var(--clr-primary-light));
        color: var(--clr-white);
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .product-btn:hover {
        background: var(--clr-primary-dark);
        color: var(--clr-white);
    }

    /* Products Section End */





    /* Contact Page Start */
    /* FORM WRAPPER */
    .contact-form {
        background: var(--clr-white);
        padding: 32px;
        border-radius: 22px;
        box-shadow: 0 20px 45px rgba(20, 3, 122, 0.08);
        max-width: 720px;
        margin: auto;
    }

    /* HEADER */
    .contact-form .form-header {
        margin-bottom: 24px;
    }

    .contact-form .form-header h4 {
        font-weight: 700;
        color: var(--clr-primary-dark);
        margin-bottom: 6px;
    }

    .contact-form .form-header p {
        font-size: 14px;
        color: var(--clr-mid-gray);
    }

    /* GRID */
    .contact-form .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* GROUP */
    .contact-form .form-group {
        display: flex;
        flex-direction: column;
    }

    .contact-form .form-group label {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--clr-primary-dark);
    }

    /* INPUTS */
    .contact-form .form-control {
        border-radius: 14px;
        padding: 14px 16px;
        border: 1px solid var(--clr-border-gray);
        font-size: 14px;
        transition: all 0.25s ease;
        background: #fafbff;
    }

    .contact-form .form-control:focus {
        outline: none;
        border-color: var(--clr-primary);
        box-shadow: 0 0 0 4px rgba(63, 45, 167, 0.12);
        background: #fff;
    }

    /* TEXTAREA */
    .contact-form textarea.form-control {
        resize: none;
    }

    /* SUBMIT BUTTON */
    .contact-form .form-submit-btn {
        width: 100%;
        margin-top: 26px;
        padding: 16px;
        border-radius: 18px;
        border: none;
        background: var(--clr-primary);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

    .contact-form .form-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(63, 45, 167, 0.35);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .contact-form .form-grid {
            grid-template-columns: 1fr;
        }

        .contact-form {
            padding: 24px;
        }
    }



 

    /* CARD */
    .contact-card {
        height: 100%;
        background: var(--clr-primary);
        border-radius: 22px;
        padding: 36px 30px;
        display: flex;
        gap: 22px;
        align-items: center;
        box-shadow: 0 22px 50px rgba(21, 3, 122, 0.219);
        transition: all 0.35s ease;
        text-decoration: none;
        color: inherit;
    }

    .contact-link:hover {
        transform: translateY(-6px);
        box-shadow: 0 32px 70px rgba(20, 3, 122, 0.16);
    }

    .contact-icon-wrap {
        width: 88px;
        height: 88px;
        min-width: 88px;
        border-radius: 20px;
        background: linear-gradient(135deg,
                rgba(63, 45, 167, 0.12),
                rgba(63, 45, 167, 0.04));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon-wrap svg {
        width: 56px;
        height: 56px;
    }

    .contact-text h6 {
        font-size: 15px;
        font-weight: 800;
        margin-bottom: 6px;
        color: var(--clr-white);
        letter-spacing: 0.3px;
    }

    .contact-text p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--clr-off-white);
        margin: 0;
    }

    /* @media (max-width: 991px) {
        .contact-strip {
            padding: 60px 0;
        }

        .contact-card {
            margin-bottom: 20px;
        }
    } */

    /* Contact Page End */



    /* =========================
   RESPONSIVE IMPROVEMENTS
   ========================= */
@media (min-width: 1440px) {
    .contact-strip {
        padding: 90px 0;
    }

    .contact-card {
        padding: 40px 34px;
        gap: 24px;
    }

    .contact-icon-wrap {
        width: 96px;
        height: 96px;
        min-width: 96px;
        border-radius: 22px;
    }

    .contact-icon-wrap svg {
        width: 58px;
        height: 58px;
    }

    .contact-text h6 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .contact-card {
        padding: 34px 28px;
        gap: 20px;
    }

    .contact-icon-wrap {
        width: 88px;
        height: 88px;
        min-width: 88px;
    }

    .contact-icon-wrap svg {
        width: 52px;
        height: 52px;
    }
}


@media (min-width: 992px) and (max-width: 1024px) {
    .contact-card {
        display: flex;
        flex-wrap: wrap;
        padding: 28px 24px;
        gap: 18px;
    }

    .contact-icon-wrap {
        width: 76px;
        height: 76px;
        min-width: 76px;
    }

    .contact-icon-wrap svg {
        width: 46px;
        height: 46px;
    }

    .contact-text h6 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 13px;
    }
}

/* Tablets (<= 991px) */
@media (max-width: 991px) {
    .contact-strip {
        padding: 50px 0;
    }

    .contact-card {
        padding: 28px 24px;
        gap: 18px;
    }

    .contact-icon-wrap {
        width: 72px;
        height: 72px;
        min-width: 72px;
        border-radius: 16px;
    }

    .contact-icon-wrap svg {
        width: 44px;
        height: 44px;
    }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
    .contact-strip {
        padding: 40px 0;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .contact-icon-wrap {
        margin-bottom: 14px;
    }

    .contact-text h6 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
    .contact-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .contact-icon-wrap {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .contact-icon-wrap svg {
        width: 38px;
        height: 38px;
    }
}































































        /* =========================================
           3. TEXT SLIDER SECTION STYLES
           ========================================= */
        .text-slider-section {
            padding: 5rem 0;
        }

        .text-slider-section__header {
            margin-bottom: 4rem;
            position: relative;
        }

        .text-slider-section__subtitle {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--clr-primary);
            background: linear-gradient(90deg, var(--clr-primary-light), var(--clr-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 40px;
        }

        /* Decorative line before subtitle */
        .text-slider-section__subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 2px;
            background: var(--clr-primary);
        }


        .text-slider-section__title--highlight {
            color: var(--clr-primary);
            position: relative;
            display: inline-block;
        }
        
        /* Animated underline for title */
        .text-slider-section__title--highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(63, 45, 167, 0.15);
            z-index: -1;
            border-radius: 4px;
        }

        /* =========================================
           4. SLIDER CONTAINER & CARDS
           ========================================= */
        .text-slider-section__wrapper {
            position: relative;
            padding: 20px 0;
        }

        /* The Card Item */
        .text-slider-section__card {
            background: var(--clr-white);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 15px;
            border: 1px solid var(--clr-border-gray);
            box-shadow: 0 10px 30px rgba(20, 3, 122, 0.05);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
        }

        /* Hover Effect: Lift and Glow */
        .text-slider-section__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(63, 45, 167, 0.15);
            border-color: rgba(63, 45, 167, 0.2);
        }

        /* Top decorative gradient bar */
        .text-slider-section__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .text-slider-section__card:hover::before {
            transform: scaleX(1);
        }

        /* Icon / Badge Area */
        .text-slider-section__icon-wrapper {
            width: 35px;
            height: 35px;
            background: var(--clr-light-gray);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--clr-primary);
            font-size: 1.5rem;
            transition: var(--transition-smooth);
        }

        .text-slider-section__card:hover .text-slider-section__icon-wrapper {
            background: var(--clr-primary);
            color: var(--clr-white);
            transform: rotate(-5deg) scale(1.1);
            box-shadow: 0 10px 20px rgba(63, 45, 167, 0.3);
        }

        /* Card Content */
        .text-slider-section__card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--clr-primary-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .text-slider-section__card-desc {
            font-size: 1rem;
            color: var(--clr-mid-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* "Read More" Link style */
        .text-slider-section__card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--clr-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .text-slider-section__card-link:hover {
            gap: 12px;
            color: var(--clr-primary-dark);
        }

        /* =========================================
           5. SLICK SLIDER CUSTOMIZATION
           ========================================= */
        
        /* Arrows */
        .text-slider-section .slick-prev,
        .text-slider-section .slick-next {
            width: 50px;
            height: 50px;
            background: var(--clr-white);
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            z-index: 10;
            transition: var(--transition-smooth);
            border: 1px solid var(--clr-border-gray);
        }

        .text-slider-section .slick-prev:before,
        .text-slider-section .slick-next:before {
            font-family: "Font Awesome 7 Free";
            font-weight: 900;
            color: var(--clr-primary);
            opacity: 1;
            font-size: 18px;
            line-height: 50px;
        }
        
        .text-slider-section .slick-prev:before { content: '\f104'; }
        .text-slider-section .slick-next:before { content: '\f105'; }

        .text-slider-section .slick-prev:hover,
        .text-slider-section .slick-next:hover {
            background: var(--clr-primary);
            border-color: var(--clr-primary);
        }
        
        .text-slider-section .slick-prev:hover:before,
        .text-slider-section .slick-next:hover:before {
            color: var(--clr-white);
        }

        .text-slider-section .slick-prev { left: -25px; }
        .text-slider-section .slick-next { right: -25px; }

        /* Dots */
        .text-slider-section .slick-dots {
            bottom: -50px;
        }

        .text-slider-section .slick-dots li button:before {
            font-size: 12px;
            color: var(--clr-primary);
            opacity: 0.3;
        }

        .text-slider-section .slick-dots li.slick-active button:before {
            opacity: 1;
            color: var(--clr-primary);
            transform: scale(1.2);
        }

        /* =========================================
           6. RESPONSIVE ADJUSTMENTS
           ========================================= */
        @media (max-width: 1399px) {
            .text-slider-section .slick-prev { left: -15px; }
            .text-slider-section .slick-next { right: -15px; }
        }

        @media (max-width: 991px) {
            .text-slider-section__title { font-size: 2.2rem; }
            .text-slider-section .slick-prev { left: 10px; }
            .text-slider-section .slick-next { right: 10px; }
            .text-slider-section .slick-prev,
            .text-slider-section .slick-next {
                top: auto;
                bottom: -60px;
                transform: translate(0, 0);
            }
            .text-slider-section .slick-prev { left: calc(50% - 60px); }
            .text-slider-section .slick-next { right: calc(50% - 60px); }
        }

        @media (max-width: 767px) {
            .text-slider-section__card {
                margin: 10px;
                padding: 1.8rem;
            }
            .text-slider-section__title { font-size: 1.8rem; }
            .text-slider-section__card-title { font-size: 1.2rem; }
        }
























/* ///////////////////////// accreditations page start ////////////////////////////////// */
.accreditations-hero {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
    padding: 100px 0 120px;
    color: var(--clr-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.accreditations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--clr-glass-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--clr-glass-dark) 0%, transparent 50%);
    opacity: 0.6;
}

.accreditations-hero .container {
    position: relative;
    z-index: 1;
}

.accreditations-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(20, 3, 122, 0.3);
}

.accreditations-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Stats Bar */
.accreditation-stats {
    background: var(--clr-white);
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(63, 45, 167, 0.15);
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--clr-border-gray);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--clr-mid-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Grid Section */
.accreditation-grid {
    padding: 40px 0 100px;
    background: var(--clr-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-glass-bg);
    border: 1px solid var(--clr-glass-border);
    color: var(--clr-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--clr-mid-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Card Design */
.accreditation-card-wrapper {
    perspective: 1000px;
}

.accreditation-card {
    background: var(--clr-white);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--clr-border-gray);
    position: relative;
}

.accreditation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.accreditation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(63, 45, 167, 0.12);
    border-color: var(--clr-primary-light);
}

.accreditation-card:hover::before {
    transform: scaleX(1);
}

/* Image Container with Glass Effect */
.accreditation-image-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--clr-light-gray) 0%, var(--clr-off-white) 100%);
    position: relative;
    overflow: hidden;
}

.accreditation-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--clr-glass-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    opacity: 0.5;
}

.accreditation-card:hover .accreditation-image-container::after {
    transform: translate(-50%, -50%) scale(1);
}

.accreditation-image-container img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.accreditation-card:hover .accreditation-image-container img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Verified Badge Overlay */
.verified-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.verified-overlay i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.accreditation-card:hover .verified-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Card Content */
.accreditation-content {
    padding: 30px;
}

.accreditation-org {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: var(--clr-glass-bg);
    border-radius: 20px;
    border: 1px solid var(--clr-glass-border);
}

.accreditation-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.accreditation-desc {
    color: var(--clr-mid-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Meta Information */
.accreditation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-mid-gray);
    background: var(--clr-light-gray);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.meta-item i {
    color: var(--clr-primary-light);
    font-size: 0.85rem;
}

/* Status Badge */
.accreditation-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-active {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.status-active::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #38a169;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-expired {
    background: rgba(221, 107, 32, 0.1);
    color: #dd6b20;
    border: 1px solid rgba(221, 107, 32, 0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Action Button */
.accreditation-action {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.accreditation-action:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(63, 45, 167, 0.3);
}

.accreditation-action.secondary {
    border-color: var(--clr-border-gray);
    color: var(--clr-mid-gray);
}

.accreditation-action.secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: transparent;
    box-shadow: none;
}

/* Empty State */
.accreditation-empty {
    text-align: center;
    padding: 100px 20px;
    background: var(--clr-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(63, 45, 167, 0.08);
}

.accreditation-empty-icon {
    width: 100px;
    height: 100px;
    background: var(--clr-glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid var(--clr-glass-border);
}

.accreditation-empty-icon i {
    font-size: 2.5rem;
    color: var(--clr-primary);
    opacity: 0.6;
}

.accreditation-empty h3 {
    color: var(--clr-primary-dark);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.accreditation-empty p {
    color: var(--clr-mid-gray);
}

/* Premium Modal */
.certificate-modal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 50px 100px rgba(20, 3, 122, 0.25);
    overflow: hidden;
}

.certificate-modal .modal-header {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
    color: var(--clr-white);
    padding: 24px 32px;
    border: none;
}

.certificate-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.certificate-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.certificate-modal .modal-body {
    padding: 0;
}

.modal-layout {
    display: flex;
    min-height: 500px;
}

.modal-image-section {
    flex: 1;
    background: var(--clr-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.modal-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, var(--clr-glass-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, var(--clr-glass-dark) 0%, transparent 50%);
    opacity: 0.4;
}

.modal-image-section img {
    max-height: 400px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.modal-details-section {
    flex: 1;
    padding: 40px;
    background: var(--clr-white);
}

.detail-block {
    margin-bottom: 28px;
}

.detail-block:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    font-size: 0.9rem;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--clr-primary-dark);
    font-weight: 500;
    line-height: 1.5;
}

.detail-value.text-success {
    color: #38a169;
}

.detail-value.text-warning {
    color: #dd6b20;
}

.detail-description {
    color: var(--clr-mid-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    color: var(--clr-white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition-smooth);
    border: none;
    justify-content: center;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(63, 45, 167, 0.4);
    color: var(--clr-white);
}

/* Responsive */
@media (max-width: 991px) {
    .accreditations-hero h1 {
        font-size: 2.25rem;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--clr-border-gray);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .modal-layout {
        flex-direction: column;
    }
    
    .modal-image-section {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .accreditations-hero {
        padding: 60px 0 80px;
    }
    
    .accreditations-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
/* ///////////////////////// accreditations page end ////////////////////////////////// */



































/* ///////////////////////// 404 page start ////////////////////////////////// */

        .section-404 {
            background: var(--clr-off-white);
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 20s infinite ease-in-out;
        }
        
        .bg-circle-1 {
            width: 600px;
            height: 600px;
            background: var(--clr-glass-glow);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .bg-circle-2 {
            width: 400px;
            height: 400px;
            background: var(--clr-glass-dark);
            bottom: -100px;
            left: -100px;
            animation-delay: -5s;
        }
        
        .bg-circle-3 {
            width: 300px;
            height: 300px;
            background: var(--clr-primary-light);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.1;
            animation-delay: -10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }
        
        /* Grid Pattern Overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(63, 45, 167, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(63, 45, 167, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }
        
        /* Main Container */
        .error-container {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px;
            max-width: 800px;
            width: 90%;
        }
        
        /* 404 Number */
        .error-code {
            font-size: 12rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            margin-bottom: 10px;
            animation: glitch 3s infinite;
        }
        
        .error-code::before,
        .error-code::after {
            content: '404';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.8;
        }
        
        .error-code::before {
            animation: glitch-1 2s infinite linear alternate-reverse;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
            transform: translate(-2px, -2px);
        }
        
        .error-code::after {
            animation: glitch-2 3s infinite linear alternate-reverse;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
            transform: translate(2px, 2px);
        }
        
        @keyframes glitch {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-5px, 0); }
            94% { transform: translate(5px, 0); }
            96% { transform: translate(0); }
        }
        
        @keyframes glitch-1 {
            0%, 100% { transform: translate(-2px, -2px); }
            20% { transform: translate(2px, 0); }
            40% { transform: translate(-2px, 2px); }
            60% { transform: translate(2px, -2px); }
            80% { transform: translate(0, 2px); }
        }
        
        @keyframes glitch-2 {
            0%, 100% { transform: translate(2px, 2px); }
            20% { transform: translate(-2px, 0); }
            40% { transform: translate(2px, -2px); }
            60% { transform: translate(-2px, 2px); }
            80% { transform: translate(0, -2px); }
        }
        
        /* Error Icon */
        .error-icon {
            width: 120px;
            height: 120px;
            background: var(--clr-white);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 
                0 20px 60px rgba(63, 45, 167, 0.15),
                0 0 0 1px rgba(144, 170, 255, 0.3);
            position: relative;
            animation: icon-float 6s ease-in-out infinite;
        }
        
        .error-icon::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 33px;
            background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
            z-index: -1;
            opacity: 0;
            transition: var(--transition-smooth);
        }
        
        .error-container:hover .error-icon::before {
            opacity: 0.3;
        }
        
        @keyframes icon-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .error-icon i {
            font-size: 3rem;
            color: var(--clr-primary);
        }
        
        /* Content */
        .error-content {
            /* background: var(--clr-white);
            border-radius: 24px;
            box-shadow: 
            0 40px 80px rgba(63, 45, 167, 0.1),
            0 0 0 1px rgba(144, 170, 255, 0.2);
            backdrop-filter: blur(20px); */
            padding: 50px 40px;
            /* border: 1px solid rgba(255, 255, 255, 0.5); */
        }
        
        .error-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--clr-glass-bg);
            border: 1px solid var(--clr-glass-border);
            color: var(--clr-primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }
        
        .error-badge i {
            font-size: 0.9rem;
        }
        
        .error-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--clr-primary-dark);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        .error-message {
            color: var(--clr-mid-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            /* max-width: 500px; */
            margin: 0 auto 30px;
        }
        
        /* Search Box */

        
        /* Action Buttons */
        .error-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
            color: var(--clr-white);
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(63, 45, 167, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(63, 45, 167, 0.4);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: transparent;
            color: var(--clr-primary);
            border: 2px solid var(--clr-primary);
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-smooth);
        }
        
        .btn-secondary:hover {
            background: var(--clr-primary);
            color: var(--clr-white);
            transform: translateY(-3px);
        }
        
        /* Quick Links */
        .quick-links {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--clr-border-gray);
        }
        
        .quick-links-title {
            font-size: 0.85rem;
            color: var(--clr-mid-gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .quick-links-grid {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .quick-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--clr-light-gray);
            color: var(--clr-primary-dark);
            border-radius: 10px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition-smooth);
        }
        
        .quick-link:hover {
            background: var(--clr-primary);
            color: var(--clr-white);
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .error-code {
                font-size: 8rem;
            }
            
            .error-icon {
                width: 100px;
                height: 100px;
            }
            
            .error-content {
                padding: 35px 25px;
            }
            
            .error-title {
                font-size: 1.5rem;
            }
            
            .error-actions {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .error-code {
                font-size: 6rem;
            }
            
            .error-container {
                padding: 20px;
            }
        }
/* ///////////////////////// 404 page end ////////////////////////////////// */