/********** Template CSS **********/
:root {
    --primary: #0964B3;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 35px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer p,
.footer a {
    font-size: 14px;
}

.glx_bncts_top {
    background: #0d47a1;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
    transition: 0.4s;
}

.glx_bncts_top.hide {
    transform: translateY(-100%);
}

.glx_bncts_topWrap {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.glx_bncts_nav {
    position: sticky;
    top: 0;
    z-index: 999;

}

.glx_bncts_navInner {
    max-width: 1100px;
    margin: auto;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}



/* ===== LOGO ===== */
.glx_bncts_logoBox {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;

    background: #fff;
    padding: 10px 25px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.glx_bncts_logoBox img {
    height: 55px;
}

/* Smooth hide effect */
.glx_bncts_logoBox {
    transition: all 0.4s ease;
}

/* Hidden state */
.glx_hide_logo {
    opacity: 0;
    transform: translate(-50%, -20px);
    pointer-events: none;
}

/* ===== MENU SECTION ===== */
.glx_bncts_menuWrap {
    display: flex;

    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.glx_bncts_menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* ===== LINKS ===== */
.glx_bncts_menu li a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE */
.glx_bncts_menu li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #0d47a1;
    left: 0;
    bottom: -6px;
    transition: 0.4s ease;
}

.glx_bncts_menu li a:hover {
    color: #0d47a1;
}

.glx_bncts_menu li a:hover::after {
    width: 100%;
}

/* ===== BUTTON ===== */
.glx_bncts_btn {
    position: absolute;
    right: 25px;


    background: #0d47a1;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.glx_bncts_btn:hover {
    transform: scale(1.05);
}

/* ===== TOGGLE ===== */
.glx_bncts_toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
}

/* ===== MOBILE (UNCHANGED) ===== */
@media(max-width:900px) {

    .glx_bncts_navInner {
        flex-direction: column;
        border-radius: 20px;
        padding: 0;
    }

    .glx_bncts_menu {
        display: flex;
        list-style: none;
        gap: 0px;
    }

    .glx_bncts_logoBox {
        position: static;
        transform: none;

    }

    .glx_bncts_menuWrap {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease;
    }

    .glx_bncts_menuWrap.active {
        max-height: 600px;
        margin-top: 10px;
    }

    .glx_bncts_menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .glx_bncts_menu li a {
        padding: 10px 0;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid #eee;
    }

    .glx_bncts_toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        background: #0d47a1;
        color: #fff;
        padding: 8px 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .glx_bncts_btn {
        display: none;
    }
}

.xz91_wrap {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

/* ===== SLIDES ===== */
.xz91_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease;
}

.xz91_slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ===== LEFT SIDE (NEW THEME) ===== */
.xz91_left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding: 60px;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    overflow: hidden;
}

/* DIAGONAL OVERLAY */
.xz91_left::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-25deg);
    left: -60%;
}

/* CONTENT */
.xz91_content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.xz91_content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    transform: translateX(-50px);
    opacity: 0;
    color: #fff;
    transition: 0.8s;
}

.xz91_content p {
    margin-bottom: 20px;
    transform: translateX(-50px);
    opacity: 0;
    transition: 1s;
}

.xz91_content a {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transform: translateX(-50px);
    opacity: 0;
    transition: 1.2s;
}

/* ACTIVE TEXT */
.xz91_slide.active h1,
.xz91_slide.active p,
.xz91_slide.active a {
    transform: translateX(0);
    opacity: 1;
}

/* ===== RIGHT IMAGE ===== */
.xz91_right {
    width: 50%;
}

.xz91_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ARROWS ===== */
.xz91_nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.xz91_btn {
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.xz91_btn:hover {
    background: #ffcc00;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .xz91_slide {
        flex-direction: column;
    }

    .xz91_left,
    .xz91_right {
        width: 100%;
        height: auto;
        min-height: 500px;
        /* optional minimum */
    }

    .xz91_content h1 {
        font-size: 26px;
    }
}

/* TAGLINE */
.xz91_tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffcc00;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* MAIN TITLE */
.xz91_content h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* SUBTITLE */
.xz91_content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #e3f2fd;
}

/* PARAGRAPH */
.xz91_content p {
    font-size: 15px;
    line-height: 1.6;
    color: #dfe6ff;
    margin-bottom: 25px;
    max-width: 450px;
}

/* BUTTON ENHANCEMENT */
.xz91_content a {
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.xz91_content a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    z-index: -1;
    transition: 0.4s;
}

.xz91_content a:hover {
    color: #fff;
}

.xz91_content a:hover::after {
    width: 100%;
}

.abtG_wrap {
    padding: 30px 20px;
}

.abtG_container {
    max-width: 1100px;
    margin: auto;
}

/* CARD DESIGN */
.abtG_card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* SAME ANIMATION */
.abtG_item {
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.7s ease;
}

.abtG_item.show {
    transform: translateY(0);
    opacity: 1;
}

.abtG_item.hide {
    transform: translateY(80px);
    opacity: 0;
}

/* IMAGE */
.abtG_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT SIDE */
.abtG_content {
    padding: 40px;
}

.abtG_tag {
    background: #0d47a1;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.abtG_content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.abtG_content h4 {
    color: #555;
    margin-bottom: 15px;
}

.abtG_content p {
    color: #000;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FEATURE LIST */
.abtG_list {
    margin: 20px 0;
}

.abtG_list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
}

.abtG_btn {
    display: inline-block;
    padding: 12px 26px;
    background: #0d47a1;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.abtG_btn:hover {
    background: #ffcc00;
    color: #000;
}

/* MOBILE */
@media(max-width:768px) {
    .abtG_card {
        grid-template-columns: 1fr;
    }

    .abtG_content {
        padding: 25px;
    }
}

.srvZ_wrap {
    padding: 80px 20px;
}

/* HEADING */
.srvZ_head {
    text-align: center;
    margin-bottom: 50px;
}

.srvZ_head span {
    background: #0d47a1;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.srvZ_head h2 {
    font-size: 32px;
    margin-top: 10px;
}

/* ROW */
.srvZ_row {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.srvZ_card {
    flex: 0 0 calc(20% - 16px);
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform: scale(1.2);
    opacity: 0;
    transition: 0.5s ease;
}

/* ZOOM OUT ANIMATION */
.srvZ_card.show {
    transform: scale(1);
    opacity: 1;
}

/* IMAGE */
.srvZ_card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.srvZ_card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

/* HOVER EXPAND */
.srvZ_card:hover {
    flex: 3;
}

/* IMAGE ZOOM */
.srvZ_card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.srvZ_content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.srvZ_title {
    font-size: 18px;
    font-weight: 600;
}

.srvZ_desc {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

/* SHOW TEXT */
.srvZ_card:hover .srvZ_desc {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
/* MOBILE FIX */
/* MOBILE FIX FOR ALL DEVICES */
/* DESKTOP / LARGE SCREENS */
.srvZ_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.srvZ_card {
    flex: 1;
    height: 320px;
    transform: scale(1);
    opacity: 1;
}

/* TABLET: 2 CARDS PER ROW */

@media (max-width: 992px) {
    .srvZ_card {
        flex: 0 0 calc(50% - 15px);
        /* 2 per row with gap */
        height: 280px;
    }

    .srvZ_card:hover {
        flex: 0 0 calc(50% - 15px);
        /* prevent hover expansion */
    }

    .srvZ_desc {
        opacity: 1;
        transform: none;
        /* always show description */
    }
}

@media (max-width: 768px) {
    .srvZ_card {
        flex: 0 0 calc(50% - 15px);
        /* 2 per row with gap */
        height: 280px;
    }

    .srvZ_card:hover {
        flex: 0 0 calc(50% - 15px);
        /* prevent hover expansion */
    }

    .srvZ_desc {
        opacity: 1;
        transform: none;
        /* always show description */
    }
}

/* MOBILE: 1 CARD PER ROW */
@media (max-width: 520px) {
    .srvZ_card {
        flex: 0 0 100%;
        /* 1 per row */
        height: 250px;
    }

    .srvZ_card:hover {
        flex: 0 0 100%;
    }
}


/* SECTION WRAPPER */
.product-wrap {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0f2b, #1e2a4b);
    color: #fff;
}

/* SECTION HEADING */
.product-head {
    text-align: center;
    margin-bottom: 60px;
}

.product-head span {
    background: #ffb703;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    color: #000;
}

.product-head h2 {
    margin-top: 10px;
    font-size: 34px;
    color: #fff;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD DESIGN */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transform: translateY(50px) scale(1.1);
    opacity: 0;
    transition: 0.6s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* CARD IMAGE */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* CONTENT */
.product-content {
    padding: 50px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* HOVER EFFECT */
.product-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* SHOW ANIMATION */
.product-card.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}



/* RESPONSIVE */
@media(max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WRAPPER ===== */
.gallery_wrap {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
.gallery_head {
    text-align: center;
    margin-bottom: 50px;
}

.gallery_head span {
    background: #2563eb;
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 12px;
}

.gallery_head h2 {
    font-size: 32px;
    margin-top: 10px;
}

/* ===== GRID (3 PER ROW) ===== */
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===== CARD ===== */
.gallery_item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 250px;

    transform: scale(0.9) translateY(40px);
    opacity: 0;
    transition: 0.5s ease;
}

/* ===== IMAGE ===== */
.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* ===== HOVER ===== */
.gallery_item:hover img {
    transform: scale(1.1);
}

/* ===== ANIMATION ===== */
.gallery_item.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ===== MODAL ===== */
.gallery_modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery_modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* CLOSE BUTTON */
.gallery_modal span.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* ARROWS */
.gallery_modal span.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    opacity: 0.8;
    transition: 0.3s;
}

.gallery_modal span.arrow:hover {
    opacity: 1;
}

.gallery_modal span.prev {
    left: 30px;
}

.gallery_modal span.next {
    right: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery_item {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery_grid {
        grid-template-columns: 1fr;
    }

    .gallery_item {
        height: 200px;
    }
}

/* CONTACT SECTION */
.contact_wrap {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Heading */
.contact_head {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact_head.active {
    opacity: 1;
    transform: translateY(0);
}

.contact_head span {
    background: #2563eb;
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 12px;
}

.contact_head h2 {
    margin-top: 10px;
    font-size: 32px;
    color: #111827;
}

/* Grid Layout */
.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* CONTACT INFO */
.contact_info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.contact_info.active {
    opacity: 1;
    transform: translateX(0);
}

.contact_info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.contact_info p,
.contact_info a {
    margin-bottom: 10px;
    color: #374151;
    text-decoration: none;
}

.contact_info a:hover {
    color: #2563eb;
}

.social_links a {
    margin-right: 15px;
    color: #2563eb;
    font-weight: 500;
    transition: 0.3s;
}

.social_links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* CONTACT FORM */
.contact_form {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.contact_form.active {
    opacity: 1;
    transform: translateX(0);
}

.contact_form form {
    display: flex;
    flex-direction: column;
}

.field_wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.field_wrap label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
}

.field_wrap input,
.field_wrap textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.field_wrap input:focus,
.field_wrap textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.contact_form button {
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact_form button:hover {
    background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact_grid {
        grid-template-columns: 1fr;
    }

    .contact_wrap {
        padding: 60px 15px;
    }
}

/* TOP SHAPE */
.animated_footer_top {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #2563eb;
    border-radius: 50% 50% 0 0;
}

/* CONTAINER GRID */
.animated_footer_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    position: relative;
    z-index: 2;
}

/* HEADINGS */
.animated_footer_container h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.animated_footer_container h3 span {
    color: #2563eb;
}

/* PARAGRAPHS AND LINKS */
.animated_footer_container p,
.animated_footer_container a,
.animated_footer_container li {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.6;
}

.animated_footer_container a:hover,
.animated_footer_container li:hover {
    color: #1d4ed8;
}

/* LINKS LIST */
.animated_footer_links ul {
    list-style: none;
    padding: 0;
}

.animated_footer_links ul li {
    margin-bottom: 10px;
}

/* CONTACT INFO ICONS */
.animated_footer_contact p i {
    color: #fff;
    margin-right: 10px;
    animation: bounce 2s infinite;
}

/* SOCIAL LINKS */
.animated_footer_social a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s;
}

.animated_footer_social a:hover {
    color: #1d4ed8;
    transform: rotate(20deg) scale(1.2);
}

/* BOTTOM BAR */
.animated_footer_bottom {
    text-align: center;
    padding: 20px;
    background: #0e0f0f;
    font-size: 14px;
    color: #ffffff;
}

.animated_footer_bottom p {
    margin-bottom: 0;
}

/* ICON ANIMATION */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .animated_footer_container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 80px 20px 30px;
    }
}

@media(max-width:600px) {
    .animated_footer_container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .animated_footer_social a {
        margin-right: 10px;
    }
}

.animated_footer_wrap {
    position: relative;
    background: #113072;
    color: #f9fafb;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.nxHero_wrap_77 {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== OVERLAY ===== */
.nxHero_wrap_77::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(9, 40, 106, 0.5));
}

/* ===== CONTENT BOX ===== */
.nxHero_box_77 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 20px;
}

/* ===== TITLE ===== */
.nxHero_title_77 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.nxHero_title_77 span {
    color: #ffc107;
}

/* ===== SUBTEXT ===== */
.nxHero_sub_77 {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ffffff;
}

/* ===== BUTTONS ===== */
.nxHero_btns_77 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nxHero_btn_77 {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nxHero_main_77 {
    background: #fbfcfc;
    color: #000;
}

.nxHero_main_77:hover {
    transform: translateY(-3px);
}

.nxHero_outline_77 {
    border: 1px solid #fff;
    color: #fff;
}

.nxHero_outline_77:hover {
    background: #fff;
    color: #000;
}

/* ===== ANIMATION ===== */
.nxHero_title_77,
.nxHero_sub_77,
.nxHero_btns_77 {
    opacity: 0;
    transform: translateY(30px);
    animation: nxFadeUp 0.8s ease forwards;
}

.nxHero_title_77 {
    animation-delay: 0.2s;
}

.nxHero_sub_77 {
    animation-delay: 0.4s;
}

.nxHero_btns_77 {
    animation-delay: 0.6s;
}

@keyframes nxFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .nxHero_title_77 {
        font-size: 28px;
    }

    .nxHero_wrap_77 {
        position: relative;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .nxHero_sub_77 {
        font-size: 15px;
    }
}
.wa-sticky {
        position: fixed;
        left: 15px;
        bottom: 25px;
        z-index: 9999;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    /* ICON */
    .wa-sticky img {
        width: 48px;
        height: 48px;
        cursor: pointer;
        
        transition: 0.3s;
    }

    /* HOVER EFFECT */
    .wa-sticky:hover img {
        transform: scale(1.1);
    }

    /* TOOLTIP TEXT */
    .wa-tooltip {
        margin-left: 10px;
        background: #fff;
        color: #000;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(-10px);
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* SHOW TOOLTIP ON HOVER */
    .wa-sticky:hover .wa-tooltip {
        opacity: 1;
        transform: translateX(0);
    }

    /* FLOAT ANIMATION */
   

    /* MOBILE ADJUST */
    @media (max-width: 768px) {
        .wa-tooltip {
            display: none;
        }

        .wa-sticky {
            left: 10px;
            bottom: 40px;
        }

        .wa-sticky img {
            width: 54px;
            height: 54px;
        }
    }
