﻿/********** Template CSS **********/
/* Root variables */
:root {
    --primary: #5B8C51;
    --secondary: linear-gradient(90deg, #fef9c3, #fde047, #f59e0b);
    --light: #F7F7F7;
    --dark: #404A3D;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* Font weights with colors */
.fw-bold {
    font-weight: 700 !important;
    color: white;
}

.fw-medium {
    font-weight: 600 !important;
    color: white;
}

.fw-semi-bold {
    font-weight: 500 !important;
    color: white;
}

/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

/* Buttons */
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    background: linear-gradient(90deg, #fdd835, #fbbf24, #ff9800);
}

.btn-secondary,
.btn-outline-secondary:hover {
    background-image: linear-gradient(250deg, #f17600 19%, #fdc900 100%);
}

/* Button sizes */
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Carousel captions */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: #FFDB58;
    border: 10px solid #FFDB58;
}

/* Page header */
.page-header {
    background: url(../img/header3.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }

/* Section Title */
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

    .section-title::before {
        position: absolute;
        content: "";
        width: calc(100% + 80px);
        height: 2px;
        top: 5px;
        left: -40px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title::after {
        position: absolute;
        content: "";
        width: calc(100% + 120px);
        height: 2px;
        bottom: 6px;
        left: -60px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title.text-start::before {
        width: calc(100% + 40px);
        left: 0;
    }

    .section-title.text-start::after {
        width: calc(100% + 60px);
        left: 0;
    }

/* About experience */
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Product item */
.product-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .product-item .product-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        padding-top: 60px;
        transition: .5s;
    }

    .product-item:hover .product-overlay {
        opacity: 1;
        padding-top: 0;
    }

/* Team */
.team-item {
    position: relative;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .team-item .btn {
        border-color: transparent;
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    }

/* Testimonial */
.testimonial-img {
    position: relative;
    min-height: 400px;
}

    .testimonial-img::after {
        position: absolute;
        content: "\f10d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 200px;
        color: #EEEEEE;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .testimonial-img img {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 100px;
    }

        .testimonial-img img:nth-child(1) {
            top: 0;
            left: 0;
        }

        .testimonial-img img:nth-child(2) {
            top: 60%;
            left: 20%;
        }

        .testimonial-img img:nth-child(3) {
            top: 20%;
            left: 60%;
        }

        .testimonial-img img:nth-child(4) {
            bottom: 0;
            right: 0;
        }

        .testimonial-img img .animated.pulse {
            animation-duration: 2s;
        }

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin-right: 15px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        border-radius: 45px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
        font-size: 22px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--secondary);
            color: var(--dark);
        }

/* Footer */
.footer {
    color: #B0B9AE;
}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #B0B9AE;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--light);
            letter-spacing: 1px;
            box-shadow: none;
        }

/* Guest section */
.geust_section {
    height: 150px;
    width: 150px;
    border: 3px dashed white;
    border-radius: 50%;
}

.geust_section_outer {
    border-radius: 17px;
}

/* Objective item */
.objective-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

    .objective-item i {
        position: absolute;
        left: 0;
        top: 4px;
        color: green;
    }

/* News Head */
.news_head {
    font-size: 18px;
    position: relative;
    background-image: linear-gradient(250deg, #f17600 19%, #fdc900 100%);
    color: #fff;
    padding: 10px 20px;
    clip-path: polygon(0 0, 79% 0, 90% 50%, 80% 100%, 0 100%);
}

/* News Ticker */
.news-ticker {
    overflow: hidden;
    position: relative;
    height: 40px;
}

    .news-ticker ul {
        display: flex;
        animation: ticker 20s linear infinite;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .news-ticker li {
        flex: 0 0 auto;
        margin-right: 50px;
        white-space: nowrap;
        font-size: 16px;
        line-height: 40px;
        color: black;
    }

/* Ticker animation */
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* -------- Responsive adjustments -------- */

/* Small devices (mobile phones, less than 576px) */
@media (max-width: 575.98px) {
    .btn-square {
        width: 32px;
        height: 32px;
    }

    .btn-sm-square {
        width: 28px;
        height: 28px;
    }

    .btn-lg-square {
        width: 40px;
        height: 40px;
    }

    .geust_section {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .news_head {
        font-size: 14px;
        padding: 8px 15px;
        clip-path: polygon(0 0, 85% 0, 95% 50%, 85% 100%, 0 100%);
    }

    .news-ticker li {
        font-size: 14px;
        margin-right: 25px;
    }

    .section-title {
        font-size: 18px;
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 14px;
    }

    .testimonial-img {
        min-height: 250px;
    }

        .testimonial-img img {
            width: 70px;
            height: 70px;
        }
}

/* Medium devices (tablets, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .btn-square {
        width: 34px;
        height: 34px;
    }

    .btn-sm-square {
        width: 30px;
        height: 30px;
    }

    .btn-lg-square {
        width: 44px;
        height: 44px;
    }

    .geust_section {
        width: 120px;
        height: 120px;
        border-width: 2.5px;
    }

    .news_head {
        font-size: 16px;
        padding: 9px 18px;
        clip-path: polygon(0 0, 82% 0, 92% 50%, 82% 100%, 0 100%);
    }

    .news-ticker li {
        font-size: 15px;
        margin-right: 35px;
    }

    .section-title {
        font-size: 20px;
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 16px;
    }

    .testimonial-img {
        min-height: 300px;
    }

        .testimonial-img img {
            width: 80px;
            height: 80px;
        }
}

/* Large devices (desktops, 768px and up) */
@media (min-width: 768px) {
    .btn-square {
        width: 38px;
        height: 38px;
    }

    .btn-sm-square {
        width: 32px;
        height: 32px;
    }

    .btn-lg-square {
        width: 48px;
        height: 48px;
    }

    .geust_section {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    .news_head {
        font-size: 18px;
        padding: 10px 20px;
        clip-path: polygon(0 0, 79% 0, 90% 50%, 80% 100%, 0 100%);
    }

    .news-ticker li {
        font-size: 16px;
        margin-right: 50px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
    }

    .testimonial-img {
        min-height: 400px;
    }

        .testimonial-img img {
            width: 100px;
            height: 100px;
        }
}


@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .news_head {
        font-size: 16px;
        padding: 8px;
    }

    .news-ticker li {
        font-size: 14px;
        margin-right: 30px;
    }
}

/* Application Attachments Start */
.attachment-card {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    margin: 10px;
    width: 280px;
    max-width: 400px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 340px;
    flex: 0 0 auto;
}

    .attachment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(90, 45, 130, 0.25);
    }

/* Ribbon */
.date-ribbon {
    position: absolute;
    top: 15px;
    left: auto;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    padding: 6px 18px;
    transform: rotate(-45deg);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);



    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;

}

/* Big Icon Watermark */
.icon-bg {
    font-size: 80px;
    color: rgba(195, 179, 210, 0.08);
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Text */
.card-content {
    padding: 0 15px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

    .card-content h6 {
        font-size: 17px;
        color: #333;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 14px;
    }

/* Button */
.btn-download {
    background: linear-gradient(90deg, #d4b801, #377e00);
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
}

    .btn-download:hover {
        background: linear-gradient(90deg, #377e00, #d4b801);
        color: #fff;
        box-shadow: 0 4px 12px rgba(37, 117, 252, 0.4);
    }



/* Responsive */
@media (max-width: 576px) {
    .icon-bg {
        font-size: 60px;
    }

    .card-content h6 {
        font-size: 15px;
    }

    .attachment-card {
        min-height: auto;
        margin: 10px auto;
        max-width: 100%;
    }
}

/* swiper */
.swiper {
    width: 100%;
    padding: 20px 10px;
    overflow: hidden !important;
    background: #fff;
    box-sizing: border-box;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    padding: 15px;
    margin: 10px;
    height: auto; /* Auto height */
    width: auto !important; /* Width auto */
    min-height: 100px; /* base height */
    min-width: 280px; /* reduced for smaller devices */
    box-sizing: border-box;
}

    .swiper-slide:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    border-radius: 50%;
    padding: 10px 12px;
    color: #377e00;
    font-weight: 800;
    background-color: white;
}

.arrow {
    height: 50px;
}

.swiper-button-next {
    position: absolute;
    top: 85% !important;
    right: 0px;
    left: 50%;
}

.swiper-button-prev {
    top: 85% !important;
    left: 45%;
}

@media (max-width: 767px) {
    .swiper-button-next {
        left: 50%;
    }

    .swiper-button-prev {
        left: 40%;
    }

    .swiper-slide {
        min-width: 220px;
        padding: 10px;
        margin: 8px;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        min-width: 180px;
        margin: 6px;
    }
}

@media (max-width: 335px) {
    .swiper-button-next {
        left: 55%;
    }

    .swiper-button-prev {
        left: 35%;
    }
}

/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .07);
    width: 100%;
    max-width: 396px;
    margin: 10px auto;
    box-sizing: border-box;
}

    .service-item .service-img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 8px;
        overflow: hidden;
        z-index: -1;
    }

        .service-item .service-img img {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-item .service-img::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, .5);
            border-radius: 10px;
            z-index: 1;
        }

        .service-item .service-img::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: #FFFFFF;
            transition: .5s ease-out;
            z-index: 2;
        }

    .service-item:hover .service-img::after {
        width: 0;
        left: auto;
        right: 0;
    }

    .service-item .service-text .service-icon {
        width: 140px;
        height: 140px;
        padding: 15px;
        margin-top: -70px;
        margin-bottom: 40px;
        background: #FFFFFF;
        border-radius: 140px;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .service-item .service-text h5,
    .service-item .service-text p {
        transition: .5s;
        text-align: center;
        margin: 0 10px;
    }

    .service-item:hover .service-text h5,
    .service-item:hover .service-text p {
        color: #FFFFFF;
    }

    .service-item .service-text .btn {
        color: var(--secondary);
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .25);
        display: block;
        margin: 10px auto 0 auto;
        max-width: 150px;
        text-align: center;
    }

        .service-item .service-text .btn:hover {
            color: var(--dark);
            background: var(--secondary);
        }

@media (max-width: 768px) {
    .section-title::before,
    .section-title::after {
        display: none !important;
    }

    .service-item {
        max-width: 100%;
        margin: 15px auto;
    }

        .service-item .service-text h5,
        .service-item .service-text p {
            font-size: 16px;
            margin: 0 5px;
        }

        .service-item .service-text .service-icon {
            width: 100px;
            height: 100px;
            margin-top: -50px;
            margin-bottom: 30px;
            border-radius: 100px;
            padding: 10px;
        }

        .service-item .service-text .btn {
            max-width: 120px;
        }
}

/* datatable start */
table.dataTable thead {
    background-color: #404A3D !important;
    color: white;
}

table.dataTable tbody tr:hover {
    background-color: #feffdc !important;
}

/* Responsive datatable */
@media (max-width: 768px) {
    table.dataTable {
        width: 100% !important;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        table.dataTable thead,
        table.dataTable tbody,
        table.dataTable tr,
        table.dataTable th,
        table.dataTable td {
            display: block;
            width: 100%;
        }

            table.dataTable thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

            table.dataTable tbody tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
                padding: 10px;
                border-radius: 8px;
            }

            table.dataTable tbody td {
                text-align: right;
                padding-left: 50%;
                position: relative;
                white-space: normal;
            }

                table.dataTable tbody td::before {
                    content: attr(data-label);
                    position: absolute;
                    left: 10px;
                    width: 45%;
                    padding-left: 15px;
                    font-weight: bold;
                    text-align: left;
                    white-space: nowrap;
                }
}


.btn-download {
    background-color: #847a34;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    padding: 5px 15px;
    transition: 0.3s;
    font-size: 16px;
}

    .btn-download:hover {
        background-color: #2c5f2e;
        color: #fff;
    }

.table td {
    font-size: 14px;
}

.table td,
.table th {
    white-space: normal !important;
    word-break: break-word;
    vertical-align: middle;
}

/* datatable end */

/* Login card animation */
.login-card {
    max-width: 1100px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    animation: fadeInUp 1s ease-in-out;
    padding: 20px;
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Login button hover */
.login-btn {
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    padding: 10px 20px;
}

    .login-btn:hover {
        background: #0d6efd;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Role cards */
.role-card {
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .role-card i {
        font-size: 30px;
        color: green;
        margin-bottom: 10px;
    }

    .role-card p {
        font-size: 14px;
        margin: 0;
        color: #333;
        font-weight: 500;
    }

    .role-card:hover {
        background: #eed00d;
        color: #fff;
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    }

        .role-card:hover i,
        .role-card:hover p {
            color: #fff;
        }

.shadow-card {
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

    .shadow-card:hover {
        box-shadow: 0 0 30px 8px rgba(0, 0, 0, 0.35);
        transform: translateY(-5px);
    }

.scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Slider */
.slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.12s ease-in-out;
    gap: 20px;
    min-width: max-content;
    padding: 10px;
    animation: scroll-left 10s linear infinite;
    animation-play-state: running; /* default state */
}

    .slider-track:hover {
        animation-play-state: paused; /* pause on hover */
    }


/*.attachment-card {
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
    padding: 15px;
    margin: 5px;
}*/

@media (max-width: 1200px) {
    .attachment-card {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 992px) {
    .attachment-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .attachment-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }
}

.card-inner {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    
}



.card-inner h3 {
    font-size: 20px;
    margin: 50px 0 10px;
    color: #333;


}

.card-inner h6 {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.card-inner p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px;
    background: linear-gradient(90deg, #fef9c3, #fde047, #f59e0b);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
    width: 100%;
}

    .btn-download:hover {
        background: linear-gradient(90deg, #fef9c3, #fde047, #f59e0b);
    }

.swiper-slide {
    text-align: center;
    margin: auto !important;
}

    .swiper-slide img {
        max-height: 80px;
        max-width: 100px;
        object-fit: contain;
    }

/* Arrow button base styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: linear-gradient(145deg, gold, #ffea00); /* Gold + Yellow gradient */
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

    /* Icon inside arrows */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
    }

    /* Optional hover effect */
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: linear-gradient(145deg, #ffd700, #fff176); /* Brighter yellow/gold on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }


body {
    background-image: url('../img/about_bkimg.png');
    background-size: cover; /* Ensures the background covers the whole body */
    background-repeat: no-repeat; /* Prevents image repetition */
    background-position: center; /* Centers the background image */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* keep only if absolutely needed */

   
}







/* Date Ribbon Style */

/* Download Button stays at bottom */
.btn-download {
    margin-top: auto;
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

    .btn-download:hover {
        background-color: #0056b3;
    }

/* Responsive Behavior */
@media (max-width: 768px) {
    #sliderTrack {
        flex-direction: column;
        align-items: center;
    }

    .attachment-card {
        width: 90%;
    }
}


#sliderTrack {
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 15px;
}

/* Navbar background with gradient */
.custom-navbar {
    background-image: linear-gradient(90deg, #ff7e02 10%, #ffcc01 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

    /* Navbar links */
    .custom-navbar .nav-link {
        color: #fff !important;
        font-weight: bold;
        font-size: 15px;
        position: relative;
        transition: all 0.3s ease;
        padding: 10px 18px !important;
        margin: 0 5px;
        border-radius: 10px;
    }

        /* Hover effect */
        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            background: rgba(255, 255, 255, 0.15);
            color: #fff !important;
            transform: translateY(-2px);
        }

/* Dropdown styling */
.custom-dropdown {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

    .custom-dropdown .dropdown-item {
        padding: 10px 20px;
        transition: background 0.3s ease;
        font-weight: 500;
    }

        .custom-dropdown .dropdown-item:hover {
            background: #f8f9fa;
            color: #FFDB58;
        }

/* Mobile navbar button */
.navbar-toggler {
    border: none;
    background: #fff;
    padding: 6px 10px;
    border-radius: 4px;
}

/* Hover to open dropdown on desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ========== CARD BASE STYLING ========== */
.card-box {
    padding: 30px 20px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #2e2e2e;
    background: #fff;
}

/* ========== COLOR THEMES ========== */
.card-yellow {
    background: linear-gradient(135deg, #FFEB3B, #FBC02D);
}

    .card-yellow:hover {
        background: linear-gradient(135deg, #FFF176, #F9A825);
    }

.card-mustard {
    background: linear-gradient(135deg, #FDD835, #FFB300);
}

    .card-mustard:hover {
        background: linear-gradient(135deg, #FFEE58, #FFA726);
    }

/* ========== IMAGE ========== */
.guest-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: #fff;
    margin-bottom: 15px;
}

/* ========== TEXT ========== */
.card-box h6 {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
}

.card-box span {
    font-size: 0.875rem;
    color: #333;
    display: block;
}

/* ========== HOVER EFFECTS ========== */
.card-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

    .card-box:hover h6 {
        color: #ffffff;
    }

    .card-box:hover span {
        color: #fdfdfd;
    }

    .card-box:hover .guest-img {
        border-color: #fff59d;
    }

/* ========== SHINE EFFECT ========== */
.card-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.2) 100%);
    transform: rotate(25deg);
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.card-box:hover::before {
    left: 100%;
    top: 100%;
    transition: all 0.8s ease-in-out;
    opacity: 1;
}

/* ========== RIPPLE GLOW EFFECT ========== */
.card-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-out;
    pointer-events: none;
}

.card-box:hover::after {
    width: 300%;
    height: 300%;
    opacity: 0;
}

/* ========== ENTRANCE ANIMATION ========== */
@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide {
    animation: slideFadeIn 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.swiper-pagination-bullet {
    background: #ccc !important;
}

.swiper-pagination-bullet-active {
    background: #FFA500 !important;
}

/* Responsive typography and spacing */

@media (max-width: 1200px) {
    .btn-download {
        font-size: 15px;
        padding: 10px 18px;
    }

    .login-btn {
        font-size: 16px;
        padding: 8px 16px;
    }

    .role-card i {
        font-size: 28px;
    }

    .role-card p {
        font-size: 13px;
    }

    .card-inner h3 {
        font-size: 18px;
        margin: 40px 0 8px;
    }
}

@media (max-width: 992px) {
    .btn-download {
        font-size: 14px;
        padding: 9px 16px;
    }

    .login-btn {
        font-size: 15px;
        padding: 8px 14px;
    }

    .role-card i {
        font-size: 26px;
    }

    .role-card p {
        font-size: 13px;
    }

    .card-inner h3 {
        font-size: 17px;
        margin: 35px 0 7px;
    }
}

@media (max-width: 768px) {
    .btn-download {
        font-size: 13px;
        padding: 8px 14px;
    }

    .login-btn {
        font-size: 14px;
        padding: 7px 12px;
    }

    .role-card i {
        font-size: 24px;
    }

    .role-card p {
        font-size: 12px;
    }

    .card-inner h3 {
        font-size: 16px;
        margin: 30px 0 6px;
    }
}

@media (max-width: 480px) {
    .btn-download {
        font-size: 12px;
        padding: 7px 12px;
    }

    .login-btn {
        font-size: 13px;
        padding: 6px 10px;
    }

    .role-card i {
        font-size: 22px;
    }

    .role-card p {
        font-size: 11px;
    }

    .card-inner h3 {
        font-size: 15px;
        margin: 25px 0 5px;
    }
}

/* Auto-scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-scroll-wrapper {
    overflow: hidden;
    position: relative;
}


/* Wrapper allows horizontal scrolling */
/*.slider-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}*/







/* Optional: hide scrollbar for a cleaner look (optional) */
/*.slider-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}*/
