﻿
:root {
    --primary: #ff7a18;
    --secondary: #ffb347;
    --bg-dark: #0f1117;
    --card-bg: #181b24;
    --text-light: #fff;
    --text-muted: #a1a5b7;
    --border-light: rgba(255,255,255,0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Poppins,sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
}

.container {
    max-width: 98%;
    margin: auto;
    padding: 18px;
}

.card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
border:1px solid white;
}

/* Enhanced Profile Card with Background */
.profile-card {
    background: var(--card-bg);
    border-radius: 22px;
    margin-bottom: 50px; /* Increase margin to accommodate buttons */
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
    overflow: visible; /* Change from hidden to visible */
    position: relative;
border:2px solid white;
}

.profile-header {
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

    .profile-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--cover-image) center / cover no-repeat;
        opacity: 0.7;
    }

    .profile-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to top, var(--card-bg), transparent);
    }


.profile-content {
    text-align: center;
    padding: 0 24px 24px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.profile-img-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
}

.profile-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--card-bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.profile-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-content p.subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.profile-content .company-tag {
       display: inline-block;
    padding: 8px 18px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid white;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

    .social-icon i {
        font-size: 20px;
        color: white!important;
    }

    .social-icon:hover {
        background: rgba(255, 165, 0, 0.2);
        transform: scale(1.05);
    }




/* Buttons */
.btn2 {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    margin-top: 12px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: white;
    border: 2px solid white !important;
}

   .btn-primary:hover {
    color: #fff;
    background-color: transparent;
    border-color: #0062cc;
}

.btn-outline {
    border: 1px solid white;
    color: var(--text-light);
    background: transparent;
}

    .btn-outline:hover {
       border-color: white;
    background: transparent;
    color: white;
    }

.section {
    margin-top: 24px;
}

    .section h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 14px;
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .section h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: white;
            border-radius: 2px;
        }

.box {
        background: #12141d;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid white;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.box2 {
    background: #12141d;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.box:hover {
    border-color: white;
    transform: translateX(4px);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}

    .gallery-grid img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 10px;
        transition: 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 4px 12px white;
        }

.testimonial {
    background: #12141d;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border-left: 3px solid white;
    font-style: italic;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.small-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Form Styles */
input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: #0f1117;
    color: var(--text-light);
    font-family: Poppins,sans-serif;
    font-size: 14px;
}

    input:focus, textarea:focus {
        outline: none;
        border-color: var(--primary);
    }

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.popup-content {
    background: linear-gradient(180deg, #5a6567 0%, #040507 100%);
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    width: 100%;
    max-width: 480px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
    color: var(--text-light);
    border-right: 2px solid #1e3238;
    border-right: 2px solid #1e3238;
    border-right: 2px solid #1e3238;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-content h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.5;
}

.popup-content .highlight-name {
    font-weight: 700;
    color: var(--text-light);
}

.popup-btn {
    background: black;
    color: white;
    padding: 4px 5px;
    border-radius: 39px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #1e3238;
    cursor: pointer;
    margin-top: 24px;
    width: 130px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
border:2px solid white;
}

    .popup-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255,255,255,0.3);
    }

.popup-close {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-size: 14px;
    margin-top: 16px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .popup-close:hover {
        opacity: 1;
    }

.save-contact-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    max-width: 444px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .save-contact-wrapper.show {
        opacity: 1;
        visibility: visible;
    }

.btn-save-contact {
    background: linear-gradient(135deg, #ff7a18, #ffab00);
    color: var(--text-light);
    padding: 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    .btn-save-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    }



/* Call & WhatsApp Action Buttons - Centered on Card Border---alam */



.action-buttons {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    width: 215px;
    max-width: 400px;
    z-index: 10;
}

.btn-call {
    flex: 1;
    background: black;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
    transition: all 0.3s ease;
    border: 2px solid white;
}

    .btn-call:hover {
        background: #2fb350;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(52, 199, 89, 0.4);
    }

.btn-whatsapp {
    flex: 1;
    background: #FFC107;
    color: #000;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

    .btn-whatsapp:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    }





.fc .fc-button-primary {
    background-color: black !important;
    border-color: white !important;
    color: var(--fc-button-text-color);
    padding: 0;
}

.fc-today-button {
    display: none !important;
}

button.fc-prev-button.fc-button.fc-button-primary {
    margin-right: 6px;
}

.fc .fc-toolbar-title {
    font-size: 17px !important;
}
































/* custom css*/
.social-linkss {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
}

    .social-linkss img {
        width: 100%;
        height: auto;
        max-width: 40px;
    }

.social-icon-align {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.txtContact {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
}


.share-icon-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.82);
    z-index: 9999;
    text-align: left;
    overflow-y: scroll;
}

    .share-icon-wrap .share-options {
        font-size: 18px;
        position: relative;
        /*top: 8px;*/
    }

    .share-icon-wrap .close {
        color: #fff;
        position: absolute;
        right: 18px;
        top: 0px;
        padding: 8px;
        cursor: pointer;
        z-index: 51;
        opacity: 1;
        font-size: 32px;
    }

    .share-icon-wrap .close {
        color: #fff;
        position: absolute;
        right: 18px;
        top: 0px;
        padding: 8px;
        cursor: pointer;
        z-index: 51;
        opacity: 1;
        font-size: 32px;
    }

    .share-icon-wrap span.share-item {
        display: inline-block;
        width: 80%;
        margin: 16px 4%;
    }

    .share-icon-wrap a {
        color: #fff;
    }



.resume .resume-item h4 {
    line-height: 26px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: white !important;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    background: none;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #fff !important;
    position: relative;
}

    .resume .resume-item::before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50px;
        left: -9px;
        top: 0;
        background: #fff;
        border: 2px solid #fff !important;
    }


.resume-item h4 a {
    color: white !important;
}


.imagesliders-slider img {
    object-fit: contain;
    width: 100%;
    border-radius: inherit;
    height: 100%;
}

.myteam-item img {
    height: 400px;
}

.team-item {
    gap: 10px;
}

.team-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}


/*loader*/
.lds-dual-ring {
    display: none;
    /*width: 80px;
    height: 80px;*/
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 16px;
        height: 16px;
        margin: 0px;
        border-radius: 50%;
        border: 2px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
        padding: 0px;
    }


@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*loader-blue*/
.lds-dual-ring-blue {
    display: none;
    /*width: 80px;
    height: 80px;*/
}

    .lds-dual-ring-blue:after {
        content: " ";
        display: block;
        width: 16px;
        height: 16px;
        margin: 0px;
        border-radius: 50%;
        border: 2px solid #149ddd;
        border-color: #149ddd transparent #149ddd transparent !important;
        animation: lds-dual-ring 1.2s linear infinite;
        padding: 0px;
    }

@keyframes lds-dual-ring-blue {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.payment-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

    .payment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

.qr-container {
    max-width: 240px;
    margin: 0 auto;
    padding: 1rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    /*        box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 35%);*/
}

    .qr-container img {
        cursor: pointer;
    }

.payment-icon {
    background-color: rgba(13,110,253,.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

    .payment-icon i {
        font-size: 40px;
    }

.modal-content {
    color: black !important;
}

a.viewUserCertificate {
    color: white;
}


.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #000000 !important;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.location {
    font-size: 13px;
    color: white;
    margin-top: 6px;
    margin-bottom: 13px;
}


.modal {
    z-index: 9999 !important;
}


.refralcode {
    color: #6f7180;
}

    .refralcode:hover {
        color: #149ddd !important;
    }


.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}


.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}


.bg-gradient-primary {
    background: linear-gradient(135deg, #ffab00, #ffab00);
}

#leadCaptureModal .modal-content {
    border-radius: 1rem;
}

#leadCaptureModal .form-control,
#leadCaptureModal .form-select {
    border-radius: 0.5rem;
    padding: 0.6rem 0.75rem;
}

#leadCaptureModal .input-group-text {
    border: none;
}

#leadCaptureModal .form-control:focus,
#leadCaptureModal .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    border-color: #fff;
}

#leadCaptureModal .btn-primary {
    background: linear-gradient(45deg, #ffab00, #ffab00);
    border: none;
}

#leadCaptureModal .modal-header {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

#leadCaptureModal .modal-footer {
    border-top: none;
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    #leadCaptureModal .modal-title {
        font-size: 1rem;
    }

    .logo-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
}


.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}


.ico {
    font-size: 20px;
    color: #149ddd;
    float: left;
    width: 44px;
    height: 44px;
    background: #dff3fc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 39px;
    margin-bottom: 10px;
    cursor: pointer;
}

    .ico:hover {
        background: #149ddd !important;
        color: #fff !important;
    }



.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}


.btn {
    /* display: block; */
    /* width: 100%; */
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    /* font-weight: 500; */
    margin-top: 10px;
    text-decoration: none;
    font-size: 15px;
}

.designation {
    font-size: 18px;
    color: white!important;
    text-decoration: underline;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.team-thumb {
    border: 2px solid white!important;
}
a {
    color: white!important;
}

.fc .fc-toolbar-title {
    font-size: 16px;
    margin: 0px;
}

.fc-prev-button {
    margin-right: 5px !important;
    border: 1px solid white !important;
}

.fc-next-button
{
border: 1px solid white !important;

}

.share-bottom-icon {

    background: black!important;
    border: 2px solid white!important;
}

.add-vcard-contact
{
 background: black!important;
    border: 2px solid white!important;

}

.back-to-top{
 background: black!important;
    border: 2px solid white!important;

}



/* Close Button (X Icon Top Right) */
.popup-close {
    position: absolute;
    top: -11px;
    /*right: 14px; */
    background: transparent;
    color: white;
    border: none;
    font-size: 21px;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    transition: all 0.3s ease;
    border: 2px solid white;
    border-radius: 100px;
    padding: 0px 4px 0 5px;
}

    .popup-close:hover {
        opacity: 1;
        transform: scale(1.1);
    }


.designation {
    color: black !important;
    text-decoration: underline black;
    font-weight: bolder !important;
}
