/********** Template CSS **********/

/*** 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;
}

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

/*** Button ***/
.btn {
    transition: .5s;
}

.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 ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
    /*border-bottom: 2px solid var(--bs-primary);*/
}

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

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

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

@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;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(https://images.squarespace-cdn.com/content/v1/63e42d121b26ea4a747bfb1c/5bc4682a-eec5-44a8-bcd7-2108e9367ac3/26756-NCC-Tuku25-Web-Graphics-Nelson-Tasman-Site-Mar25-Main-Banner-HR.jpg) top center no-repeat;
    background-size: cover;
}
/* .hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
} */

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

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

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

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

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

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


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

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

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

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.logo-slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Grayscale effect for professional look */
.slide img {
    /*height: 100px;*/
    /* width: 150px; */
    /*width: 150px;*/
    /* opacity: 0.6; */
    /* padding: 0 40px; */
      /* transform: scale(1.1); */
    /*transition: 0.4s ease; */*/
}

.slide img:hover {
    /* opacity: 1; */
    /* transform: scale(1);  */
    /* transform: scale(1.1); */
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 14); /* Adjust based on logo count */
    animation: scroll 30s linear infinite;
    gap: 50px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    /*.slide img {*/
    /*    height: 35px;*/
    /*    padding: 0 20px;*/
    /*}*/
}

    .testimonial-carousel .testimonial-item {
        padding: 20px;
    }

    .testimonial-img img {
        border-radius: 15px;
        /* Rounded corners for modern look */
        transition: 0.5s;
    }

    .testimonial-item:hover .testimonial-img img {
        transform: scale(1.05);
        /* Slight zoom on hover */
    }

    .testimonial-text h3 {

        letter-spacing: 1px;
        margin-bottom: 15px;
        font-family: 'Syne', sans-serif;
    }

    /* Dots color fix to match your blue */
    .owl-theme .owl-dots .owl-dot.active span {
        background: #3cb0fb !important;
    }

        .project-highlight {
    position: relative;
    background: url('http://localhost/Exbition/Images/international1.jpg') center/cover no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

/* Dark overlay */
.project-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.project-highlight:hover {
    transform: scale(1.02);
    transition: 0.4s ease;
}
/* Keep content above overlay */
.project-highlight * {
    position: relative;
    z-index: 2;
}
.premium-btn {
    /* position: relative;
    display: inline-flex; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: white;
    color: #3cb0fb;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s ease;
}

.premium-btn:hover {
    transform: translateX(5px);
}
/* why choso us */
.strength-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.strength-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid #3cb0fb; /* Your Primary Color */
    box-shadow: 0 15px 40px rgba(60, 176, 251, 0.2);
}

.icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ff;
    border-radius: 50%;
    transition: 0.4s;
}

.strength-card:hover .icon-box {
    background: #3cb0fb;
}

.strength-card:hover .icon-box i {
    color: #ffffff !important;
    transform: rotateY(180deg);
}

.strength-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #333;
}

.strength-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Icon Rotation Effect */
.icon-box i {
    transition: 0.5s;
}
/* why chosue us */
.custom-card {
    position: relative;
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 1px solid #eef2f6;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Background Number Watermark */
.card-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(60, 176, 251, 0.05); /* Very light primary color */
    z-index: -1;
    transition: 0.5s;
}

/* Floating Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: #3cb0fb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 30px;
    border-radius: 15px;
    position: absolute;
    top: -10px; /* Pulls icon halfway out of card */
    left: 40px;
    box-shadow: 0 10px 20px rgba(60, 176, 251, 0.3);
    transition: 0.5s;
}

/* Hover Effects */
.custom-card:hover {
    background: #3cb0fb;
    transform: translateY(-10px);
}

.custom-card:hover h4, 
.custom-card:hover p {
    color: #fff !important;
}

.custom-card:hover .card-icon {
    background: #fff;
    color: #3cb0fb;
}

.custom-card:hover .card-number {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.2);
}

/* Headings & Text */
.custom-card h4 {
    font-weight: 800;
    font-size: 1.3rem;
    color: #222;
}

.custom-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  width: auto;
 height: 262px;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  cursor:pointer;
  object-fit: cover;    /* fill karega (thoda crop hoga) */
  /*border-radius: 8px;*/
}
/*.gallery img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*  object-fit: contain;*/
/*  cursor:pointer;*/
  
/*}*/
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
/*.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {*/
/*    padding: 0 0;*/
/*}*/
/**/
.popup {
  display: none; /* sirf ye rakho */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ❌ cross fix */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* arrows fix */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.prev { left: 20px; }
.next { right: 20px; }

/*gallery filter*/

.filter-btn {
  border: 1px solid #3cb0fb;
  background: transparent;
  color: #3cb0fb;
  padding: 8px 20px;
  margin: 5px;
  /*border-radius: 25px;*/
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #3cb0fb;
  color: #fff;
}

.filter-btn.active {
  background: #3cb0fb;
  color: #fff;
}
/* Container for alignment */
.social-container {
  display: flex;
  gap: 15px;
  padding: 20px;
  justify-content: center;
}

/* Base Button Style */
.btn-social {
  padding: 10px 20px;
  border-radius: 12px; /* Thoda rounded corners modern lagte hain */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease; /* Smooth animation */
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
}

/* Facebook - Modern Blue */

.btn-facebook {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 8px 15px rgba(24, 119, 242, 0.3); /* Glowing effect */
  transform: translateY(-3px); /* Chota sa bounce */
}

/* Updated Instagram - Sleek Pink/Purple */

.btn-instagram {
  background: #C13584; /* Signature color fills on hover */
  color: #fff; /* Text becomes white on hover */
  box-shadow: 0 8px 15px rgba(193, 53, 132, 0.3); /* Match shadow with color */
  transform: translateY(-3px);
}
/* LinkedIn - Professional Blue */

.btn-linkedin {
  background: #0A66C2;
  color: #fff;
  box-shadow: 0 8px 15px rgba(10, 102, 194, 0.3);
  transform: translateY(-3px);
}

/*whtahshpp*/
.btn-whatsapp {
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3); /* Same color shadow */
  transform: translateY(-3px);
}
.btn-whatsapp,
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
  transform: translateY(-3px);
}

/**/
.btn-facebook,
.btn-facebook:hover,
.btn-facebook:focus {
  background: #1877F2 !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(24, 119, 242, 0.3);
  transform: translateY(-3px);
}

.btn-instagram,
.btn-instagram:hover,
.btn-instagram:focus {
  background: #C13584 !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(193, 53, 132, 0.3);
  transform: translateY(-3px);
}

.btn-linkedin,
.btn-linkedin:hover,
.btn-linkedin:focus {
  background: #0A66C2 !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(10, 102, 194, 0.3);
  transform: translateY(-3px);
}
/* YouTube - Bold Red */

.btn-youtube {
  background: #FF0000;
  color: #fff;
  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3);
  transform: translateY(-3px);
}
.btn-social,
.btn-social i {
  color: #fff !important;
  opacity: 1 !important;
}


/**/

    /* Styling based on input color codes: #3cb0fb (blue) and #3c3531 (brown) */
    
    .text-secondary {
        color: #3cb0fb !important; /* Theme Blue */
    }

    .statistics-section {
        background-color: #f8f9fa; /* Light background for section */
    }

    /* Outer Wrapper with Brown Background */
    .stats-wrapper {
        background-color: #3c3531; /* Theme Dark Brown */
        padding: 30px 10px;
        border-radius: 15px; /* Softer curved corners */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    
    /* Background Pattern Overlay (Subtle) */
    .stats-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(45deg, rgba(60, 53, 49, 0.9) 25%, transparent 25%, transparent 75%, rgba(60, 53, 49, 0.9) 75%),
                          linear-gradient(-45deg, rgba(60, 53, 49, 0.9) 25%, transparent 25%, transparent 75%, rgba(60, 53, 49, 0.9) 75%);
        background-size: 40px 40px;
        opacity: 0.1; /* Very subtle pattern */
        z-index: 1;
    }
    
    .stats-wrapper .row {
        position: relative;
        z-index: 2; /* Ensures content is above pattern */
    }

    /* Styling for numbers and labels */
    .stat-item {
        position: relative;
    }

    /* Thin divider lines (except for the last item on desktop) */
    @media (min-width: 768px) {
        .stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -15px;
            top: 20%;
            height: 60%;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.15); /* Light transparent white */
        }
    }

    .stat-number {
        color: white; /* Bright white numbers */
        margin: 0;
        font-size: 2.5rem;
        display: inline-block;
    }
    
    .plus-sign {
        font-size: 2.5rem;
        font-weight: bold;
        color: #3cb0fb; /* Blue plus sign */
        vertical-align: top;
        position: relative;
        top: -10px;
        margin-left: 2px;
    }

    .stat-label {
        color: #ddd; /* Off-white label text */
        font-size: 1rem;
        font-weight: 500;
        margin-top: 5px;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    <style>
    .country-card {
        position: relative;
        overflow: hidden;
        border-radius: 3px;
        height: 180px; /* Aap height adjust kar sakte hain */
        background-color: #3c3531;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .country-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        opacity: 0.8; /* Thoda dark effect taaki text saaf dikhe */
    }

    .country-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .location-icon {
        color: #3cb0fb;
        font-size: 24px;
        margin-bottom: 30px; /* Pin ko upar rakhne ke liye */
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .country-name {
        background-color: #3cb0fb;
        color: white;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 1px;
        position: absolute;
        bottom: 15px; /* Neeche se thoda upar jaisa image mein hai */
    }

    /* Hover Effects */
    .country-card:hover img {
        transform: scale(1.1);
        opacity: 1;
    }

    .country-card:hover .country-name {
        background-color: #3c3531; /* Hover par dark grey color */
        transition: 0.3s;
    }
    
    
.project-item {
    height: 100%; /* Column ki poori height lega */
    min-height: 250px; /* Mobile par layout maintain karne ke liye */
}

.project-item img {
    height: 100% !important;
    width: 100%;
    object-fit: cover; /* Image crop hogi par stretch nahi hogi */
}

  .about-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

/* Image */
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* Content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* Default already hai */

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .banner-content {
    width: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.banner-content h1 {
  font-size: 40px;
}

.banner-content p {
  font-size: 14px;
}
/**/
/*.project-item {*/
/*  border-radius: 10px;*/
/*}*/

/* Country strip */
.country-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #3cb0fb; /* blue strip */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}
.country-tag {
  opacity: 0.8;
  transition: 0.3s;
}

.project-item:hover .country-tag {
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 576px) {
  .about-banner {
    height: 260px;
  }
}
/*floatig whathspp*/
.whatsapp-float {
  position: fixed;
  bottom: 37px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  color: #fff;
}

/*html {*/
/*  scroll-behavior: smooth;*/
/*}*/
/*header*/
/* Force Bootstrap collapse to behave properly */
/*.navbar-collapse {*/
/*  transition: all 0.3s ease !important;*/
/*}*/

/*.navbar-collapse.collapse:not(.show) {*/
/*  display: none !important;*/
/*}*/

/*.navbar-collapse.collapse.show {*/
/*  display: block !important;*/
/*}*/

/* Prevent sticky-top from breaking toggle */
/*.sticky-top {*/
/*  top: 0 !important;*/
/*}*/

/* Fix mobile menu overlapping / weird reopen */
/*@media (max-width: 991px) {*/
/*  .navbar-collapse {*/
/*    background: #fff;*/
/*    padding: 10px;*/
/*  }*/
/*}*/