/*  =======================================================================

Template:       Logiport - Logistic & Transport Service HTML5 Template
Version:        1.0
Last change:    03/10/25 
Author:         https://themeforest.net/user/designsninja/portfolio

========================================================================= */

html, body{
    position: relative;
    overflow-x: hidden;
}

:root {
    /* Core brand colors (synced with App.css) */
    --primary: var(--anb-blue, #013455);
    --light: var(--anb-white, #FFFFFF);
    --dark: var(--anb-black, #000000);
    --light-dark: rgba(0, 0, 0, 0.9);
    --body-color: var(--text-muted, rgba(0, 0, 0, 0.6));
    --secondary-color: var(--anb-blue, #013455);

    /* Additional semantic tokens for template */
    --gold: var(--anb-gold, #D4AF37);
    --cyan: var(--anb-cyan, #2C8AA1);
}
.text-primary{color: var(--primary)!important;}
.btn-primary{background-color: var(--primary)!important;border-color: var(--primary)!important;}
.border-primary{border-color: var(--primary)!important;}
.text-muted{color: var(--light)!important;}
.bg-dark{background-color: var(--dark)!important;}
.bg-light-dark{background-color: var(--light-dark)!important;}
.bg-primary{background-color: var(--primary)!important;}
body{
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: var(--body-color);
    background-color: var(--light);
}
h1,h2,h3,h4,h5,h6{font-family: "Rubik", sans-serif;}
h1{font-weight: 800!important;}
p{font-family: "Poppins", sans-serif;color: var(--body-color);}
a{text-decoration: none;color: var(--primary);}
.section-title h1{
    color:var(--secondary-color);
}
.section-title h4{
    text-transform: uppercase;
}

/* For modern browsers */
::placeholder {
  color: var(--light-dark)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Firefox */
input:-moz-placeholder {
  color: var(--light-dark)!important;
  font-size: 14px;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: var(--lighlight-dark)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Internet Explorer (optional/legacy support) */
input:-ms-input-placeholder {
  color: var(--light-dark)!important;
  font-size: 14px;
  opacity: 1;
}
.form-control{color: var(--light-dark);border-radius: 0;}
.form-floating>label{color: var(--dark);}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    color:var(--primary)!important;
}


/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

/* Sticky Header on Scroll */
/* CONTAINER MECHANICS - DO NOT CHANGE position/top/z-index/transition */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s ease-in-out;
    /* Remove white background - inner handles styling */
    background: transparent;
    box-shadow: none;
}

.sticky-header-visible {
    top: 0;
}

/* STICKY HEADER INNER - Visual styling to match main navbar */
.sticky-header-inner {
    /* Match main navbar: height 80px (nav-bar height without topbar) */
    height: 80px;
    position: relative;
    background: var(--bs-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Blue accent on left - matches main navbar ::after */
.sticky-header-inner::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    z-index: 1;
}

/* Sticky navbar brand - matches main navbar-brand styling */
.sticky-navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 15px 50px 15px 0;
    z-index: 99;
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-navbar-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: 0.5s;
}

/* Blue diagonal background behind logo - matches navbar-brand::before */
.sticky-navbar-brand::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: var(--secondary-color);
    transform: rotate(-18deg);
    z-index: -1;
}

/* Gold stripe - matches navbar-brand::after - FULL HEIGHT */
.sticky-navbar-brand::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 5px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: var(--gold);
    transform: rotate(-18deg);
    z-index: -1;
}

/* Sticky nav-bar area styling */
.sticky-nav-bar {
    height: 100%;
    display: flex;
    align-items: center;
}

.sticky-nav-bar .navbar {
    padding: 0;
    height: 100%;
}

.sticky-nav-bar .navbar-nav {
    background: var(--bs-light);
    border-radius: 10px;
}

/* Mobile Sticky Header - Make original header sticky */
/* CONTAINER MECHANICS ONLY - visual styling comes from header-top */
@media (max-width: 991px) {
    .header-sticky-mobile {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999 !important;
        /* Use same bg as main navbar (bs-light) - NOT white to avoid seams */
        background: var(--bs-light) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        animation: slideDownHeader 0.3s ease-in-out;
    }
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0 12px;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.sticky-nav-link:hover {
    color: var(--primary);
}

.sticky-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    animation: slideDown 0.3s ease-in-out;
}

.sticky-mobile-link {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.sticky-mobile-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/* Topbar styling */
.header-top .topbar .border-end.border-primary {
    border-color: var(--gold) !important;
}

.header-top .topbar .text-primary {
    color: var(--gold) !important;
}

.header-top .topbar .text-muted {
    color: var(--light) !important;
}

.header-top .topbar a.text-muted {
    color: var(--light) !important;
}

/* Navbar toggler - completely blue */
.navbar-toggler {
    border-color: var(--primary) !important;
}

.navbar-toggler .fa-bars,
.navbar-toggler .fa.fa-bars {
    color: var(--primary) !important;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    z-index: 1;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--secondary-color);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 220px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--secondary-color);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--gold);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

    /* Ensure logo + hamburger stay on one line even at 320px */
    .navbar.navbar-expand-lg {
        flex-wrap: nowrap !important;
    }
}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    white-space: nowrap;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 12px;
    font-weight: 500;
    color:var(--secondary-color);
    white-space: nowrap;
    font-size: 15px;
}
.navbar-light .navbar-nav .nav-link{
    color:var(--secondary-color);
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--primary);
        color: var(--primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--primary);
    color: var(--bs-white);
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary)!important;
}
.dropdown-item{
    transition: .5s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primary)!important;
    color:var(--light)!important;
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
        flex-wrap: nowrap;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
        width: 240px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 40px 50px 40px 0;
        z-index: 99;
    }
    
    
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--secondary-color);
        transform: rotate(-18deg);
        z-index: -1;
    }
    
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--gold);
        transform: rotate(-18deg);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

/* First hero section background */
.hero-section.hero-bg-1 {
    background-image: url(../images/header-1.webp);
}

/* Second hero section background */
.hero-section.hero-bg-2 {
    background-image: url(../images/header-2.webp);
}

/* Add dark overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .carousel-caption {
    position: relative;
    z-index: 3;
}

.hero-bg-half-1,
.hero-bg-half-2 {
    display: none;
}

/* Hero Shape Bars - Cyan and Gold colors */
.hero-shape-1 {
    background-color: var(--cyan);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
}

.hero-shape-1:before {
    background-color: var(--gold);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--gold);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--cyan);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .header-carousel-item p{
    color: var(--light);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 0;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--light);
    background-color: var(--primary);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/banner-img.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 52, 85, 0.9), rgba(1, 52, 85, 0.9)), url(../images/banner-img.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}


/*** Banner End ***/

/*** About Us ***/
.about-img-wrap .img-1{
    object-fit: cover;
}
.experience-box{
    width: 50%; 
    left: 0; 
    bottom: 0;
}
.experience-box-2{
    width: 50%; 
    bottom: 0; 
    right: 0;
}

.sm-service span, .sm-service h5{
    color: var(--primary);
}

/*** Service Start ***/
.service .nav .nav-item {
    width: 100%;
    border: 1px solid var(--primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.service-item h4{
    color: var(--primary);
}
.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--primary);
}

.service .nav-item a span {
    color: var(--secondary-color);
    white-space: nowrap;
    font-size: 14px;
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

/* Service carousel wrapper - keeps buttons permanently mounted */
.service-carousel-wrapper {
    position: relative;
}

/* Manual navigation buttons container - never flickers, never re-renders */
.manual-nav-buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    top: 0;
    left: 0;
}

/* React-controlled navigation buttons - PERMANENT, outside Owl's control */
.manual-nav-buttons .owl-prev,
.manual-nav-buttons .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--primary);
    color: var(--secondary-color);
    background: var(--bs-light);
    transition: background 0.3s ease, color 0.3s ease;
    display: block !important;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    will-change: background, color;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.manual-nav-buttons .owl-prev:hover,
.manual-nav-buttons .owl-next:hover {
    background: var(--primary);
    color: var(--bs-white);
}

/* Smooth card transitions - animate only cards, not structure */
.service-carousel .owl-item {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    will-change: opacity;
}

.service-carousel .service-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Add bottom padding to prevent Read More button from being cut off */
.service-item .border {
    padding-bottom: 25px !important;
}

/* Hide Owl-generated nav buttons if they appear */
.service-carousel .owl-nav {
    display: none !important;
}

/* Desktop button positioning */
@media (min-width: 992px) {
    .manual-nav-buttons .owl-prev {
        top: 0;
        left: -115px;
    }

    .manual-nav-buttons .owl-next {
        bottom: 0;
        left: -115px;
    }
}

/* Mobile button positioning */
@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }

    .manual-nav-buttons .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .manual-nav-buttons .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/*** Product Carousel Navigation Start ***/
.product-carousel-wrapper {
    position: relative;
}

.product-nav-buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    top: 0;
    left: 0;
}

.product-nav-buttons .owl-prev,
.product-nav-buttons .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--primary);
    color: var(--secondary-color);
    background: var(--bs-light);
    transition: background 0.3s ease, color 0.3s ease;
    display: block !important;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.product-nav-buttons .owl-prev:hover,
.product-nav-buttons .owl-next:hover {
    background: var(--primary);
    color: var(--bs-white);
}

/* Desktop button positioning for products - top corners */
@media (min-width: 992px) {
    .product-nav-buttons .owl-prev {
        top: -60px;
        left: 0;
        right: auto;
    }

    .product-nav-buttons .owl-next {
        top: -60px;
        right: 0;
        left: auto;
    }
}

/* Mobile button positioning for products */
@media (max-width: 991px) {
    .product-carousel-wrapper .owl-stage-outer {
        margin-bottom: 70px;
    }

    .product-nav-buttons .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .product-nav-buttons .owl-next {
        bottom: -70px;
        right: 0;
    }
}

/* Hide Owl-generated nav buttons for products */
.product-carousel .owl-nav {
    display: none !important;
}
/*** Product Carousel Navigation End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--primary);
}

.projects .nav-item a span {
    color: var(--secondary-color);
    font-size: 19px;
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--secondary-color) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--primary);
}
/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
    color: var(--primary);
    font-size: 21px;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: var(--primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: var(--light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: var(--primary);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--secondary-color);
    background: var(--bs-light);
}
/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    min-height: 280px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--primary);
    border-top: none;
    min-height: 140px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--secondary-color);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial-inner h4{
    font-size: 18px;
    color: var(--primary);
}

.testimonial-inner p{
    font-size: 14px;
    color:var(--light-dark);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    transition: 0.5s;
}
.testimonial .btn-light:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--light) !important;
}
/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--primary);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--gold);
}

.footer .footer-item a i {
    color: var(--gold) !important;
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--gold);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 3px solid var(--cyan);
    background: var(--primary);
}

.copyright p,
.copyright a {
    color: var(--gold) !important;
}
/*** copyright end ***/

/* Floating Container Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-container {
    position: absolute;
    right: 5%;
    top: 0;
    animation: floatUpDown 3s ease-in-out infinite;
    z-index: 10;
    max-width: 450px;
    width: 100%;
}

.floating-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .floating-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .floating-container {
        max-width: 300px;
    }
}

/* Sidebar Styles */
.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}

.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 0.4s ease-in 0.8s;
  cursor: pointer;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  transition: all 0.8s ease-out 0s;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid var(--light);
  border-radius: 50%;
  color: var(--light);
  font-size: 16px;
  font-weight: 400;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100% !important;
  right: auto !important;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  background-color: var(--light);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0 !important;
  right: auto !important;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in 0.3s;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  transition: all 1s ease-out 1.2s;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: var(--dark);
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}

.xs-sidebar-group .content-inner .form-inner {
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 14px;
  padding: 12px 15px;
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: vertical;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: var(--bs-primary);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sidebar-contact-info h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-contact-info ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 15px;
}

.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}

.sidebar-contact-info ul li i {
  margin-right: 15px;
  margin-top: 3px;
  color: var(--bs-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.sidebar-contact-info ul li a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-contact-info ul li a:hover {
  color: var(--bs-primary);
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
  text-decoration: none;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--bs-primary);
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--light);
}

/* Service Navigation Stability */
.service-nav-container {
  will-change: auto;
  transform: translateZ(0);
}

.service-nav-container ul.nav {
  position: relative;
  z-index: 1;
}

.service-nav-container ul.nav li {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
}

/* Product Cards - Modern Theme Design */
.product-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--cyan) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(253, 85, 35, 0.15);
  border-color: var(--gold);
}

.product-card-header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 52, 85, 0.03) 0%, var(--light) 100%);
}

.product-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 85, 35, 0.05) 0%, transparent 70%);
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-header::after {
  transform: scale(1.2);
}

.product-icon {
  width: 100px;
  height: 100px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 8px 30px rgba(253, 85, 35, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(253, 85, 35, 0.25);
}

.product-icon i {
  color: var(--gold);
  transition: all 0.3s ease;
}

.product-card:hover .product-icon i {
  transform: scale(1.1);
}

.product-card-body {
  padding: 32px 28px 28px 28px;
  position: relative;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--gold);
}

.product-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-examples {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}

.examples-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.examples-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.2s ease;
}

.examples-list li:hover {
  padding-left: 8px;
  color: rgba(0, 0, 0, 0.9);
}

.examples-list li i {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.examples-list li span {
  flex: 1;
  line-height: 1.5;
}

.product-card-footer {
  padding: 0 28px 32px 28px;
}

.btn-product-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  color: var(--light);
  background: var(--gold);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(253, 85, 35, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-product-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-product-quote:hover::before {
  width: 300px;
  height: 300px;
}

.btn-product-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(253, 85, 35, 0.35);
  background: var(--primary);
  color: var(--light);
}

.btn-product-quote i {
  transition: transform 0.3s ease;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.btn-product-quote:hover i {
  transform: translateX(6px);
}

.btn-product-quote span {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .product-card-header {
    height: 170px;
  }

  .product-icon {
    width: 95px;
    height: 95px;
    font-size: 44px;
  }

  .product-title {
    font-size: 19px;
  }

  .product-description {
    font-size: 14px;
  }

  .product-card-body {
    padding: 30px 28px 25px 28px;
  }

  .product-card-footer {
    padding: 0 28px 30px 28px;
  }
}

@media (max-width: 767px) {
  .product-card {
    margin-bottom: 24px;
  }

  .product-card-body {
    padding: 28px 24px 24px 24px;
  }

  .product-card-header {
    height: 150px;
  }

  .product-icon {
    width: 85px;
    height: 85px;
    font-size: 38px;
  }

  .product-title {
    font-size: 18px;
  }

  .product-card-footer {
    padding: 0 24px 28px 24px;
  }
}

/* Global Map - Interactive World Map with Location Markers */
.global-map-container {
  position: relative;
  width: 100%;
  min-height: 700px;
  background-image: url('/assets/images/world-map.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.map-locations {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
}

.map-location {
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-marker {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

.location-marker::before,
.location-marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: transparent;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 94 20 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.location-marker::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.marker-pulse {
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgb(255 94 20 / 40%), 0 0 0 1px rgb(255 94 20 / 40%), 0 0 0 3px rgb(255 94 20 / 20%), 0 0 0 5px rgb(255 94 20 / 10%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(255 94 20 / 40%), 0 0 0 4px rgb(255 94 20 / 40%), 0 0 0 20px rgb(255 94 20 / 20%), 0 0 0 30px rgba(255, 94, 20, 0);
  }
}

.location-info {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.map-location:hover .location-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.flag-icon {
  font-size: 32px;
  line-height: 1;
}

.location-details h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.location-details p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

/* Positioning for each location - Aligned to actual map geography */

/* UAE - Dubai, Sharjah (Middle East, Arabian Peninsula) */
.map-location.location1 {
  top: 48%;
  left: 60%;
}

.map-location.location1 .location-info {
  bottom: 35px;
  left: -80px;
}

/* China - Multiple locations (East Asia) */
.map-location.location2 {
  top: 38%;
  left: 78%;
}

.map-location.location2 .location-info {
  top: 35px;
  left: -60px;
}

/* Hong Kong (South China coast) */
.map-location.location3 {
  top: 45%;
  left: 80%;
}

.map-location.location3 .location-info {
  bottom: 35px;
  left: -70px;
}

/* Poland - Warsaw region (Central Europe) */
.map-location.location4 {
  top: 30%;
  left: 54%;
}

.map-location.location4 .location-info {
  top: 35px;
  left: -50px;
}

/* Italy - Multiple locations (Southern Europe) */
.map-location.location5 {
  top: 35%;
  left: 52%;
}

.map-location.location5 .location-info {
  bottom: 35px;
  left: -60px;
}

/* USA - Multiple locations (North America, center) */
.map-location.location6 {
  top: 38%;
  left: 18%;
}

.map-location.location6 .location-info {
  top: 35px;
  left: -70px;
}

/* Canada - Multiple locations (North America, northern) */
.map-location.location7 {
  top: 25%;
  left: 16%;
}

.map-location.location7 .location-info {
  bottom: 35px;
  left: -60px;
}

/* Pakistan - Multiple locations (South Asia) */
.map-location.location8 {
  top: 42%;
  left: 66%;
}

.map-location.location8 .location-info {
  top: 35px;
  left: -50px;
}

/* India - Multiple locations (South Asia, below Pakistan) */
.map-location.location9 {
  top: 46%;
  left: 69%;
}

.map-location.location9 .location-info {
  bottom: 35px;
  left: -50px;
}

/* Slovakia - Bratislava region (Central Europe, near Poland) */
.map-location.location10 {
  top: 32%;
  left: 54%;
}

.map-location.location10 .location-info {
  top: 35px;
  left: -60px;
}

/* Afghanistan - Kabul (Central Asia, between Pakistan and Middle East) */
.map-location.location11 {
  top: 40%;
  left: 64%;
}

.map-location.location11 .location-info {
  bottom: 35px;
  left: -40px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .global-map-container {
    min-height: 450px;
    background-size: contain !important;
    margin: 0 auto;
  }

  .map-locations {
    min-height: 450px;
  }

  .location-marker {
    width: 18px;
    height: 18px;
  }

  .location-marker::before,
  .location-marker::after {
    width: 28px;
    height: 28px;
  }

  .marker-pulse {
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
  }

  .location-info {
    padding: 10px 14px;
    transform: scale(0.9);
  }

  .flag-icon {
    font-size: 28px;
  }

  .location-details h5 {
    font-size: 14px;
  }

  .location-details p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .global-map-container {
    min-height: 320px;
    border-radius: 12px;
    background-size: contain !important;
    background-position: center center !important;
    margin: 0 15px;
  }

  .map-locations {
    min-height: 320px;
  }

  .location-marker {
    width: 14px;
    height: 14px;
  }

  .location-marker::before,
  .location-marker::after {
    width: 24px;
    height: 24px;
  }

  .marker-pulse {
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1.5px solid var(--gold);
  }

  .location-info {
    font-size: 11px;
    padding: 8px 12px;
    gap: 8px;
    transform: scale(0.85);
  }

  .flag-icon {
    font-size: 22px;
  }

  .location-details h5 {
    font-size: 12px;
  }

  .location-details p {
    font-size: 10px;
  }

  /* Adjust tooltip positioning for mobile to prevent overflow */
  .map-location.location1 .location-info {
    left: -60px;
  }

  .map-location.location6 .location-info,
  .map-location.location7 .location-info {
    left: -40px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .global-map-container {
    min-height: 250px;
    background-size: contain !important;
    margin: 0 10px;
  }

  .map-locations {
    min-height: 250px;
  }

  .location-marker {
    width: 12px;
    height: 12px;
  }

  .location-marker::before,
  .location-marker::after {
    width: 20px;
    height: 20px;
  }

  .marker-pulse {
    top: -4px;
    left: -4px;
    bottom: -4px;
    right: -4px;
    border: 1px solid var(--gold);
  }

  .location-info {
    transform: scale(0.75);
    padding: 6px 10px;
  }

  .flag-icon {
    font-size: 20px;
  }

  .location-details h5 {
    font-size: 11px;
  }

  .location-details p {
    font-size: 9px;
  }
}


