
/* css variables */

.mission .card_s>p i {
    color: var(--s-green-color);
    font-size: 20px;
    line-height: 1.5;
}

.mission .card_s {
    margin-top: 30px;
}

.mission .dots-img {
    position: absolute;
    right: 0;
    top: 20px;
}

.mission .left-vect {
    display: inline-block;
    position: absolute;
}

.mission .right-vect {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
}

.mission .left-vect>.vector-2 {
    margin-top: 100px;
    margin-left: 30px;
}

.mission .right-vect>.vector-6 {
    margin-left: 20px;
    margin-top: 30px;
}


/*
==========================================
   05. focus CSS
==========================================
*/

.focus-items {
    position: relative;
    text-align: end;
    display: inline-block;
}

.focus-slider.owl-carousel .owl-item img {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.focus-slider .owl-dots {
    text-align: center;
}

.focus-items>.focus-popup {
    position: relative;
    margin-right: -5%;
    margin-top: -30%;
    display: inline-block;
}

.focus-slider.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(229, 229, 229, 0.3);
    display: block;
    transition: opacity .2s ease;
    border-radius: 50%;
    background: rgba(49, 39, 131, 0.3);
    box-shadow: 0px 4px 4px 0px #00000040;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.focus-slider.owl-theme .owl-dots .owl-dot.active span,
.focus-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--s-primary-color);
}

/* ══════════ SCROLL REVEAL ══════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-l.visible {
    opacity: 1;
    transform: none;
}

.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-r.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}


/*
==========================================
   06. service CSS
==========================================
*/

#services.services-v2 {
    --primary: #3b2fb5;
    --primary-light: #5a4fc8;
    --light-bg: #f8f9fc;
    --border: #e2e4ec;
    --text-body: #495057;
    --text-muted: #6b7280;
    --card-shadow: 0 8px 24px rgba(59, 47, 181, 0.08);
    --card-shadow-hover: 0 16px 36px rgba(59, 47, 181, 0.16);
}

#services.services-v2 .section-inner {
    width: 100%;
}

#services.services-v2 .sec-header {
    text-align: center;
    margin-bottom: 28px;
}

#services.services-v2 .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

#services.services-v2 .sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.3;
}

#services.services-v2 .sec-sub {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

#services.services-v2 .divider {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

#services.services-v2 .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

#services.services-v2 .svc-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 47, 181, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#services.services-v2 .svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(59, 47, 181, 0.18);
}

#services.services-v2 .svc-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

#services.services-v2 .svc-img-banner {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#services.services-v2 .svc-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#services.services-v2 .svc-card:hover .svc-img-banner img {
    transform: scale(1.06);
}

#services.services-v2 .svc-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

#services.services-v2 .svc-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(59, 47, 181, 0.08);
    color: var(--primary);
    border: 1px solid rgba(59, 47, 181, 0.12);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#services.services-v2 .svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: #1a1a2e;
    margin-bottom: 10px;
}

#services.services-v2 .svc-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 14px;
}

#services.services-v2 .svc-points {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

#services.services-v2 .svc-points li {
    font-size: 13px;
    line-height: 1.6;
}

#services.services-v2 .svc-link {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

#services.services-v2 .svc-link:hover {
    color: var(--primary-light);
}

#services.services-v2 .services-more {
    text-align: center;
    margin-top: 30px;
}

#services.services-v2 .btn-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.22s;
}

#services.services-v2 .btn-fill:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    #services.services-v2 .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #services.services-v2 .services-grid {
        grid-template-columns: 1fr;
    }

    #services.services-v2 .svc-body {
        padding: 18px;
    }
}

.service .dots-img {
    position: absolute;
    left: 0;
    top: 20px;
}

.service-item.active,
.service-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.service-item .service-content {
    height: 100%;
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    padding: 20px 15px;
    flex-direction: column;
}

.service-item .service-content>.c-title {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 0px;
    z-index: 2;
    position: relative;
}

.service-item.active .overlay1::after,
.service-item:hover .overlay1::after {
    opacity: 1;
    z-index: 1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


/*

==========================================
   07. prjocect CSS
==========================================
*/

.project-item.active.overlay3:after,
.project-item.active .overlay-content,
.project-item:hover.overlay3:after,
.project-item:hover>.overlay-content {
    visibility: visible;
    opacity: 1;
}


/* .project-item:hover>.overlay-content {
    z-index: 5;
} */


/*
==========================================
   08. gallery v2 CSS
==========================================
*/

#gallery.gallery-v2 {
    --primary: #3b2fb5;
    --primary-light: #5a4fc8;
    --light-bg: #f8f9fc;
    --border: #e2e4ec;
    --text-body: #495057;
    --text-muted: #6b7280;
    --card-shadow: 0 8px 24px rgba(59, 47, 181, 0.08);
    background: var(--light-bg);
}

#gallery.gallery-v2 .section-inner {
    width: 100%;
}

#gallery.gallery-v2 .sec-header {
    text-align: center;
    margin-bottom: 24px;
}

#gallery.gallery-v2 .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

#gallery.gallery-v2 .sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.3;
}

#gallery.gallery-v2 .sec-sub {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

#gallery.gallery-v2 .divider {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

#gallery.gallery-v2 .gallery-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
}

#gallery.gallery-v2 .more-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

#gallery.gallery-v2 .more-link:hover {
    color: var(--primary-light);
}

#gallery.gallery-v2 .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

#gallery.gallery-v2 .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.32s;
    position: relative;
    box-shadow: var(--card-shadow);
    aspect-ratio: 4 / 3;
}

#gallery.gallery-v2 .gallery-item > a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

#gallery.gallery-v2 .gallery-item.text-tile {
    background: linear-gradient(160deg, var(--primary), var(--primary-light));
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#gallery.gallery-v2 .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(59, 47, 181, 0.22);
    z-index: 1;
}

#gallery.gallery-v2 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}

#gallery.gallery-v2 .gallery-item:hover img {
    transform: scale(1.06);
}

#gallery.gallery-v2 .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 10, 74, 0.84) 0%, rgba(17, 10, 74, 0.22) 48%, rgba(17, 10, 74, 0.04) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transition: opacity 0.3s;
    padding: 18px;
}

#gallery.gallery-v2 .gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#gallery.gallery-v2 .gallery-cat {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

#gallery.gallery-v2 .gallery-title {
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

#gallery.gallery-v2 .gallery-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    flex-shrink: 0;
}

#gallery.gallery-v2 .gallery-text-kicker {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    margin-bottom: 12px;
}

#gallery.gallery-v2 .gallery-text-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 10px;
}

#gallery.gallery-v2 .gallery-text-body {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    #gallery.gallery-v2 .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #gallery.gallery-v2 .gallery-topbar {
        justify-content: flex-start;
    }

    #gallery.gallery-v2 .gallery-grid {
        grid-template-columns: 1fr;
    }

    #gallery.gallery-v2 .gallery-item.text-tile {
        padding: 22px;
    }
}

/*
==========================================
   08. collabrator CSS
==========================================
*/

.collaborator .sec-header {
    text-align: center;
    margin-bottom: 28px;
}

.collaborator .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3b2fb5;
    margin-bottom: 8px;
}

.collaborator .sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    line-height: 1.25;
}

.collaborator .divider {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b2fb5, #5a4fc8);
}

.collaborator-slider.com-slider.owl-theme .owl-nav [class*=owl-] {
    top: 20%;
    color: var(--s-primary-color);
    background-color: var(--white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.collaborator-slider.com-slider .owl-nav button.owl-next {
    right: -5.5%;
}

.collaborator-slider.com-slider .owl-nav button.owl-prev {
    left: -5.5%;
}

.collaborator-slider .owl-stage {
    display: flex;
}

.collaborator-slider .owl-item {
    display: flex;
}

.collaborator-slider .collaborator-card {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.collaborator-slider .collaborator-items {
    width: 100%;
    min-height: 140px;
    height: 100%;
    border: 1px solid #eceff5;
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.collaborator-slider .collaborator-items:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(49, 39, 131, 0.2);
}

.collaborator-slider .collaborator-items img {
    width: 100%;
    max-width: 170px;
    height: 72px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .collaborator-slider .collaborator-items {
        min-height: 120px;
        padding: 14px;
    }
}


/*
==========================================
   09. team member CSS
==========================================
*/

.team-member .team-select {
    background-color: var(--s-primary-color);
    color: var(--white);
    border-radius: 5px;
    padding: 5px 10px;
}

.team-wrapper .team-member-service {
    padding: 25px;
}

.team-member-service .facebook {
    color: #3b5998
}

.team-member-service .google {
    color: #dc4e41
}

.team-member-service .linkedin {
    color: #0077b5
}

.team-member-service .twitter {
    color: #55acee
}

.done-btn {
    background: rgba(49, 39, 131, 0.2);
    color: rgba(255, 255, 255, 0.5);
    border: transparent;
}


/*
==========================================
   10. news CSS
==========================================
*/

.news-bg {
    background-repeat: no-repeat;
    width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 1;
    background-size: cover;
    padding: 80px 0px;
}


/* .news-bg .heading {
    display: inline-block;
} */

.news-bg .heading .s-heading {
    color: rgba(255, 255, 255, 0.5);
}

.news-bg .heading .s-sub-heading {
    color: var(--white);
}

.news .news-content {
    padding: 30px 40px;
    max-width: 355px;
    width: 100%;
    min-height: 355px;
    height: 100%;
    margin-left: auto;
    margin-top: -100px;
    position: relative;
    z-index: 55;
}

.news .news-content .text-truncate {
    white-space: normal;
}

.news-items {
    transition: all .3s;
    overflow: hidden;
    position: relative;
}

.news-wrapper-cont {
    transition: all .3s;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 10px;
}

.news .news-content .icons-r {
    top: -45px;
}


/* .news-items:hover {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
} */

.news-items.active .action-btn,
.news-items:hover .action-btn {
    opacity: 1;
    margin-top: -35px;
    transition: .4s cubic-bezier(.87, -.41, .19, 1.44);
    transition-delay: .1s;
}

.news-items.active .bg-overlay,
.news-items:hover .bg-overlay {
    right: 0;
    bottom: 0;
    opacity: 1;
    transform: scale(10) translateZ(0);
}

.news-items.active .c-title,
.news-items:hover .c-title {
    color: var(--s-green-color);
}


/*
==========================================
   11. testimonial CSS
==========================================
*/

.testimonial .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

.testimonial .owl-item.active {
    opacity: 1;
}

.testimonial-c>p {
    padding: 15px 0px;
}

.testimonial>.overlay::after {
    width: 59%;
    right: 0;
    left: auto;
}

.testimonial .testimonial-slider.owl-carousel {
    width: 55%;
    z-index: 1;
    position: absolute;
    top: 0rem;
    height: 100%;
    transform: translateY(15%);
    right: 2%;
    -webkit-transform: translateY(15%);
    -moz-transform: translateY(15%);
    -ms-transform: translateY(15%);
    -o-transform: translateY(15%);
}

.testimonial .testimonial-slider.owl-carousel .profile-img>img {
    /* max-width: 80px; */
    width: 80px;
}

.testimonial-slider.com-slider.owl-theme .owl-nav [class*=owl-] {
    top: 55%;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--s-primary-color);
}

.testimonial-slider.com-slider .owl-nav button.owl-next {
    right: auto;
    left: calc(-42% - -8px);
}

.testimonial-slider.com-slider .owl-nav button.owl-prev {
    right: auto;
    left: -50%;
}


/*
==========================================
   12. faq CSS
==========================================
*/

.faq .accordion-button {
    background: #F8F8F8;
    color: var(--paragraph-color);
}

.faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed)::after {
    /* background-image: url(../img/icons/minus.png); */
    background-image: none;
    transform: rotate(0deg);
    content: "\f068";
    color: var(--s-primary-color);
}

.faq .accordion-button::after {
    display: flex;
    margin-left: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--s-primary-color);
    background-color: #F8F8F8;
    box-shadow: none;
    /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); */
}

.faq .accordion-item {
    border: none;
    background-color: #F8F8F8;
    margin-bottom: 20px;
    padding: 8px 66px;
}


/* .faq .accordion-item .accordion-header {
    margin-bottom: 20px;
} */


/*
==========================================
   14. contact CSS
==========================================
*/

.contact .con-contetnt h4 {
    color: red;
    padding-top: 15px;
}

.contact .contact-form {
    background: var(--s-primary-color);
    padding: 35px 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact .contact-form label {
    margin-bottom: 0px;
}

.contact .contact-form label span {
    color: red;
    font-size: 18px;
}

.contact-form [class*=col-] {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: none;
}


/*
==========================================
   15. sign CSS
==========================================
*/

.social-login .f-s-icon>a {
    display: inline-block;
    text-align: center;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.social-login .f-s-icon>.so-f {
    background: #2F80EC;
}

.social-login .f-s-icon>.so-t {
    background: #61CFF3;
}

.social-login .f-s-icon>.so-l {
    background: #2D9CDB;
}

.social-login .f-s-icon>.so-i {
    background: #2D9CDB;
}

.social-login .f-s-icon>.so-g {
    background: #E9455A;
}

.terms {
    display: block;
    margin-top: 15px;
}

.terms input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.terms label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    line-height: 23px;
    color: var(--gray);
}

.terms label:before {
    content: '';
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--s-green-color);
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 8px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: -30px;
    margin-right: 8px;
    margin-top: 0px;
}

.terms input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid var(--s-green-color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contact-form i {
    margin-left: -30px;
    cursor: pointer;
}

.show-p .fa-eye {
    float: right;
    margin-right: 15px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}


/* Modal */

.modal-form .con-contetnt h4 {
    color: red;
    padding-top: 15px;
}

.modal-form .contact-form {
    background: var(--s-primary-color);
    padding: 25px 20px;
}

.modal-form .contact-form label {
    margin-bottom: 0px;
}

.modal-form .contact-form label span {
    color: red;
    font-size: 18px;
}

.modal-form .contact-form .form-control {
    border: none;
}

.modal-form .contact-form [class*=col-] {
    margin-bottom: 10px;
}

.modal-form .modal-content {
    padding: 0px;
}


/* for user */
.topbar-dropdown .nav-item .nav-link .img-profile {
    height: 2rem;
    width: 2rem;
}
/* .dropdown  */

.topbar-dropdown .dropdown .dropdown-menu {
    font-size: 0.85rem;
}

.topbar-dropdown .dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.topbar-dropdown .dropdown-list-image img {
    width: 50px;
}

.topbar-dropdown .nav-item.dropdown .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
}

.topbar-dropdown .nav-item.dropdown.show .dropdown-toggle::after {
    content: '\f107';
}

.topbar-dropdown .dropdown-menu {
    color: #858796;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
}

.topbar-dropdown .dropdown {
    position: relative;
}

.topbar-dropdown .dropdown .dropdown-menu .dropdown-header {
    font-weight: 800;
    font-size: .65rem;
    color: #b7b9cc;
}

.topbar-dropdown .dropdown-list .dropdown-item,
.topbar-dropdown .dropdown-list .dropdown-item {
    white-space: normal;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-right: 1px solid #e3e6f0;
    border-bottom: 1px solid #e3e6f0;
    line-height: 1.3rem;
    padding: 0.25rem 1rem;
    font-size: 14px;
}

.topbar-dropdown .dropdown-list .dropdown-item .topbar-dropdown .dropdown-list {
    width: 20rem !important;
}

.topbar-dropdown .dropdown-list {
    padding: 0;
    border: none;
    overflow: hidden;
}

.topbar-dropdown .dropdown-menu {
    position: absolute;
    top: 43px;
    right: 0;
    width: 200px;
    margin-left: auto;
}

.topbar-dropdown .dropdown-list .dropdown-item .text-truncate {
    max-width: 13.375rem;
}

.topbar-dropdown.navbar-light .navbar-nav .nav-item .nav-link {
    color: #d1d3e2;
}

.topbar-dropdown.navbar-light .navbar-nav .nav-item .nav-link:hover {
    color: #b7b9cc;
}

.topbar-dropdown .nav-item .nav-link {
    height: 3.5rem;
    display: flex;
    align-items: center;
}


.blog-page .blog .widget-sidebar {
    position: sticky;
    top: 108px;
}


.news .feature-items .sub-title {
    letter-spacing: 0;
}

.nav-bor.der .nav {
    row-gap: 10px;
}

/* ==========================================
   Hero V2
========================================== */

.hero {
    margin-top: var(--nav-h);
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: auto auto -120px -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0) 72%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.04);
    transition: background-image 0.6s ease, filter 0.6s ease;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95));
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(16, 10, 74, 0.95) 0%, rgba(42, 31, 160, 0.87) 42%, rgba(59, 47, 181, 0.74) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;

    margin: 0 auto;
    padding: 110px 0 150px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 34px;
    align-items: center;
}

.hero-copy {
    text-align: left;
    max-width: 700px;
}

/* Touch devices: allow vertical scroll; swipe handled in JS on touchend */
@media (hover: none) and (pointer: coarse) {
    .hero-copy--swipe {
        -webkit-user-select: none;
        user-select: none;
    }
}

.slide {
    display: none;
    animation: fadeSlide 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

.hero-eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    display: block;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -1.2px;
}

.hero-title .hl {
    background: linear-gradient(90deg, #fff 0%, #ded8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    max-width: 610px;
    margin: 0 0 28px;
    line-height: 1.72;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.2px;
}

.hbtn-solid {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hbtn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.hbtn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.36);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.hbtn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.hero-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
}

.hero-side {
    display: flex;
    justify-content: flex-end;
}

.hero-panel {
    width: min(100%, 390px);
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 26px 50px rgba(13, 12, 39, 0.28);
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-panel-kicker {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.hero-panel-badge {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.28;
    color: #fff;
    margin-bottom: 10px;
}

.hero-panel-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 18px;
}

.hero-panel-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-metric {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-metric span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    display: block;
}

.hero-panel-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.hero-panel-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12.5px;
    line-height: 1.6;
}

.hero-panel-list li::before {
    content: '•';
    color: #fbbf24;
    font-size: 18px;
    line-height: 1;
    margin-top: -1px;
}

.hero-dots-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 28px;
}

.hero-dots {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-dot {
    appearance: none;
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    min-width: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    border: 0;
    outline: none;
    padding: 0;
    transition: all 0.28s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.64);
}

.hero-dot.active {
    background: #fff;
    width: 28px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev {
    left: 28px;
}

.hero-arrow.next {
    right: 28px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: center;
    z-index: 2;
}

.hstat {
    flex: 1;
    max-width: 220px;
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hstat:last-child {
    border: none;
}

.hstat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hstat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 4px;
}
.cv-clinic{
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .hero-panel{
        width: 100%;
        margin-bottom: 30px;
    }
    .hero-arrow{
        display: none;
    }
    .hero-content {
        padding: 96px 0 146px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-side {
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        width: min(1180px, calc(100% - 32px));
        padding: 84px 0 152px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hstat {
        min-width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .hero-arrow {
        display: none;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }

    .hero-content {
        width: min(1180px, calc(100% - max(24px, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px))));
        padding: 72px 0 max(176px, calc(160px + env(safe-area-inset-bottom, 0px)));
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 44px);
        letter-spacing: -0.6px;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-dots {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 10px 14px;
    }

    .hero-dot {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        position: relative;
    }

    .hero-dot::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.38);
        transition: width 0.28s ease, background 0.28s ease;
    }

    .hero-dot:hover::before {
        background: rgba(255, 255, 255, 0.64);
    }

    .hero-dot.active::before {
        width: 26px;
        background: #fff;
    }

    .hbtn {
        width: 100%;
        justify-content: center;
    }

    .hero-panel-metrics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CTA Strip
========================================== */

.cta-strip {
    --primary: #3b2fb5;
    --primary-deep: #221966;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    padding: 68px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 0;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(98, 84, 232, 0.45) 0%, transparent 68%);
}

.cta-strip h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-strip p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-white {
    background: #fff;
    color: var(--primary);
    padding: 13px 34px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s;
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-border {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    padding: 13px 34px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s;
}

.cta-border:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Remove gap between home CTA and footer */
.home-page + #footer .footer {
    margin-top: 0;
}

/* ==========================================
   Footer V2
========================================== */
#footer {
    position: relative;
}

#footer .footer {
    --primary-light: #5a4fc8;
    background: linear-gradient(160deg, #0d0b2e 0%, #12105a 45%, #0d0b2e 100%);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
    padding: 0 0 220px;
    /* Override default.css .footer { margin-top: 80px } — removes gap above footer when content is not .home-page + #footer */
    margin-top: 30px;
}

#footer .f-bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 350px;
    opacity: 0.7;
    pointer-events: none;
}

#footer .f-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#footer .footer-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    opacity: 0.8;
    pointer-events: none;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), #6254e8, var(--primary-light), transparent);
}

#footer::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(80, 72, 212, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

#footer .footer-inner {
   
    margin-top: 30px;
    padding: 72px  0;
    position: relative;
    z-index: 1;
}

#footer .footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.9fr 0.9fr 1.5fr;
    gap: 48px;
    margin-bottom: 0;
    padding-bottom: 56px;
}

#footer .footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}

#footer .footer-logo-link {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

#footer .footer-logo-svg {
    width: 50px;
    height: 50px;
}

#footer .footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    border-radius: 8px;
}

#footer .footer-logo-text .name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
    letter-spacing: -0.2px;
}

#footer .footer-logo-text .sub {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.55);
}

#footer .footer-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 20px;
    text-align: left;
}


#footer .footer-socials {
    display: flex;
    gap: 9px;
}

#footer .fsoc {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.22s;
}

#footer .fsoc:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(80, 72, 212, 0.4);
}

#footer .fsoc.fb:hover {
    background: #1877f2;
    border-color: #1877f2;
}

#footer .fsoc.tw:hover {
    background: #111111 !important;
    border-color: #111111 !important;
    color: #fff;
}

#footer .fsoc.li:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

#footer .fsoc.ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
}

#footer .footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

#footer .footer-col-title::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 2px;
    display: inline-block;
}

#footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

#footer .footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

#footer .footer-links a::before {
    content: '›';
    color: var(--primary-light);
    font-size: 15px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

#footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

#footer .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

#footer .offices-title {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

#footer .offices-title::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary-light);
    border-radius: 2px;
    display: inline-block;
}

#footer .office-dropdown {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

#footer .office-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

#footer .office-header:hover {
    background: rgba(255, 255, 255, 0.06);
}

#footer .office-flag-name {
    display: flex;
    align-items: center;
    gap: 9px;
}

#footer .office-flag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.8);
}

#footer .office-country {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

#footer .office-city {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

#footer .office-chevron {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s;
}

#footer .office-dropdown.is-open .office-chevron {
    transform: rotate(180deg);
}

#footer .office-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
    border-top: 0 solid rgba(255, 255, 255, 0.07);
}

#footer .office-dropdown.is-open .office-body {
    max-height: 220px;
    border-top-width: 1px;
}

#footer .office-detail {
    padding: 14px;
}

#footer .office-addr {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 8px;
    display: flex;
    gap: 7px;
}

#footer .office-addr-icon {
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

#footer .office-phone {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
}

#footer .office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(80, 72, 212, 0.18);
    border: 1px solid rgba(80, 72, 212, 0.3);
    border-radius: 6px;
    transition: all 0.2s;
}

#footer .office-map-link:hover {
    background: rgba(80, 72, 212, 0.35);
    color: #fff;
}

#footer .office-quick-phone {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    gap: 6px;
}

#footer .footer-subscribe {
    margin-top: 18px;
}

#footer .footer-subscribe-label {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

#footer .subscribe-form {
    display: flex;
    gap: 0;
}

#footer .subscribe-input {
    flex: 1;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Poppins', sans-serif;
}

#footer .subscribe-input:focus {
    border-color: rgba(80, 72, 212, 0.5);
    background: rgba(255, 255, 255, 0.09);
}

#footer .subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

#footer .subscribe-btn {
    padding: 10px 18px;
    background: var(--primary-light);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s;
    font-family: 'Poppins', sans-serif;
}

#footer .subscribe-btn:hover {
    background: #6254e8;
    box-shadow: 0 4px 14px rgba(80, 72, 212, 0.5);
}

#footer .footer-bottom-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 48px 28px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.68);
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

#footer .footer-bottom-wrap a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

#footer .footer-bottom-right {
    display: flex;
    gap: 18px;
}

#footer .footer-bottom-right a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.2s;
}

#footer .footer-bottom-right a:hover {
    color: rgba(255, 255, 255, 0.8);
}

#footer .footer-reg {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 4px;
}

@media (max-width: 1199px) {
    #footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 767px) {
    #footer .footer {
        padding-bottom: 220px;
    }

    #footer .f-bottom-img {
        height: 230px;
    }

    #footer .footer-inner {
        padding: 52px 18px 0;
    }

    #footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 36px;
    }

    #footer .footer-bottom-wrap {
        padding: 18px 18px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #footer .footer-bottom-right {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .cta-strip {
        padding: 48px 20px;
    }

    .cta-strip p {
        font-size: 14px;
    }

    .cta-white,
    .cta-border {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ==========================================
   Projects V2
========================================== */
#projects {
    --primary: #3b2fb5;
    --card-shadow: 0 8px 24px rgba(59, 47, 181, 0.08);
    --card-shadow-hover: 0 16px 36px rgba(59, 47, 181, 0.2);
    --radius: 16px;
    background: #fff;
}

#projects .section-inner {
    width: 100%;
}

#projects .sec-header {
    text-align: center;
    margin-bottom: 28px;
}

#projects .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

#projects .sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.3;
}

#projects .divider {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b2fb5, #5a4fc8);
}

#projects .projects-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

#projects .more-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

#projects .more-link:hover {
    text-decoration: underline;
    color: var(--primary);
}

#projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

#projects .proj-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

#projects .proj-card:hover {
    transform: scale(1.02);
    box-shadow: var(--card-shadow-hover);
}

#projects .proj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}

#projects .proj-card:hover img {
    transform: scale(1.07);
}

#projects .proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 100, 0.8) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.3s;
}

#projects .proj-card:hover .proj-overlay {
    opacity: 1;
}

#projects .proj-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

#projects .proj-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    #projects .projects-grid {
        grid-template-columns: 1fr;
    }
}