:root {
  --primary: #009CFF;
  --secondary: #777777;
  --light: #F8F8F8;
  --dark: #252525;
  --bg-gray : #c8c4c4;
}
body {
  background: linear-gradient(180deg, #a3abb15c 0%, #E3F2FD 100%);
}

/* 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;
}


/* Buttons */
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #fff;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}
/*=====================new buttons=====================*/
.view-all-btn {
  position: relative;
  display: inline-block;
  background-color: #2956A3; /* Similar blue shade */
  color: #fff;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 40px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Corner border accents */
.view-all-btn::before,
.view-all-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #2956A3;
  transition: all 0.3s ease;
}

/* Top-left corner */
.view-all-btn::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

/* Bottom-right corner */
.view-all-btn::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

/* Hover effect */
.view-all-btn:hover {
  background-color: #1f4584;
}

.view-all-btn:hover::before {
  top: -10px;
  left: -10px;
}

.view-all-btn:hover::after {
  bottom: -10px;
  right: -10px;
}

/* ==================== [ TOPBAR FINAL DESIGN FIX ] ==================== */
.topbar {
  background: #f9f9f9 !important;
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 0 !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  
}

.topbar .row {
  align-items: center !important;
}

.topbar .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.topbar .breadcrumb-item {
  font-weight: 500;
  color: #444 !important;
}

.topbar .breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
  content: "/";
  padding: 0 6px;
}

.topbar a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--primary);
}

.topbar i {
  color: var(--primary);
  font-size: 14px;
}

.topbar p {
  margin: 0;
  font-size: 13.5px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Follow us icons */
.topbar small {
  font-weight: 500;
  color: #555;
}

.topbar .btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-left: 1px solid #e5e5e5;
  border-right: none;
  border-top: none;
  border-bottom: none;
  background: none;
  color: #555;
  transition: all 0.3s ease;
}

.topbar .btn-square:last-child {
  border-right: 1px solid #e5e5e5;
}

.topbar .btn-square:hover {
  color: var(--primary);
}

/* =========================[ LOGO ]========================= */
.logo-header {
  display: flex;
  align-items: center;
  width: 170px;
  height: 70px;
  transition: all 0.2s linear;
}
.logo-header img {
  max-height: 65px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-header img:hover {
  transform: scale(1.05);
}

/* =========================[ SPINNER ]========================= */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  transition: opacity 0.3s ease;
}
.spinner-overlay:not(.show) {
  opacity: 0;
  visibility: hidden;
}

/* =========================[ STICKY HEADER ]========================= */
.sticky-header {
    position: sticky !important;
    top: 0;
    z-index: 5000;
    background: #fff;
}
.main-bar-wraper {
    height: auto;
    display: block;
    overflow: visible !important;
}

.sticky-header.sticky-active {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* =========================[ HOVER EFFECTS ]========================= */
.hover-blue:hover {
  color: #009CFF !important;
}

/* =========================[ MOBILE DRAWER MENU ]========================= */
.header-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0,0,0,0.2);
  overflow-y: auto;
  padding: 80px 20px 30px;
  transition: left 0.4s ease;
  z-index: 3000;
}
.header-nav.open {
  left: 0;
}

.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-nav li {
  border-bottom: 1px solid #eee;
}
.header-nav li a {
  display: block;
  padding: 12px 10px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-nav li a:hover {
  color: #009CFF;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2500;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent scroll when open */
body.nav-open {
  overflow: hidden;
}

/* =========================[ MOBILE TOGGLE BUTTON ]========================= */
.mobile-toggle {
  width: 35px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1300;
}
.mobile-toggle span {
  height: 3px;
  width: 100%;
  background: #009CFF;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-toggle.active span {
  background: transparent;
}
.mobile-toggle.active::before,
.mobile-toggle.active::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 26px;
  height: 3px;
  background: #009CFF;
  transform-origin: center;
}
.mobile-toggle.active::before {
  transform: rotate(45deg);
}
.mobile-toggle.active::after {
  transform: rotate(-45deg);
}

/* =========================[ DESKTOP NAVBAR ]========================= */
.desktop-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav .nav-list li {
  position: relative;
  display: inline-block;
}
.desktop-nav .nav-list a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  color: #252525;
  text-decoration: none;
  transition: color 0.3s ease;
}
.desktop-nav .nav-list a:hover {
  color: #009CFF;
}

/* =========================[ DESKTOP DROPDOWN ]========================= */
.desktop-nav .has-child .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.desktop-nav .has-child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu a {
  display: block;
  padding: 2px 10px;
  color: #333;
  font-weight: 300;
  transition: all 0.3s ease;
}
.sub-menu a:hover {
  color: #009CFF;
  background: rgba(0, 156, 255, 0.05);
}

/* ========================================================= */
/* =================== NEW MOBILE SUBMENU =================== */
/* ========================================================= */
@media (max-width: 991.98px) {

  .desktop-nav { display: none !important; }
  
  .submenu-toggle {
    float: right;
    cursor: pointer;
    color: #009CFF;
    font-size: 18px;
    padding-right: 10px;
  }

  /* NEW ANIMATED MOBILE SUBMENU */
  .header-nav .sub-menu {
    display: block;               /* keep in DOM */
    max-height: 0;                /* collapsed */
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    border-left: 2px solid #f1f1f1;
    margin-top: 5px;
  }

  .header-nav .sub-menu.open {
    /* max-height will be set dynamically via JS */
  }

  .submenu-toggle.rotate i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}

/*===================== END =======================*/
/* Disable parent menu link click on mobile so submenu toggle works */
@media (max-width: 991.98px) {
  #mobileNav .has-child > a {
    pointer-events: none !important;
      width: 100%;
  display: block;
  }
}



/* Header */
#header-carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 500px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#header-carousel .carousel-indicators [data-bs-target] {
  width: 60px;
  height: 60px;
  text-indent: 0;
  margin-bottom: 15px;
  border: 2px solid #fff;
  border-radius: 60px;
  overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/* Section Title */
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  position: absolute;
  content: "";
  background: var(--primary);
  z-index: -1;
}

.section-title::before {
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
}

.section-title::after {
  width: calc(100% + 120px);
  height: 2px;
  bottom: 4px;
  left: -60px;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/* Image Border */
.img-border {
  position: relative;
  height: 90%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid var(--primary);
  border-radius: 6px;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover;
  border-radius: 6px;
}
.col-lg-9 img {
  height: auto !important;
  display: block;
}


/* ====== Fix invisible images in Owl Carousel ====== */
.owl-carousel .item img {
  display: block;
  width: 90%;
  height: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

.owl-stage-outer, .owl-stage, .owl-item {
  min-height: 1px;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-carousel .item {
  position: relative;
}

.mt-img-effect img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Safety reset for hidden carousels */
.owl-carousel {
  opacity: 1 !important;
  visibility: visible !important;
}


/* Facts */
.fact-item {
  transition: all 0.3s ease-in-out;
}
.fact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.fact-item i {
  color: var(--primary);
  transition: transform 0.3s ease, color 0.3s ease;
}
.fact-item:hover i {
  transform: scale(1.15);
  color: #006fe6;
}
.fact-item h1 {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.plus {
  display: block;
  margin-top: -5px;
  font-weight: 700;
}


/* Services */
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.483);
  border: 0px solid transparent;
  transition: .5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: none;
}

/* Features */
.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0;
  transition: 3s;
}

/* Projects */
.project-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  border-radius: 6px;
  opacity: 0;
  transition: .5s;
}

.project-item:hover a {
  opacity: 1;
}

.project-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-carousel .owl-dot {
  width: 35px;
  height: 35px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE2E6;
  border-radius: 35px;
  transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

/* Team */
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
  position: relative;
  height: 65px;
  overflow: hidden;
}

.team-item .team-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-item:hover .team-title {
  top: -65px;
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 65px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: .5s;
}

.team-item .team-social .btn {
  margin: 0 3px;
}

.team-item:hover .team-social {
  top: 0;
}

/* Testimonials */
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #fff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE2E6;
  border-radius: 50px;
  font-size: 18px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

/* 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;
  color: var(--secondary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}


/*  Custom Styles */
       
        .service-item {
        transition: all 0.4s ease-in-out;
        border: 1px solid transparent;
        background-color: #c4c8cdda;
        min-height: 400px;
        position: relative;
        overflow: hidden;
        }
        .service-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        /* Top blue border */
        .top-border {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: #0d6efd;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        }
        /* Hover Effect: Darker blue + slight glow animation */
        .service-item:hover .top-border {
        background-color: #063882ff; /* darker blue */
        box-shadow: 0 0 12px rgba(13, 110, 253, 0.6);
        height: 14px; /* slight height increase for emphasis */
        }

        /* Title and number styling */
        .service-header h5 {
        font-size: 1.50rem;
        font-weight: 800;
        color: #000;
        margin: 0;
        }

        .service-number {
        font-size: 5rem;
        font-weight: 700;
        color: rgba(0, 0, 0, 0.15);
        transition: color 0.4s ease-in-out;
        }

        .service-item:hover .service-number {
        color: #063882ff; /* darker blue on hover */
        }

        .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        }

/* ===================[Welcome Section]================== */

            #textCol .bg-white {
            border-left: 6px solid #009CFF !important;
            border-top: none !important;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background-color: #fff;
            font-family: Poppins, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #4a4a4a;
            padding: 0;
            margin: 0;

            }

            #textCol .bg-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 156, 255, 0.2);
            }
            /* Card Base */
            .hover-lift-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-radius: 10px;
            }

            .hover-lift-card img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            }

            /* On Hover: Image Moves Up to Make Space for Tag */
            .hover-lift-card:hover img {
            transform: translateY(-40px); /* equal to tag height */
            }

            /* White Tag Base */
            .card-tag {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            background-color: #fff;
            opacity: 0;
            transition: all 0.4s ease;
            border-top: 1px solid rgba(0,0,0,0.1);
            }

            /* On Hover: Tag Slides Up Into View */
            .hover-lift-card:hover .card-tag {
            bottom: 0;
            opacity: 1;
            }

/* Welcome Animation */
.animate-welcome {
  display: block;
  font-size: 50px;
  line-height: 80px;
  color: #efefef;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  animation: text-pop-up-top 1.8s ease-in-out infinite alternate;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Text Pop-Up Animation */
@keyframes text-pop-up-top {
  0% {
    transform: translateY(0);
    text-shadow:
      rgba(0, 0, 0, 0.05) 0px 0.5px 0px,
      rgba(0, 0, 0, 0.05) 0px 1px 0px,
      rgba(0, 0, 0, 0.05) 0px 1.5px 0px,
      rgba(0, 0, 0, 0.05) 0px 2px 0px,
      rgba(0, 0, 0, 0.05) 0px 2.5px 0px;
    opacity: 0.8;
  }

  50% {
    transform: translateY(-20px);
    text-shadow:
      rgba(243, 246, 247, 0.897) 0px 3px 10px,
      rgba(148, 150, 151, 0.582) 0px 6px 20px,
      rgba(0, 0, 0, 0.1) 0px 10px 25px;
    opacity: 1;
  }

  100% {
    transform: translateY(-15px);
    text-shadow:
      rgba(241, 244, 246, 0.579) 0px 4px 12px,
      rgba(0, 0, 0, 0.08) 0px 8px 18px;
    opacity: 0.9;
  }
}

/* ===================[Service Section]================== */
.animate-service {
    border: 0;
}
.p-l50 {
    padding-left: 50px;
}

.text-uppercase {
    text-transform: uppercase;
}
.text-left {
    text-align: left;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-pop-up-top
{
  display: block;
  font-size: 50px;
  line-height: 80px;
  color: #efefef;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  animation: text-pop-up-top 2s cubic-bezier(.25, .46, .45, .94) infinite alternate both;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.animate-service.hilite-dark strong {
    color: rgb(191 191 191 / .2)
}

.animate-service strong {
    display: block;
    font-size: 80px;
    line-height: 80px;
    color: #efefef;
    font-family: Poppins,sans-serif;
    font-weight: 900
}
/* Text Pop-Up Animation */
@keyframes text-pop-up-top {
  0% {
    transform: translateY(0);
    text-shadow:
      rgba(0, 0, 0, 0.05) 0px 0.5px 0px,
      rgba(0, 0, 0, 0.05) 0px 1px 0px,
      rgba(0, 0, 0, 0.05) 0px 1.5px 0px,
      rgba(0, 0, 0, 0.05) 0px 2px 0px,
      rgba(0, 0, 0, 0.05) 0px 2.5px 0px;
    opacity: 0.8;
  }

  50% {
    transform: translateY(-20px);
    text-shadow:
      rgba(243, 246, 247, 0.897) 0px 3px 10px,
      rgba(148, 150, 151, 0.582) 0px 6px 20px,
      rgba(0, 0, 0, 0.1) 0px 10px 25px;
    opacity: 1;
  }

  100% {
    transform: translateY(-15px);
    text-shadow:
      rgba(241, 244, 246, 0.579) 0px 4px 12px,
      rgba(0, 0, 0, 0.08) 0px 8px 18px;
    opacity: 0.9;
  }
}

        
        /* ===================[About Section]================== */
        /*        <!-- Fade Animation CSS --> */
        
        .about-floating-text {
        position: absolute;
        bottom: 5px;
        left: 20px;
        display: block;
        font-size: 80px;
        line-height: 80px;
        color: rgb(191 191 191 / .2);
        font-family: Poppins, sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 10px rgba(72, 73, 74, 0.414);
        opacity: 0;
        animation: aboutFadeInOut 4s ease-in-out infinite;
        pointer-events: none;
        }

        @keyframes aboutFadeInOut {
        0% { opacity: 0; transform: translateY(10px); }
        25% { opacity: 1; transform: translateY(0); }
        75% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(10px); }
        }


        /* ======[ Back Button and Project-Filter ]====== */
        
        /* Back Button (Top Left) */
        .back-btn {
            position: absolute;
            top: 30px;
            left: 40px;
            background-color: #2956A3;
            color: #fff;
            font-size: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 10px 22px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            z-index: 10;
        }

        .back-btn::before,
        .back-btn::after {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            border: 2px solid #2956A3;
            transition: all 0.3s ease;
        }

        .back-btn::before {
            top: -5px;
            left: -5px;
            border-right: none;
            border-bottom: none;
        }

        .back-btn::after {
            bottom: -5px;
            right: -5px;
            border-left: none;
            border-top: none;
        }

        .back-btn:hover {
            background-color: #1f4584;
        }

        .back-btn:hover::before {
            top: -8px;
            left: -8px;
        }

        .back-btn:hover::after {
            bottom: -8px;
            right: -8px;
        }

        /* Section Header */
        .section-header {
            position: relative;
            text-align: center;
            margin-bottom: 50px;
            padding-top: 80px; /* Space for back button */
        }

        .section-header h6 {
            font-weight: 600;
            color: var(--primary, #2956A3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h1 {
            font-weight: 700;
            color: #222;
        }

        /* Filter Buttons */
        .project-filter {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
            padding: 0;
        }

        .project-filter li {
            cursor: pointer;
            padding: 10px 22px;
            border: 1.5px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-weight: 500;
            transition: all 0.3s ease;
            background-color: transparent;
        }

        .project-filter li.active,
        .project-filter li:hover {
            background: var(--primary);
            color: #fff;
        }

        /* Project Grid Cards */
        .single-project-style4 {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: #fff;
        }

        .single-project-style4:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 156, 255, 0.25);
        }

        .single-project-style4 .img-holder img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.4s ease;
        }

        .single-project-style4:hover img {
            transform: scale(1.05);
        }

        .overlay-box {
            position: absolute;
            inset: 0;
            background: rgba(0, 156, 255, 0.65);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .single-project-style4:hover .overlay-box {
            opacity: 1;
        }

        .overlay-box .link a {
            color: #fff;
            font-size: 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 15px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .overlay-box .link a:hover {
            background: #fff;
            color: var(--primary);
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .single-project-style4 .img-holder img {
                height: 200px;
            }
        }

/* =======================[ FOOTER STYLES ]======================= */
.site-footer {
  background: var(--dark);
  color: #ccc;
  font-family: "Poppins", sans-serif;
  padding-top: 60px;
  position: relative;
}

.site-footer .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.site-footer .widget-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-top: 6px;
}

.site-footer p, .site-footer a {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.site-footer .social-icons {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.site-footer .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.site-footer .social-icons li a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding: 20px 0;
  background: #1a1a1a;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.text-gray-dark {
  color: #ddd !important;
}

.max-w400 {
  max-width: 400px;
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */

/* Call Button - Left */
.floating-call {
  position: fixed;
  left: 20px;
  bottom: 110px;
  width: 55px;
  height: 55px;
  background: #009CFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 15px rgba(0, 156, 255, 0.6);
  z-index: 5200;
  animation: btnGlow 1.5s infinite ease-in-out;
  transition: transform 0.3s;
}
.floating-call:hover {
  transform: scale(1.1);
  color: #fff;
}

/* WhatsApp Button - Right */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 110px; /* above back-to-top */
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  z-index: 5200;
  animation: btnGlowGreen 1.5s infinite ease-in-out;
  transition: transform 0.3s;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/* Glow Animation Blue */
@keyframes btnGlow {
  0% { box-shadow: 0 0 8px rgba(0, 156, 255, 0.6); }
  50% { box-shadow: 0 0 20px rgba(0, 156, 255, 1); }
  100% { box-shadow: 0 0 8px rgba(0, 156, 255, 0.6); }
}

/* Glow Animation Green */
@keyframes btnGlowGreen {
  0% { box-shadow: 0 0 8px rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 20px rgba(37, 211, 102, 1); }
  100% { box-shadow: 0 0 8px rgba(37, 211, 102, 0.6); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-call,
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 95px;
    font-size: 20px;
  }
}

