@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
    --accent: #0b67b2;
    --accent-light: #06b6d4;
    --muted: #6b7280;
    --dark: #0f172a;
    --bg: #f8fafc;
    font-family: "Marcellus", serif;
}

h1, h2, h3, h4, h5 {
    font-family: "Marcellus", serif !important;
}

body {
    /* background: var(--bg); */
    color: var(--dark);
    scroll-behavior: smooth;
}

/* Navbar */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b67b2, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

nav a {
    margin-left: 18px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
}

    nav a:hover {
        color: var(--accent);
    }

/* Hero / Banner */
.hero {
    color: #fff;
    border-radius: 12px;
    padding: 80px 40px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .hero p {
        color: #e0f2fe;
        margin-top: 12px;
        max-width: 650px;
    }

    .hero .btn {
        font-weight: 700;
        margin-top: 20px;
        border-radius: 50px;
        font-size: 15px;
        padding: 12px 25px;
    }

    .hero .years {
        position: absolute;
        right: 36px;
        bottom: 80px;
        background: #fff;
        color: var(--accent);
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

/* About Section */
.about {
    margin-top: 50px;
    position: relative;
}

    .about p {
        font-size: 17px !important;
        line-height: 28px;
    }

    .about ul li {
        font-size: 17px;
        margin-top: 5px;
    }

        .about ul li::marker {
            color: #1c95b6;
        }

    .about img {
        border-radius: 12px;
        width: 100%;
        box-shadow: 0 6px 18px rgba(11,103,178,0.1);
    }

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgb(226 226 226);
    height: 100%;
}

    .card:hover {
        transform: translateY(-5px);
    }


/* Videos */
#videos iframe {
    border-radius: 10px;
    width: 100%;
    height: 220px;
}

/* Contact Section */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    height: 100%;
}

    .contact-card i {
        font-size: 1.5rem;
        color: #333;
        margin-right: 10px;
    }

    .contact-card p a {
        color: #333;
    }

    .contact-card p {
        margin-bottom: 10px;
    }

.social-icons a {
    color: #333 !important;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    flex-wrap: wrap;
}

    .social-icons ul li {
        list-style: none;
    }

        .social-icons ul li a {
            display: inline-block;
            height: 45px;
            width: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #333;
            color: #fff;
        }

            .social-icons ul li a i {
                font-size: 16px;
                margin-right: 0;
                color: #fff;
            }

            .social-icons ul li a:hover {
                box-shadow: 2px 5px 10px #333;
            }

.social-icons a:hover {
    color: var(--accent-light);
}

footer {
    margin-top: 0px;
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 30px 0;
}


.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(11, 103, 178, 0.15);
    }

    .service-card .icon i {
        color: #0b67b2;
        transition: color 0.3s ease;
    }

    .service-card:hover .icon i {
        color: #06b6d4;
    }

.trusted-list {
    max-width: 100%;
    width: 234px;
    margin-left: auto;
    border-radius: 10px;
    background-color: #fff;
    padding-inline: 10px;
    padding-block: 4px;
}

    .trusted-list ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0;
    }

        .trusted-list ul li {
            list-style: none;
        }

.icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons-slider {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .icons-slider a, ul.icons-list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 20px;
        font-size: 20px;
        color: #fff;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
        margin: 0 auto 8px auto;
    }

.social-icons ul li {
    list-style: none;
    margin: 5px 10px;
}


.icons-slider span, ul.icons-list li span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    display: block;
}

ul.icons-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0;
    flex-wrap: wrap;
}

    ul.icons-list li {
        list-style: none;
        margin-top: 10px;
        flex-basis: 80px;
        /* flex-grow: 1; */
    }

        .icons-slider a, ul.icons-list li a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            border-radius: 20px;
            font-size: 20px;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin: 0 auto 8px auto;
        }

.icons-slider:hover {
    transform: translateY(-5px);
    border-radius: 20px;
}

.socialmobilebox .icons-slider a:hover {
    box-shadow: 0 6px 12px rgba(150, 150, 150, 0.116);
}

.socialmobilebox .icons-slider span, ul.icons-list li span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    display: block;
}



.get-directions {
    text-align: center;
    margin-top: 15px;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f6fdff00;
    color: #212121 !important;
    padding: 4px 18px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
}


    .direction-btn i {
        font-size: 1rem;
        color: #212121;
    }

    .direction-btn:hover {
        background: #157a96;
        transform: translateY(-2px);
        color: #fff !important;
    }

        .direction-btn:hover i {
            color: #fff !important;
        }
/*-----Edit Btn*/
.editbtn {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 40px;
    width: 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s all;
    border: 1px solid #fff;
}

    .editbtn:hover {
        background-color: #333;
        border: 1px solid #fff;
    }

    .editbtn i {
        color: #000;
    }

    .editbtn:hover i {
        color: #fff;
    }

#editAboutBtn {
    height: 40px;
    width: 40px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s all;
    border: 1px solid #545454;
    position: absolute;
    left: 0;
    top: 35px;
}

    #editAboutBtn i {
        color: #fff;
    }

.form-control {
    border-radius: 15px;
    padding: 12px 15px;
    height: auto;
    border-color: #001e4f;
    margin-bottom: 0;
}

    .form-control:focus {
        /* outline: none;
    box-shadow: none; */
        border-color: #000;
    }

.modal.fade .modal-dialog, .modal-content {
    border-radius: 25px;
}

.modal-body {
    overflow: hidden;
    padding: 25px !important;
}

.modal-footer button {
    border-radius: 50px;
    padding: 10px 30px;
    line-height: 11px;
}

button#addServiceBtn {
    border-radius: 50px;
}

.modal-footer button:last-child {
    border-radius: 50px;
    background-color: #1c95b6;
}

.modal-footer button:hover:last-child {
    background-color: #117a97;
}

.edit-btns button {
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.edit-btns button {
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.edit-btns {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
}

    .edit-btns i {
        font-size: 14px;
    }

.service-card .item {
    min-height: 120px;
}

/* Odd cards border color */
#serviceList .col-md-6:nth-child(odd) .service-card {
    background-color: #fafdff;
    border: 1px solid #0d6efd !important;
}

/* Even cards border color */
#serviceList .col-md-6:nth-child(even) .service-card {
    border: 1px solid #d379f6 !important;
    background-color: #fbf7fd;
}

.services-provided {
    border: 1px solid #1c95b6;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    background-color: #fff;
}

    .services-provided h3 {
        color: #000;
    }

a {
    text-decoration: none;
}

.services-provided ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

    .services-provided ul li {
        list-style: none;
        margin: 5px;
        margin-top: 15px;
    }

        .services-provided ul li a {
            color: #252525;
            padding: 6px 20px;
            border-radius: 15px;
            background-color: #dcdcdc;
            font-size: 16px;
        }



.services-provided {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .services-provided h3 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #003566;
    }


.edit-services-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50px;
    background: #003566;
    color: #fff;
}

    .edit-services-btn:hover {
        background: #1cb5e0;
    }

button#addNewServiceBtn {
    border-radius: 0px 15px 15px 0 !important;
}

/* Modal scroll area */
.modal-body-scroll {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 1rem;
}



.services-provided {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .services-provided h3 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #003566;
    }

    .services-provided li a:hover {
        background: #1cb5e0;
        color: #fff;
    }

.edit-services-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50px;
    background: #003566;
    color: #fff;
}

    .edit-services-btn:hover {
        background: #1cb5e0;
    }

/* Modal scroll area */
.modal-body-scroll {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 1rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}










.modal-content {
    overflow: hidden;
}

#toggleSectionBtn, #addVideoBtn {
    border-radius: 50px;
}

.video-btns {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 6px;
}

.delete-video, .edit-video {
    border: none;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

p.mt-2.text-secondary.small {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-block: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #333 !important;
}


button#confirmDeleteBtn {
    background-color: #ca0000;
}

.delete-video, .delete-service, .delete, .delete-product, .delete-blog, .delete-service {
    background-color: #ca0000 !important;
    color: #fff !important;
    /* display: none !important; */
}

.edit-service, .edit-video, .edit, .edit-blog, .edit-product, .edit-service {
    background-color: #1c95b6 !important;
    color: #fff !important;
    /* display: none !important; */
}

#editAboutBtn, .editbtn, button.btn.btn-outline-primary, .edit-services-btn, .btn-outline-secondary {
    /* display: none !important; */
}

.btn-danger {
    background-color: #dc3545 !important;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.blog-card {
    border: 1px solid rgb(226 226 226);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.0);
    transition: all .3s;
    position: relative;
    padding: 0 !important;
}

.blog-text {
    padding: 20px;
    min-height: 200px;
}

    .blog-text .btn {
        padding: 8px 35px;
    }

    .blog-text p {
        padding-block: 10px;
        font-size: 15px;
    }

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-btns {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 9;
}

    .blog-btns button {
        border: none;
        background: rgba(0,0,0,0.06);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

        .blog-btns button:hover {
            background: #0d6efd;
            color: #fff;
        }


.delete-video, .delete-service, .delete-blog, .delete-product {
    background-color: #ca0000 !important;
    color: #fff;
}

.edit-service, .edit-video, .edit-blog, .edit-product {
    background-color: #1c95b6 !important;
    color: #fff !important;
}

.btn {
    border-radius: 50px !important;
}


.blog-img-box {
    position: relative;
}

    .blog-img-box span {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #1c95b6 !important;
        color: #fff !important;
        border-radius: 0px 15px 0px 0px;
        padding: 8px 20px;
        display: inline-block;
    }

#follow-us {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/flow.avif') center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

    #follow-us::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1.2px;
        height: 100%;
        background-color: #7e7e7e;
    }

    #follow-us .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(311deg, rgb(17 17 17 / 67%), rgb(6 182 212 / 45%));
        border-radius: 15px 15px 0 0;
    }

.follow-btn {
    background: linear-gradient(90deg, #06b6d4, #003566);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 181, 212, 0.045);
    transition: all 0.3s ease;
}

    .follow-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(6, 181, 212, 0.385);
        color: #fff;
    }


/* --- Rating Modal --- */
.rating-input {
    direction: rtl;
    display: inline-flex;
    justify-content: center;
}

    .rating-input input {
        display: none;
    }

    .rating-input label {
        font-size: 2rem;
        color: #ccc;
        cursor: pointer;
        transition: color 0.2s;
    }

        .rating-input input:checked ~ label,
        .rating-input label:hover,
        .rating-input label:hover ~ label {
            color: #ffcc00;
        }



.flow-us-sec {
    text-align: center;
}



.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgb(226 226 226);
    box-shadow: none;
}



    .contact-card input,
    .contact-card textarea {
        border-radius: 10px;
        border: 1px solid #dee2e6;
        box-shadow: none;
        transition: all 0.3s ease;
        font-size: 17px !important;
        background: #f7fffb9c;
        border-radius: 18px !important;
        border: 1px solid #454040 !important;
        font-weight: 400;
    }

        .contact-card input:focus,
        .contact-card textarea:focus {
            border-color: #06b6d4;
            box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
        }

.submitdata {
    background: linear-gradient(90deg, #06b6d4, #003566);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 18px;
    padding-block: 15px;
    width: 100%;
}

    .submitdata:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(6,182,212,0.4);
        color: #fff;
    }

    .submitdata i {
        font-size: 14px;
        color: #fff;
    }


#crosmenu, .menu-item {
    display: none;
}


.btn:hover {
    background-color: #1c95b6;
}


.modal-footer button {
    padding: 16px 30px;
}

img#blogPreviewImg2 {
    width: 250px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px 10px;
}


/* Toggle Switch Design */
.trusted-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 25px;
}

    .trusted-toggle .form-check-input {
        width: 65px;
        height: 38px;
        background-color: #7a7a7a;
        border: 2px solid #8c8d8d;
        border-radius: 25px !important;
        position: relative;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
        box-shadow: 0 0 12px rgba(28, 181, 224, 0.4);
    }

        .trusted-toggle .form-check-input:checked {
            background-color: #1c95b6;
            border-color: #fff;
            box-shadow: 0 0 20px rgba(12, 92, 114, 0.9);
            background-image: none;
        }

            .trusted-toggle .form-check-input:checked::before {
                left: 33px;
                background: #fff;
            }

        .trusted-toggle .form-check-input::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 4px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fff;
            transition: all 0.3s ease;
        }


.btn-custom {
    background: linear-gradient(135deg, #1cb5e0, #003566);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s;
    padding-block: 15px;
}

    .btn-custom:hover {
        box-shadow: 0 0 15px #4b4e4f44;
        transform: scale(1.01);
        color: #fff !important;
    }

div#trustedSection {
    display: none;
}




.breadcrumb-wrapper {
    background-color: #ffffff !important;
    border-radius: 0px;
    font-size: 15px;
    padding-block: 15px;
    border-top: 0px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.breadcrumb a {
    transition: color 0.2s ease;
    color: #333;
}

    .breadcrumb a:hover {
        color: #1c95b6;
        text-decoration: underline;
    }

.seeallser {
    margin-top: 30px;
}

    .seeallser a {
        display: inline-block;
        text-decoration: none;
        padding: 12px 35px;
        background-color: #1c95b6;
        border-radius: 50px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

        .seeallser a:hover {
            background-color: #0b6983;
        }


.services-provided {
    border: 1px solid #1c95b6;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    background-color: #fff;
}

    .services-provided h3 {
        color: #000;
    }

/*-------Product Section------*/
.product-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-img-box {
    height: 350px;
}

.product-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.action-btns {
    position: absolute;
    top: 10px;
    right: 10px;
}

    .action-btns button {
        background: #fff;
        border: none;
        margin-left: 5px;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

.product-links .btn {
    border-radius: 50px;
    margin-right: 5px;
}

.product-links .amazon {
    background: #ff6200;
    color: #fff;
}

.product-links .flipkart {
    background: #e7d81b;
    color: #fff;
}

.product-links .main {
    background: #333;
    color: #fff;
}

.buynow {
    margin-top: 15px;
}

    .buynow a {
        display: block;
        width: 100%;
        padding-block: 12px;
    }

        .buynow a:hover {
            background-color: #000;
        }



/*---slider choose-Arraow */
.swiper-button-prev, .swiper-button-next {
    color: #e0e0e0 !important;
    background: #0383a6;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
    transition: all 0.3s ease;
    border: 1px solid #ccc;
}

    .swiper-button-prev:hover, .swiper-button-next:hover {
        background-color: #08637c;
    }

.swiper-button-prev {
    left: 2px !important;
    top: 45%;
}

.swiper-button-next {
    right: 2px !important;
    top: 45%;
}

    .swiper-button-prev::after, .swiper-button-next::after {
        font-size: 16px !important;
        font-weight: 800;
        color: #ffffff;
    }

    .swiper-button-prev:hover::after, .swiper-button-next:hover::after {
        color: #fff !important;
    }

.swiper-pagination {
    transform: translateY(5px);
}

#contactModal .swiper {
    padding-bottom: 70px;
}

.slider-item img {
    border: 1px solid rgb(169, 169, 169);
}



.catalogue-box {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

    .catalogue-box .swiper {
        padding-block: 10px;
        margin: auto;
        overflow: hidden;
        border-radius: 15px;
        background: #fff;
    }

    .catalogue-box .swiper-slide {
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .catalogue-box .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
            cursor: zoom-in;
            transition: transform 0.3s ease;
        }

            .catalogue-box .swiper-slide img:hover {
                transform: scale(1.03);
            }


.swiper-button-next,
.swiper-button-prev {
    color: #003566 !important;
    transition: transform 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: scale(1.2);
        color: #1cb5e0 !important;
    }


.catalogue-card {
    position: relative;
    background: #f0f0f0; /* soft gray bg */
    border-radius: 10px;
    overflow: hidden;
    height: 520px; /* fixed height for all */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .catalogue-card a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .catalogue-card img {
        width: auto;
        height: 100%;
        max-height: 100%;
        object-fit: contain; /* ensures full image is visible */
        display: block;
        margin: auto;
        transition: transform 0.3s ease;
    }

    .catalogue-card:hover img {
        transform: scale(1.05);
    }


.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1cb5e0, #003566);
    color: white;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 53, 102, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 9999;
    animation: glowPulse 1.8s infinite;
}

    .scroll-top-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(28, 181, 224, 0.7);
    }

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(28, 181, 224, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(28, 181, 224, 0.8);
    }

    100% {
        box-shadow: 0 0 15px rgba(28, 181, 224, 0.3);
    }
}



/* Optional: responsive height for mobile */
@media (max-width:1200px) {
    .catalogue-card {
        height: 347px !important;
    }
}


/* Optional: responsive height for mobile */
@media (max-width: 768px) {
    .catalogue-card {
        height: 270px !important;
    }

    .about .row {
        flex-direction: column-reverse;
    }
}




@media (max-width: 768px) {
    .catalogue-box .swiper-slide img {
        height: 250px;
    }

    .template-choose {
        font-size: 14px;
        padding: 6px 14px;
    }
}

/*----------Busines Details*/
.business-details {
    background: #f8fafc;
    border-radius: 25px 25px 0 0;
    margin-top: 25px;
}

.section-title {
    font-weight: 700;
    color: #003566;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

    .details-card:hover {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

.detail-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.value {
    font-weight: 600;
    color: #212529;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .details-card {
        padding: 1.5rem;
    }

    .value {
        font-size: 0.95rem;
    }
}

.business-details {
    background: #f8fafc;
}

.section-title {
    font-weight: 700;
    color: #003566;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.detail-item {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    transition: 0.3s ease;
}

    .detail-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    }

.detail-title {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.value {
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.action-btns {
    position: absolute;
    top: 8px;
    right: 10px;
}

    .action-btns button {
        background: none;
        border: none;
        color: #003566;
        margin-left: 5px;
        font-size: 1rem;
        transition: 0.3s;
    }

        .action-btns button:hover {
            color: #1cb5e0;
        }

@media (max-width: 768px) {
    /* .detail-item {
    text-align: center;
  } */
    .action-btns {
        top: 5px;
        right: 5px;
    }
}





/*---------------------responsive-----------------*/
@media screen and (max-width :769px) {
    .d-flex.justify-content-between.align-items-center.mb-3, .mb-5.d-flex.justify-content-between.align-items-center {
        display: block !important;
    }

    .hero .years {
        right: 13px;
        bottom: 14px;
    }

    #follow-us::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background-color: #7e7e7e;
    }

    .flow-us-sec {
        text-align: center;
        padding-bottom: 15px;
        margin-bottom: 21px;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background: #333;
        z-index: 9999;
        padding-top: 25px;
        z-index: 999;
        display: none;
    }

        nav.menuactives {
            display: block;
        }

        nav::after {
            content: '';
            position: absolute;
            top: 0;
            left: -207%;
            width: 150vh;
            height: 100%;
            background-color: #0000008f;
            z-index: -1;
        }

        nav a {
            display: block;
            margin-top: 25px;
            margin-left: 46px;
            color: #ddd;
        }

    #crosmenu {
        position: absolute;
        right: 15px;
        top: 15px;
        display: block;
        height: 40px;
        width: 40px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-item {
        display: block;
        height: 40px;
        width: 40px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .menu-item i {
            font-size: 27px;
        }
}


@media (max-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
    }

    .hero {
        padding: 80px 18px;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .trustedand-verify {
        margin-top: 20px;
    }

    .edit-services-btn {
        position: absolute;
        top: 60px;
    }

    .services-provided ul {
        margin-top: 50px;
    }
}

/*---------------13-11-2025*/

/* ===== Social Rows Container ===== */
#socialInputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    /* Each Row Box */
    #socialInputs .input-group {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 12px;
        padding: 6px;
    }

    /* Text Inputs */
    #socialInputs .form-control {
        border: none !important;
        box-shadow: none !important;
        background: transparent;
        font-size: 15px;
        padding: 10px 12px;
    }

    /* Left Input (Name) Divider */
    #socialInputs .social-name {
        border-right: 1px solid #ccc !important;
        flex: 0 0 35%;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
    }

    /* Right Input (Link) */
    #socialInputs .social-link {
        flex: 1;
    }



/* Delete Button */
.deleteSocial {
    border: 1px solid #dc3545 !important;
    color: #dc3545 !important;
    background: transparent;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: 0.2s;
}

    .deleteSocial:hover {
        background: #dc3545;
        color: #fff !important;
    }

/* ===== Add (+) Section Styling ===== */
/* === Add (+) Section === */
.add-social-section {
    display: flex;
    align-items: center;
    border: 1px solid #ccc !important;
    border-radius: 50px !important;
    overflow: hidden;
    padding: 6px;
    margin-top: 10px;
}

    .add-social-section .form-control {
        border: none !important;
        box-shadow: none !important;
        background: transparent;
        font-size: 15px;
        padding: 10px 12px;
    }

    .add-social-section .social-nameadd {
        flex: 0 0 35%;
        border-right: 1px solid #ccc !important;
    }

.form-banner .form-control:focus {
    outline: none;
    box-shadow: none !important;
}

.add-social-section .social-linkadd {
    flex: 1;
}

#addSocialBtn {
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

/* ===== Follow Modal Icon Section ===== */
#socialList li {
    text-align: center;
}

    #socialList li i {
        font-size: 22px;
    }

#socialList span {
    display: block;
    font-size: 13px;
}

.social-icons ul li a:hover {
    box-shadow: 2px 5px 10px #a1a1a1;
}

.modal-footer button {
    padding: 8px 30px;
    line-height: 18px;
}

button.btn.btn-primary {
    background-color: #1cb5e0;
    border: 0 !important;
}
a.btn.btn-primary {
    background-color: #1cb5e0;
    border: 0 !important;
}


.btn-outline-primary {
    border-color: #1cb5e0;
    color: #1cb5e0;
}

    .btn-outline-primary:hover {
        border-color: #1cb5e0;
    }



.contact-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.contact-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-actions {
    display: flex;
    gap: 8px;
}

    .contact-actions button {
        border: none;
        background: none;
        color: #dc3545;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.2s;
    }

        .contact-actions button:hover {
            transform: scale(1.1);
        }

/* Floating add button */
.add-contact-fab {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #1c95b6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4re-;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .add-contact-fab:hover {
        background: #1c95b6;
        transform: scale(1.05);
    }

/* Modal styling */
.modal-content {
    border-radius: 14px;
}

.social-icons ul li {
    margin: 5px !important;
}

#socialList span {
    padding-top: 5px;
}

.contact-card input, .contact-card textarea {
    background: #ffffff9c;
}

button#openContactModal {
    padding: 7px 12px;
    font-size: 16px;
}

#openContactModal i {
    font-size: 1rem;
    color: #fff;
    margin-right: 2px;
}

/*----------New Css 09-12-2025--------------*/
/* FORM MAIN WRAPPER */
.form-banner {
    max-width: 500px;
    background: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    margin: 0 auto;
    border: 1px solid #e7f3f6;
    margin-top: -50px;
    position: relative;
}

    /* TITLE */
    .form-banner h3 {
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 30px;
        color: #1c1c1c;
    }

    /* INPUT FIELDS */
    .form-banner .form-control {
        background: #f7f7f7;
        border: 1px solid #eee;
        height: 48px;
        padding: 12px 15px;
        border-radius: 6px;
        font-size: 15px;
        transition: all .3s ease;
    }

    .form-banner textarea.form-control {
        height: auto !important;
    }

    /* INPUT FOCUS EFFECT */
    .form-banner .form-control:focus {
        border-color: #1c95b6;
        box-shadow: 0 0 0 3px rgba(108,134,255,0.25);
        background: #fff;
    }

/* ERRORS */
.text-danger {
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

/* BUTTON */
.submitdata {
    width: 100%;
    background: #1c95b6;
    color: #fff;
    padding: 14px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

    .submitdata:hover {
        background: #1c95b6;
    }

/* FORM SPACING */
.mb-3, .mb-4 {
    margin-bottom: 20px !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
    .form-banner {
        padding: 30px 20px;
        margin: 20px;
    }
}


/* MAIN WRAPPER */
.banner-bottom {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.06); */
    border: 1px solid #e7f3f6;
    position: relative;
    padding-top: 10px;
    margin-top: 25px;
}



/* BADGES BELOW TITLE */
.badges {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: #e8f6fa;
    color: #1c95b6;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #cdebf3;
}

.rating-badge {
    background: #1c95b6;
    color: #fff;
}

/* INFO SECTION */
.review {
    margin-top: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
}

    .info-row i {
        color: #1c95b6;
        margin-right: 6px;
    }

    .info-row.open {
        color: #22a722;
        font-weight: 600;
    }

/* CONTACT BUTTONS */
.callto-action {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

    .callto-action .btn {
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        border: none;
    }

        .callto-action .btn:hover {
            color: #fff;
        }

/* PHONE — BLINK ANIMATION */
.phone-btn {
    background: #1c95b6;
    color: #fff;
    animation: blinkPhone 1.2s infinite ease-in-out;
}

@keyframes blinkPhone {
    0% {
        background: #1c95b6;
    }

    50% {
        background: #147a93;
    }

    100% {
        background: #1c95b6;
    }
}

.enquiry-btn {
    background: #f1f8fa;
    color: #1c95b6;
    border: 1px solid #cdebf3;
}

.whatsapp-btn {
    background: #e8f5e9;
    color: #22a722;
    border: 1px solid #bfe7c4;
}

/* ADDRESS */
.address-box {
    margin-top: 25px;
    background: #f8feff;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #d9f2f7;
}

    .address-box h4 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #1c1c1c;
    }

    .address-box p {
        line-height: 1.5;
        font-size: 14px;
        margin-bottom: 12px;
    }

/* ACTION LINKS */
.address-actions {
    display: flex;
    gap: 20px;
}

.action-link {
    color: #1c95b6;
    font-weight: 600;
    font-size: 14px;
}

    .action-link i {
        margin-right: 4px;
    }





/* TRUST BADGE (Blue) */
.badge.trust {
    background: #e6f6fb;
    color: #1c95b6;
    border: 1px solid #b8e5f1;
}

    .badge.trust i {
        color: #1c95b6;
        font-size: 15px;
    }

/* VERIFIED BADGE (Green) */
.badge.verified {
    background: #e9f9ed;
    color: #1fa44a;
    border: 1px solid #bceecf;
}

    .badge.verified i {
        color: #1fa44a;
        font-size: 15px;
    }


.also-listed-box {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #eef0f3;
    background: #fff;
    border-radius: 12px;
}

    /* Title */
    .also-listed-box h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }

/* FLEX layout */
.listed-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* TAG design */
.listed-tag {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
}

    .listed-tag:hover {
        background: #f0f6ff;
        border-color: #bcd7ff;
    }

/* More button */
.more-btn {
    margin-top: 15px;
    display: inline-block;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 16px;
    background: #eef6ff;
    border-radius: 25px;
}

/* RESPONSIVE FIX */
@media (max-width: 576px) {
    .listed-tag {
        font-size: 13px;
        padding: 7px 12px;
    }

    .listed-flex {
        gap: 8px;
    }
}



.also-listed-box-simple {
    background: #fff;
    border: 1px solid #e6e8eb;
    padding: 18px;
    border-radius: 12px;
    margin-top: 20px;
}

    /* Heading */
    .also-listed-box-simple h4 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 14px;
        color: #333;
    }

.listed-normal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}

    .listed-normal li {
        display: flex;
    }

        .listed-normal li a {
            display: block;
            padding: 6px 14px;
            background: #f3f6fb;
            border: 1px solid #dce3ed;
            border-radius: 50px;
            font-size: 14px;
            color: #333;
            text-decoration: none;
            transition: 0.2s ease;
            white-space: nowrap; /* jitna text utni width */
        }

            .listed-normal li a:hover {
                background: #e7eef8;
                border-color: #c7d2e3;
            }
/* Responsive – 2 per row */
@media (max-width: 768px) {
    .listed-normal li {
        flex: 1 1 calc(50% - 12px);
    }
}

/* Responsive – 1 per row (Mobile) */
@media (max-width: 480px) {
    .listed-normal li {
        flex: 1 1 100%;
    }
}

/* More link */
.more-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1c95b6;
}

.big-stats-badge {
    background: #00354B; /* Dark blue background (screenshot style) */
    padding: 25px 28px;
    border-radius: 12px;
    color: #fff;
    width: fit-content;
    margin-top: 10px;
    width: 100%;
}

    .big-stats-badge .count {
        font-size: 44px;
        font-weight: 800;
        color: #24B0FF; /* Bright Blue Number */
        display: block;
        line-height: 1;
        margin-bottom: 6px;
    }

    .big-stats-badge p {
        font-size: 16px;
        margin: 0;
        line-height: 1.4;
        font-weight: 500;
        color: #e9f7ff;
    }

/* Hero / Banner */
.hero {
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    border-radius: 0 !important;
}

.banner-box {
    padding: 100px 0px;
    position: relative;
}


/* .business-details{
    background: linear-gradient(135deg, #0d1f2a, #127996);
        color: #fff;
    position: relative;
} */
.details-card {
    background: linear-gradient(135deg, #0d1f2a, #127996);
}

.catalogue-box {
    background: linear-gradient(135deg, #0d1f2a, #127996);
    margin: 0 !important;
}

    .catalogue-box .swiper {
        background: #10536900;
    }

.catalogue-card {
    height: 580px;
    padding: 10px;
    background-color: #e1efff;
}

.slider-item img {
    border: 1px solid rgb(198 212 241);
}

.business-details {
    background: #ffffff;
}

.services-provided ul li a {
    background-color: #e1efff;
}

.services-provided {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0%);
}

.product-card {
    box-shadow: 0 4px 15px rgb(0 0 0 / 0%);
    border: 1px solid #eeeeef;
}

.copyright a {
    color: #fff;
}

.detail-item {
    background: #23677cad;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    transition: 0.3s ease;
    backdrop-filter: blur(31px);
    border: 1px solid #747474;
    height: 100%;
}

.detail-title {
    color: #ffffff;
}

.value {
    color: #fdfdfd;
}

.section-title {
    color: #ffffff;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
}

.about-dark {
    background: linear-gradient(135deg, #0d1f2a, #1c95b6);
    color: #fff;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}


    .about-dark::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url("../../Company_portfolio/images/about-bg.png") no-repeat center / cover;
        opacity: 1;
        pointer-events: none;
    }

    .about-dark .section-title {
        color: #fff;
        font-weight: 700;
    }

    .about-dark .text-light {
        color: #e0e0e0;
    }

.edit-about-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.5rem 0.6rem;
    border-radius: 50%;
    transition: all 0.3s;
}

    .edit-about-btn:hover {
        background: #1c95b6;
        color: #fff;
    }

.highlight-box {
    background: rgba(28, 149, 182, 0.2);
    border-left: 4px solid #1c95b6;
    border-radius: 5px;
    font-weight: 500;
}

.image-overlay-text {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(28, 149, 182, 0.8);
    color: #fff;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

#aboutImage {
    max-width: 100%;
    border-radius: 10px;
}

#editAboutBtn {
    top: -70px;
}


.product-img-box {
    background-color: #f5fdff;
    padding: 25px;
    height: 250px;
    width: 100%;
}

    .product-img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

.follow-btn {
    font-size: 15px;
    padding-block: 11px !important;
}



.review-box .rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.rating-line .bar {
    flex-grow: 1;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

    .rating-line .bar div {
        height: 100%;
        background: #8652ff;
        border-radius: 10px;
    }

.tag {
    background: #f3faf3;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #d7ecd7;
}

.review-item p {
    font-size: 14px;
    color: #555;
}

.reaction {
    cursor: pointer;
    color: #666;
    font-size: 15px;
}

    .reaction:hover {
        color: #000;
    }

.review-item img.rounded {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.profile-reviw-img {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
}

    .profile-reviw-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }

.review-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 35px !important;
}

.give-rating button {
    border-color: #ccc;
    color: #333;
}

    .give-rating button:hover {
        color: #ffffff;
    }




.creator-card {
    background: #fff;
}

.creator-content.d-flex.align-items-center {
    position: absolute;
    right: 10px;
}

/* Heading INSIDE card */
.creator-header {
    font-size: 16px;
    font-weight: 600;
    color: #1c95b6;
    margin-bottom: 10px;
}

/* Profile Image */
.creator-photo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1c95b6;
}

/* Name + Job */
.creator-name a {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.creator-role {
    font-size: 14px;
    color: #666;
}

/* Buttons */
.btn-follow,
.btn-rate {
    border: none;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Follow Btn Light */
.btn-follow {
    background: #e4f7fc;
    color: #1c95b6;
}

    .btn-follow:hover {
        background: #d3f1f8;
    }

/* Rate Btn Primary */
.btn-rate {
    background: #1c95b6;
    color: #fff;
}

    .btn-rate:hover {
        background: #167b8c;
    }

/* Responsive */
@media (max-width: 576px) {
    .creator-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

        .creator-content > div:last-child {
            justify-content: center;
        }
}


.btn-share {
    background: #f0faff;
    color: #1c95b6;
    border: 1px solid #c9e9f1;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.25s;
}

    .btn-share:hover {
        background: #dff4fb;
        border-color: #bce3ec;
    }

.review-list-item {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    height: 472px;
    overflow-y: scroll;
}

/* .community-section {
    background: #0f2732;
    color: #fff;
} */
/* .community-section {
    background: #0f2732 url("con-bg.png") no-repeat center top;
    background-size: cover;  
    color: #fff;
} */

.community-section {
    position: relative;
    background: #0f2732db;
    color: #fff;
    overflow: hidden;
}

    .community-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        background: url("../images/con-bg-2.png") no-repeat center top;
        background-size: cover;
        opacity: 1;
        pointer-events: none;
        z-index: -1;
    }




.why-join-badge {
    background: #ffffff22;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.section-titlecom {
    font-size: 42px;
    font-weight: 800;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* CARD */
.community-card {
    background: #14323e;
    padding: 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s;
    border: 1px solid #254756;
    height: 100%;
}

    .community-card:hover {
        background: #18424f;
        transform: translateY(-3px);
    }

.popular-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e84fee;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.community-card .community-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 0 15px;
}

    .card-content h4 {
        margin-bottom: 3px;
        font-size: 18px;
        font-weight: 700;
    }

    .card-content p {
        margin: 0;
        font-size: 13px;
        opacity: 0.85;
    }

.stats span {
    margin-right: 12px;
    font-size: 13px;
}

/* JOIN BUTTON */
.btn-join {
    background: #1ab6d9;
    color: #fff;
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

    .btn-join:hover {
        opacity: 0.9;
    }

/* CTA Button */
.create-community-btn {
    background: #21bced;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

    .create-community-btn:hover {
        background: #18a3cf;
    }

.section-titlecom {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(90deg, #cdd9e0, #d582d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0 4px;
}


.events-section {
    position: relative;
    background: #0f2732c7;
    color: #fff;
    overflow: hidden;
}

    .events-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        background: url("../images/event-bg.jpg") no-repeat center top;
        background-size: cover;
        opacity: 1;
        pointer-events: none;
        z-index: -1;
    }


#videos {
    position: relative;
    background: #0f2732e3;
    color: #fff;
    overflow: hidden;
}


    #videos::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        background: url(../images/v-bg.jpg) no-repeat center top;
       
        opacity: 1;
        pointer-events: none;
        z-index: -1;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f2f3f5;
}

.section-subtitle {
    font-size: 1rem;
    color: #ccc;
}

.event-card {
    background-color: #0f2732;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #254756;
    height: 100%;
}

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

.event-img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-desc {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.event-date-time {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #aaa;
}

.btn-register {
    background-color: #1ab6d9;
    border: none;
    padding: 4px 25px;
}

    .btn-register:hover {
        background-color: #1ab6d9;
    }

.event-date-time i {
    color: #1ab6d9;
}

.event-date-time {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #aaa;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .event-date-time i {
        margin-right: 5px;
    }


.scroll-top-btn {
    width: 35px;
    height: 35px;
    font-size: 38px;
}

.delete-review-btn {
    position: absolute;
    top: -30px;
    right: 6px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: #dc3545;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

    .delete-review-btn:hover {
        background: rgba(220, 53, 69, 0.12);
        color: #b02a37;
        transform: scale(1.08);
    }

.review-item {
    position: relative;
}


.also-listed-box-simple {
    position: relative;
}

.creator-content.d-flex.align-items-center {
    z-index: 11;
}

span.edit-btn-com {
    position: absolute;
    right: 15px;
    top: 40px;
    height: 40px;
    width: 40px;
    background-color: #bdd7e4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s all;
    border: 1px solid #7bb4d4;
}

    span.edit-btn-com i, #openContactModal i {
        color: #225775;
    }

.trusted-list {
    margin-left: 0;
    padding-inline: 0px;
}



.ownership-section {
    /* background: radial-gradient(circle at top, #1e1e1e, #0b0b0b); */
    padding: 80px 0;
}

.owner-card {
    background: linear-gradient(135deg, #0d1f2a, #127996);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    /* box-shadow:0 15px 40px rgba(0,0,0,0.6); */
    position: relative;
    transition: 0.4s ease;
}

    .owner-card:hover {
        transform: translateY(-6px);
    }

    .owner-card.highlight {
        border: 1px solid rgba(0,180,216,0.4);
    }

.owner-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #00b4d8;
}

.owner-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.owner-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.owner-desc {
    font-size: 18px;
    color: #cbd5e1;
}

.claim-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

.claim-btn {
    background: linear-gradient(135deg,#00b4d8,#0077b6);
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,180,216,0.5);
}

    .claim-btn:hover {
        opacity: 0.9;
    }

@media(max-width:768px) {
    .owner-card {
        margin-bottom: 25px;
    }
}


.toast {
    border-radius: 12px;
    font-size: 14px;
}
/*About Section Image*/
img#imagePreview {
    width: 25%;
    margin-top: 15px;
    border-radius: 15px;
}

.about-img-box {
    height: 425px;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

    .about-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }





span.input-group-text {
    display: inline-block;
    width: 140px;
    text-align: left;
    border-radius: 15px 0 0 15px;
    display: flex;
}

input.form-control.contact-value {
    border-color: #ccc;
    border-radius: 0 15px 15px 0 !important;
}

button.btn.btn-danger.delete-contact {
    position: absolute;
    right: -12px;
    top: -6px;
    height: 27px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #ffffff !important;
}

    button.btn.btn-danger.delete-contact i {
        font-size: 14px;
        color: red;
    }


/* Blur overlay loader */
.blur-loader {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Top most layer */
    transition: opacity 0.3s ease;
}
/* Loader box (spinner + text) */
.loader-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bigger spinner */
.spinner-border-lg {
    width: 5rem; /* bigger width */
    height: 5rem; /* bigger height */
    border-width: 0.5rem; /* thicker border */
}

/* Loading text */
#loadingText {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}
/* Hide skeletons initially */
#productSkeletonWrapper {
    display: none;
}

/* Skeleton card animation */
.skeleton-card {
    border-radius: 10px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}


/*----06-01-2026*/
.company-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    background: #fff;
}

/* TEXT LOGO */
.text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* IMAGE LOGO */
.img-logo .logo-box {
    width: 160px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-box a {
    width: 100%;
    height: 100%;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* EDIT BUTTON */
.edit-profile-btn {
    position: absolute;
    right: -35px;
    top: -5px;
    height: 35px;
    width: 35px;
    background-color: #bdd7e4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s all;
    border: 1px solid #7bb4d4;
    color: #225775;
}

/* SHOW OPTION UI */
.show-option-box {
    background: #f8fbfd;
    border: 1px solid #e2edf3;
    border-radius: 10px;
    padding: 14px;
}

.show-options {
    display: flex;
    gap: 12px;
}

.show-card input {
    display: none;
}

.show-card {
    flex: 1;
    cursor: pointer;
}

.card-ui {
    border: 1.5px solid #d5e9f2;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    transition: 0.25s;
    background: #fff;
}

    .card-ui i {
        font-size: 18px;
        color: #029fc1;
        display: block;
        margin-bottom: 6px;
    }

    .card-ui span {
        font-size: 13px;
        font-weight: 600;
    }

.show-card input:checked + .card-ui {
    border-color: #029fc1;
    background: #e7f6fb;
    box-shadow: 0 0 0 2px rgba(2,159,193,0.15);
}




/*new*/


.info-card {
    border: 1px solid #ebd5f5;
    background: #fbf7fd;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 35px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    color: #7900b6;
    font-weight: 600;
}

    .title i {
        color: #7900b6;
        font-size: 18px;
    }

.edit-btn {
    background: #faf1ff;
    border: 1px solid #e0a9ff;
    color: #7900b6;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .edit-btn:hover {
        background: #7900b6;
        color: #fff;
    }


.view-text {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Dropdown */
.industry-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cce9f2;
    font-size: 14px;
    background: #fff;
}

.d-none {
    display: none;
}


.view-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-industry {
    font-size: 18px;
    font-weight: 600;
    color: #500079;
    line-height: 25px;
}

.sub-industry {
    font-size: 14px;
    color: #303030;
    padding-left: 12px;
}



/* INLINE ERROR */
#logoError {
    color: #dc3545;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

.d-none {
    display: none;
}

#textLogo h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

input.border-danger, textarea.border-danger {
    transition: border 0.3s;
}
.text-danger {
    font-size: 15px;
    margin-top: 4px;
    display: inline-block;
}

/*Community Modal*/
.community-box-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.btn-commu button {
    background: #046a81;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #046a81;
}


.section-title {
    font-weight: 600;
    margin-bottom: 12px;
}


.community-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.community-item {
    border: 1px solid #cdedff;
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    background: #eaf4ff;
    transition: 0.2s;
    color: #000 !important;
}

#communityModal .section-title {
    font-size: 20px;
    font-weight: 600 !important;
    color: #494949;
}

#communityModal .community-section .section-title {
    font-size: 22px;
    font-weight: 600 !important;
    color: #f2f3f5;
    border-bottom: 1px solid #8d8d8d;
    padding-bottom: 15px;
}

.community-item:hover {
    background: #eef7ff;
    border-color: #0d6efd;
}

/* Admin Section box */
.admin-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.community-section {
    padding: 20px;
    /*border-radius: 15px;*/
}

.admin-section .form-select:focus {
    border-color: #215280;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(6, 87, 119, 0);
}

.admin-section select.form-select {
    padding-block: 10px;
    font-size: 17px;
    border-color: #333;
    border-radius: 50px;
}

/*-----------1/21/26For Company Page*/
#editAboutBtn {
    top: -42px;
}

.d-flex.justify-content-between.align-items-center.mb-4 {
    flex-wrap: wrap !important;
}

@media screen and (max-width: 991px) {
    .form-banner {
        max-width: 100%;
        margin-top: 32px;
    }

    .section-title {
        margin-bottom: 25px !important;
    }

    .edit i, .action-btns i {
        font-size: 10px;
    }

    .action-btns {
        top: 2px;
    }
}




@media screen and (max-width: 560px) {
    .creator-content.d-flex.align-items-center {
        position: relative;
        right: 0px;
        text-align: start !important;
    }

    .banner-bottom {
        padding: 8px;
    }

    .listed-normal li a {
        display: block;
        padding: 3px 10px;
    }

    .listed-normal li {
        flex: auto !important;
    }

    .form-banner .mb-3 {
        margin-bottom: 0 !important;
    }

    .form-banner {
        padding: 30px 16px;
        margin: 0px;
        margin-block: 25px;
    }

    .services-provided ul {
        margin-top: 6px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .trusted-toggle {
        margin-top: -35px;
    }
}


@media screen and (max-width: 560px) {
    .creator-content.d-flex.align-items-center {
        flex-direction: row;
        padding-bottom: 12px;
    }

    span.edit-btn-com {
        top: 20px;
    }

    #editAboutBtn {
        left: 5px;
    }

    .edit-services-btn {
        top: 25px;
    }

    .community-box-btn {
        flex-direction: column;
    }

    .text-start.mb-4.pb-4
   {
        padding-bottom: 0 !important;
    }
}

.card.border-0.shadow-sm.service-card.text-center.p-4 {
    height: 100%;
}



/*//HEADER*/

#pnlHeader .top-header-area {
    font-size: 11px;
    position: relative;
    top: 0;
    z-index: 10005;
    width: 100%;
}
.padding-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px;
}
.contact-header ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
    .contact-header ul li:first-of-type {
        border-left: 0;
    }

    .contact-header ul li {
        margin: 5px 0px;
        border-left: 1px solid #ccc;
        padding-inline: 8px;
    }

    .contact-header ul li {
        list-style: none;
        margin: 5px 10px;
    }

        .contact-header ul li span i {
            color: #1c95b6;
            font-size: 16px;
            padding-right: 5px;
        }

        .contact-header ul li a {
            color: #ccc;
            font-size: 14px;
        }
.user-details {
    display: flex;
    justify-content: end;
    align-items: center;
    width: auto;
    margin-left: auto;
}
.searchbox a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: auto;
    background-color: #fff0;
}


.searchbox a {
    display: flex;
    width: auto !important;
    padding: 8px 15px !important;   
    line-height: normal !important;
    height: auto !important;
    border-radius: 50px !important;
}

    .searchbox a span {
        color: #fff;
        display: inline-block;
        padding-right: 10px;
    }

.search-button {
    cursor: pointer;
    z-index: 0;
    margin-right: 0;
    border: none;
    background: none;
}

.searchbox a i {
    color: #fff;
    font-size: 15px;
}

.searchbox a i {
    font-size: 12px;
}

.user-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 110px;
    max-width: 160px;
    margin-left: auto;
    padding-bottom: 2px;
    /* border-left: 1px solid #696969; */
    margin-left: 15px;
    position: relative;
    padding-left: 15px !important;
}

.user-profile-top {
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #fff;
    /* padding: 7px; */
    /* line-height: 19px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .user-profile-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.user-text h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    margin: 0;
    padding-left: 10px;
}
ul.dropdown-menu {
    z-index: 9999999999;
}

.user-img-box .dropdown-menu {
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
    border: 0;
    /* display: block; */
    min-width: 13rem;
    overflow: hidden;
    /* margin-top: 4px; */
    padding: 15px !important;
    padding-top: 10px !important;
    left: -65px !important;
}

ul.dropdown-menu li {
    list-style: none;
}


ul.dropdown-menu li {
    list-style: none;
}


.user-img-box::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    left: 2px;
    background-color: #a7a7a7;
}

.user-img-box .dropdown-menu {
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
    border: 0;
    /* display: block; */
    min-width: 13rem;
    overflow: hidden;
    /* margin-top: 4px; */
    padding: 15px !important;
    padding-top: 10px !important;
    left: -65px !important;
}

ul.dropdown-menu {
    z-index: 9999999999;
}


.user-img-box:hover .dropdown-menu {
    display: block;
}
ul.dropdown-menu li {
    list-style: none;
}

ul.dropdown-menu li {
    list-style: none;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.user-img-box .dropdown-menu li a {
    padding: 10px 6px !important;
    border-bottom: 1px solid #ebebeb !important;
    display: block;
}

.user-img-box .dropdown-menu li a {
    padding: 10px 6px !important;
    border-bottom: 1px solid #ebebeb !important;
    display: block;
}

a, a:active, a:focus {
    color: #6f6f6f;
    text-decoration: none;
}

.user-img-box .dropdown-menu li.logoutbox a {
    border-bottom: 1px solid #1c95b6 !important;
}

.user-img-box .dropdown-menu li a {
    padding: 10px 6px !important;
    border-bottom: 1px solid #ebebeb !important;
    display: block;
}

li.logoutbox a {
    border: 1px solid #1c95b6 !important;
    color: #1c95b6 !important;
    border-radius: 50px !important;
    text-align: center !important;
    padding: 7px 10px !important;
    margin: 0 10px !important;
    margin-top: 10px !important;
}

/*......*/
a.log_in, a.reg_in {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.log_in, a.reg_in {
    /* display: inline-block; */
    padding: 6px 20px;
    background-color: #1c95b6;
    color: #fff;
    border-radius: 50px;
    /* font-size: 15px; */
    border: 1px solid #1c95b6;
}

a.text-link-white-2, a.text-link-white-2 i {
    /* color: #ffffff; */
}

.line-height-normal {
    line-height: normal;
}

a, a:active, a:focus {
    /* color: #6f6f6f; */
    text-decoration: none;
}

.loginBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    gap: 4px;
}

/*SEARCH BAR*/
.mfp-bg, .mfp-wrap {
    z-index: 10007;
}
.mfp-container {
    background-color: #000000e6;
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}
    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
.mfp-auto-cursor .mfp-content
Specificity: (0,2,0) {
    cursor: auto;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
#search-header {
    height: 100%;
    width: 45%;
    margin: 10% auto;
}
.position-relative {
    position: relative !important;
}
.search-form .search-button {
    font-size: 21px;
    color: #fff;
    top: 31px;
    right: 0;
    outline: none;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.search-button {
    cursor: pointer;
    z-index: 0;
    margin-right: 0;
    border: none;
    background: none;
}

.close-search {
 
    position: absolute;
    
}
.search-form .search-input {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 30px;
    font-weight: 100;
    padding: 20px 38px 20px 2px;
    text-transform: capitalize;
    background: transparent;
    line-height: 40px;
    color: #fff;
}
.dis_block {
    float: left;
    width: 25%;
    margin-bottom: 20px;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.dis_block label {
    display: block;
    margin: 0px;
    padding: 0px;
    width: auto;
    color: white;
    font-weight: normal;
}
button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

.mfp-close {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

    .mfp-close, .mfp-close:active {
        opacity: 1;
        background-color: transparent;
        color: #fff;
        right: 30px;
        top: 30px;
    }

/*------------Custome-Footer-------------*/
.custome-footer {
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.329), rgba(0, 0, 0, 0.329)), url('../../themehelper/images/main-footer-3.jpg');
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.lightbg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(28, 149, 182, 0.8), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

.custome-footer .widget-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    
}

.custome-footer .media a {
    color: #c0c0c0;
    font-size: 15px;
    line-height: 20px;
    padding: 4px 2px;
    position: relative;
    padding-left: 15px;
}

    .custome-footer .media a:hover {
        padding-left: 20px;
        color: #fff;
    }

    .custome-footer .media a::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
    }

.contact-slide p, .contact-slide p a {
    color: #c0c0c0;
    font-size: 15px;
    margin-bottom: 15px;
}

    .contact-slide p i {
        padding-right: 5px;
    }

.padding-five-bottom {
    padding-bottom: 0%;
}

.border-color-medium-dark-gray {
    border-color: #6c6c6c !important;
}

.copyright p {
    margin-bottom: 0;
    color: #c0c0c0;
    font-size: 15px;
}

.footer-bottom {
    padding-bottom: 25px;
}

    .footer-bottom .margin-20px-right {
        margin-right: 20px;
        font-size: 15px;
        color: #c0c0c0;
    }

    .footer-bottom .small-icon li a {
        display: inline-block;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        background-color: #e7e7e7;
        color: #000;
        box-shadow: 2px 5px 20px #3f3f3f;
        transition: 0.5s all;
    }

        .footer-bottom .small-icon li a:hover {
            transform: translateY(-10px);
            box-shadow: 2px 5px 20px #7c7c7c;
            background-color: #fff;
        }

.scroll-top-arrow, .scroll-top-arrow:focus {
    color: #fff;
    background: #878787;
    line-height: 43px;
    display: none;
    height: 40px;
    width: 40px;
    padding: 0;
    position: fixed;
    right: 45px;
    text-align: center;
    text-decoration: none;
    top: 85%;
    z-index: 10006;
    border-radius: 100%;
}

@media only screen and (max-width:1650px) {
    .nav-item a span {
        font-size: 15px;
    }

    ul.inner-menu li {
        padding: 0 0px;
    }
}

@media only screen and (max-width:991px) {

    .footer-bottom .small-icon li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }
}

@media only screen and (max-width:767px) {
    .menubtn1 nav.navbar.bootsnav .navbar-toggle {
        top: 0;
        right: 0;
        position: relative;
    }

    .navbar-top {
        padding-block: 10px !important;
    }

    .cbp-spmenu-open {
        width: 320px;
    }

    .user-details {
        width: 65%;
    }

    .custome-footer .widget-title {
        text-align: left !important;
    }

    .instagram-follow-api {
        text-align: left !important;
    }

    .copyrightFooter {
        flex-direction: column-reverse;
    }

    .copyright {
        margin-top: 40px;
    }
}

@media only screen and (max-width:450px) {
    .cbp-spmenu-open {
        width: 300px;
    }
}

@media only screen and (max-width:350px) {
    a.c-btn {
        display: inline-block;
        padding: 4px 12px;
        font-size: 12px;
    }

    .user-details {
        width: 85%;
    }
}
/*---- Custome Menu----*/
img.padding-10px-all {
    display: none;
}

nav.animated.bounceInDown.bg-dark {
    padding-top: 30px;
}

.cbp-spmenu nav ul li a {
    border-bottom: 1px solid #2e2e2e;
    padding: 12px 15px;
}

    .cbp-spmenu nav ul li a i {
        padding-right: 5px;
    }

button#close-pushmenu {
    z-index: 999;
}

.menu-bg, .menu-bg .bg-dark {
    background-color: #1f1d1d !important;
}


.searchbox a {
    display: flex;
    width: auto !important;
    padding: 8px 15px !important;
    line-height: normal !important;
    height: auto !important;
    border-radius: 50px !important;
}

    .searchbox a span {
        color: #fff;
        display: inline-block;
        padding-right: 10px;
    }

    .searchbox a:hover {
        background-color: #fff;
        color: #000 !important;
    }

        .searchbox a:hover span {
            color: #000 !important;
        }

    .searchbox a i {
        font-size: 12px;
    }

    .searchbox a:hover i {
        color: #000 !important;
    }

.contact-header ul li {
    margin: 5px 0px;
    border-left: 1px solid #ccc;
    padding-inline: 8px;
}

a.log_in, a.reg_in {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    a.log_in i, a.reg_in i {
        display: inline-block;
        font-size: 12px;
        padding-right: 5px !important;
    }

    a.log_in:hover i, a.reg_in:hover i {
        color: #000 !important;
    }

.close-button-menu:after, .close-button-menu:before {
    background-color: #fff !important;
}


.contact-header ul li:first-of-type {
    border-left: 0;
}

@media (max-width: 991px) {
    .user-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
        margin-left: auto;
        padding: 0 25px;
    }
}


@media only screen and (max-width: 450px) {
    .cbp-spmenu-open {
        width: 50%;
    }

    a.log_in, a.reg_in {
        padding: 4px 16px !important;
        font-size: 13px;
    }

    .searchbox a {
        padding: 5px 15px !important;
    }

    nav ul li a:hover {
        background: #1c95b6;
    }
}

ul.dropdown-menu {
    z-index: 9999999999;
}


.nav-item .dropdown-menu {
    min-width: 210px !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.list-style-6 li {
    position: relative;
    padding: 0 15px 5px 0;
    margin: 0 0 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.media {
    display: flex;
    align-items: flex-start;
}

ul li {
    list-style: none;
}
.contact-slide p, .contact-slide p a {
    color: #c0c0c0;
    font-size: 15px;
    margin-bottom Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits.. Widely available across major browsers (Baseline since January 2018) Learn more Don't show : 15px;
}

.text-small {
    font-size: 12px;
    line-height: 20px;
}
.alt-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.vertical-align-middle {
    vertical-align: middle;
}

footer .extra-small-icon li:first-child, footer .small-icon li:first-child, footer .medium-icon li:first-child, footer .large-icon li:first-child, footer .extra-large-icon li:first-child {
    margin-left: 0;
}

footer .small-icon li {
    margin: 0 8px;
}

.small-icon li {
    margin: 0 5px;
}

.extra-small-icon li, .small-icon li, .medium-icon li, .large-icon li, .extra-large-icon li {
    display: inline-block;
}

ul li {
    list-style: none;
}
.row.align-items-center.copyrightFooter {
    align-items: center;
    margin-top: 15px;
}


/*Follow/Unfollow- 16/02/2026 */
.btn-follow-us {
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #0065b8;
    color: #fff;
}


    .btn-follow-us:hover {
        background: #004680;
    }

.follow-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00354B;
    padding: 15px 20px;
    border-radius: 16px;
    margin-top: 20px;
    max-width: 100%;
    gap: 15px;
}



.follower-count {
    font-size: 27px;
    font-weight: 700;
    color: #ffffff;
}



/* Button Style */
.btn-follow-us {
    background: #2287ec;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .btn-follow-us:hover {
        background: #3c5f88;
    }

    .btn-follow-us.followed {
        background: linear-gradient(135deg, #328dd8, #2287ec);
    }

.big-stats-badge {
    background: #f1f8fa;
    border: 1px solid #d2e5f1;
}

    .big-stats-badge .count {
        font-size: 36px;
    }

    .big-stats-badge p {
        color: #001825;
    }

/*-----16-02-2026---*/
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 9999;
}

    .toast-message.show {
        opacity: 1;
        transform: translateY(0);
    }

    .toast-message.success {
        background: #28a745;
    }

    .toast-message.info {
        background: #007bff;
    }

/* Optional: button smooth feel */
.btn-follow-us {
    transition: all 0.3s ease;
}

.follower-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    border-radius: 14px;
    text-align: start;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex: 1;
}

.follower-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .follower-icon i {
        color: #fff;
        font-size: 15px;
    }

.follower-count {
    line-height: 1;
}


.follower-label {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #fafafa;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding-left: 5px;
}

.number-flow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


@media (max-width: 768px) {
    nav {
        z-index: 99999;
    }
}

/*--------17-02-2026----*/

.conference-section {
    background: #fff;
}

.conf-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.conf-subtitle {
    color: #64748b;
    max-width: 500px;
}

.all-conf-btn {
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.conference-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5eefb;
}

.conference-img {
    width: 42%;
}

    .conference-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
    }

.conference-info {
    width: 58%;
    padding: 22px;
}

.conf-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.badge.free {
    background: #e0f2fe;
    color: #0369a1;
    padding: 3px 12px;
    border-radius: 5px;
    font-weight: 600;
    corner-shape: scoop;
    border: 1px solid;
    font-size: 12px;
    line-height: 15px;
}

.conf-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 10px 0;
}

.conf-desc {
    font-size: 14px;
    color: #475569;
}

.conf-location {
    font-size: 13px;
    color: #475569;
    margin: 10px 0;
}

    .conf-location i {
        color: #116078;
        margin-right: 6px;
    }

.conf-mode {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mode {
    padding: 4px 14px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    corner-shape: scoop;
    border: 1px solid;
}

    .mode.offline {
        background: #fff7ed;
        color: #c2410c;
    }

    .mode.online {
        background: #eff6ff;
        color: #2563eb;
    }

    .mode.live {
        background: #ecfdf5;
        color: #047857;
    }

.conf-actions {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.view-btn {
    border: 1px solid #cbd5f5;
    color: #334155;
    padding: 6px 18px;
    border-radius: 25px;
}


.book-btn {
    background: #0f172a;
    color: #fff;
    padding: 6px 22px;
    border-radius: 25px;
}


    .view-btn:hover, .book-btn:hover {
        color: #fff !important;
    }



/*-----------Job section*/


/*=========== LIGHT JOB SECTION ===========*/

.job-section {
    width: 100%;
    background: #f8fafc !important;
    background-image: none !important;
    position: relative;
    display: flex;
    align-items: center;
    color: #21bced;
    padding: 50px 0;
}

/* Section Heading */
h3.sec-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.section-header {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    color: #21bced;
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #475569;
    text-align: center;
    margin-bottom: 50px;
}

/* Job Card */
.job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .job-card:hover {
        transform: translateY(-5px);
    }

.job-text {
    width: 100%;
}

/* Job Header */
.job-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Job Image */
.job-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
}

/* Job Text */
.job-text .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.job-location {
    color: #64748b;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
}

.job-text .card-text {
    color: #475569;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
}

/* Footer */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.job-date {
    color: #64748b;
    font-size: 13px;
}

/* Apply Button */
.apply-btn {
    background: #ffffff;
    color: #21bced;
    border: 1px solid #21bced;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px !important;
    transition: all 0.3s ease;
}

    .apply-btn:hover {
        background: #21bced;
        color: #ffffff;
    }

.btnarrow a {
    color: #21bced;
}


/* Mobile */
@media (max-width: 576px) {
    .job-card {
        padding: 18px;
    }

    .job-text .card-title {
        font-size: 16px;
    }

    .job-text .card-text {
        font-size: 13px;
    }
}

.product-img-box {
    background-color: #ffffff;
}

@media (max-width:820px) {
    .conference-section .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-direction: column;
        align-items: start !important;
        justify-content: flex-start !important;
    }
}

@media (max-width:767px) {
    .conference-card {
        display: block !important;
    }

    .conference-info {
        width: 100%;
    }

    .conference-img {
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .community-box-btn {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .text-start.mb-4.pb-4 {
        padding: 0 !important;
    }

    button.btn.btn-outline-primary {
        margin-top: 10px;
    }

    .product-links .flipkart {
        margin-top: 10px;
    }

    .buynow a {
        padding-block: 10px;
    }

    .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-wrap: wrap;
    }
}

/*--------17-02-2026---Product Section*/

.product-img-box {
    width: 100%;
    height: 250px;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
}

.form-control {
    border-radius: 5px;
    padding: 10px 15px;
    border-color: #86888b;
}

.product-card p {
    margin-bottom: 0;
}

span.qty-text {
    color: #535353;
    font-size: 14px;
    font-weight: 500;
}


/*------03-03-2026---*/
/*Plan Pricing Popup*/
/* Modal Base */
.upgrade-modal {
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    border: none;
    transform-origin: bottom right;
}

/* Heading Accent */
.modal-title {
    color: black;
}

.premium-heading {
    color: #b48a00;
}

.premium-subtext {
    color: #666;
    font-size: 14px;
}

/* Current Plan */
.current-plan {
    font-size: 14px;
    color: #555;
}

.plan-name {
    background: linear-gradient(90deg,#c6a700,#e6c200);
    color: #fff;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 5px;
    font-size: 13px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pill {
    padding: 4px 16px;
    border-radius: 30px;
    background: #f9f6e8;
    color: #8c6d00;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #f1e4b5;
    transition: 0.3s;
}

    .pill:hover {
        background: #fff3c4;
        transform: translateY(-2px);
    }

.btn-upgrade {
    position: relative;
    background: linear-gradient(135deg, #a67c00, #c69200);
    color: #fff;
    font-weight: 700;
    padding: 12px 42px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgb(166 124 0 / 36%);
}

    /* Hover */
    .btn-upgrade:hover {
        background: linear-gradient(135deg, #8c6a00, #b8860b);
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(166,124,0,0.4);
        color: #fff;
    }

    /* Active Press */
    .btn-upgrade:active {
        transform: translateY(1px) scale(0.97);
        box-shadow: 0 4px 10px rgba(166,124,0,0.4);
    }

    /* Shine Effect */
    .btn-upgrade::before {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1) );
        transform: skewX(-25deg);
        transition: 0.8s;
    }

    .btn-upgrade:hover::before {
        left: 130%;
    }

/* Floating Button Proper Bottom Right */
.floating-upgrade {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1080;
    display: none;
}

.btn-floating-upgrade {
    background: linear-gradient(90deg,#c6a700,#e6c200);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(198,167,0,0.4);
}

/* Genie Animation */
/* Remove Bootstrap animation */
.modal.show .modal-dialog {
    transform: none !important;
}

/* Modal Base */
.upgrade-modal {
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    transform-origin: bottom right;
}

/* Floating Button */
.floating-upgrade {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1080;
    display: none;
}

.btn-floating-upgrade {
    background: linear-gradient(90deg,#c6a700,#e6c200);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(198,167,0,0.4);
}

/* ========================= */
/* PERFECT GENIE ANIMATION */
/* ========================= */

.genie-open {
    animation: genieOpen 0.55s cubic-bezier(.22,1,.36,1) forwards;
}

.genie-close {
    animation: genieClose 0.45s cubic-bezier(.55,.06,.68,.19) forwards;
}

@keyframes genieOpen {
    0% {
        opacity: 0;
        transform: translate(320px, 320px) scale(0.1);
    }

    60% {
        opacity: 1;
        transform: translate(-10px, -10px) scale(1.05);
    }

    100% {
        transform: translate(0,0) scale(1);
    }
}

@keyframes genieClose {
    0% {
        opacity: 1;
        transform: translate(0,0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(320px, 320px) scale(0.1);
    }
}


/* Active Plan Vertical Card */
.active-plan-box {
    background: linear-gradient(180deg, #fffdf7, #fff8e3);
    border: 1px solid #f1e2a6;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 5px 40px rgba(198,167,0,0.12);
    transition: 0.3s ease;
    margin-bottom: 15px;
}

    .active-plan-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 25px rgba(198,167,0,0.2);
    }

/* Status */
.plan-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3c4;
    color: #8c6d00;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* Animated Green Dot */
.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(40,167,69,0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(40,167,69,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40,167,69,0);
    }
}

/* Plan Title */
.plan-title {
    font-size: 20px;
    font-weight: 700;
    color: #b48a00;
}

/* Subtext */
.plan-subtext {
    font-size: 13px;
    color: #666;
}


/*//NEW sKELTON TEXT*/
.skeleton1 {
    background: #e2e2e2;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

.skeleton1-text {
    height: 14px;
    margin: 10px 0;
    width: 100%;
}

.skeleton1-img {
    width: 100%;
    height: 200px;
}

@keyframes shimmer {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/*Trusted & vERIFIED NEW FORM*/
.modal-content {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.btn-dark:hover {
    background-color: #222;
}


.option-card {
    cursor: pointer;
    transition: all 0.25s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #0d6efd !important;
}

