/*** Spinner Start ***/
/*** 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;
}

/*** Spinner End ***/

.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: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.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 {
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
  border: none;

}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary);
}

/* Topbar Text */
.topbar a {
  font-weight: 700;
  /* Bold text */
  color: #ffffff;
  /* Text color (change if needed) */
}


.topbar .btn i {
  color: #ffffff !important;
  /* White icons for social buttons */
}


/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
  transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
  color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 10px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  transition: .5s;
  z-index: 99;
}

.navbar .navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border: 2px solid var(--bs-secondary);
  opacity: 0;
  transition: 0.5s;
  z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
  top: 0;
  left: 0;
  border-bottom: 0;
  border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
  bottom: 0;
  right: 0;
  border-top: 0;
  border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
  width: 50%;
  height: 50%;
  opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

.navbar .navbar-toggler {
  padding: 8px 15px;
  color: var(--bs-dark);
  background: var(--bs-secondary);
}

.nav-bar .navbar-toggler {
  color: var(--bs-dark);
  box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: .5s;
  opacity: 1;
}

.navbar .nav-item .dropdown-menu {
  background: var(--bs-light);
  transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    margin-top: 15% !important;
    transform: rotateX(-75deg);
    transform-origin: 0 0;
    border: 0;
    transition: .5s;
    opacity: 0;
    z-index: 9;
  }
}

@media (max-width: 991px) {
  .navbar .nav-item .dropdown-menu {
    position: relative;
    margin-top: 0;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-item::after,
  .navbar .navbar-nav .nav-item::before {
    display: none;
  }

  .navbar .navbar-nav .nav-item:hover::after,
  .navbar .navbar-nav .nav-item:hover::before,
  .navbar .navbar-nav .nav-item.active::after,
  .navbar .navbar-nav .nav-item.active::before {
    display: none;

  }

  .navbar .navbar-nav .nav-link {
    padding: 12px 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar .navbar-nav .nav-item.nav-link {
    padding: 12px 0;
  }
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, .6);
}

/* === Brand Title Base === */
.brand-title {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Ensure brand never overflows navbar */
.navbar-brand {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Icon spacing fix */
.brand-title i {
  font-size: 22px;
}

/* === Mobile Responsive Fix === */
@media (max-width: 768px) {
  .brand-title {
    flex-direction: column;
    text-align: center;
    gap: 2px;
    font-size: 16px;
    /* Reduce font size for mobile */
    line-height: 1.2;
    white-space: normal;
    /* Allow wrapping safely */
  }

  .brand-title i {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .brand-title span {
    display: block;
    line-height: 1.1;
  }

  .brand-title span:last-child {
    font-size: 14px;
    /* Smaller for INTERNATIONAL */
    letter-spacing: 0.5px;
  }
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .navbar .dropdown-menu.show {
    display: block;
    opacity: 1;
  }
}


/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }

  25% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  50% {
    width: 130%;
    height: 130%;
    -webkit-filter: blur(10px);
    opacity: 0.7;
  }

  75% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  100% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-item .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-item .carousel-caption p.fs-5 {
    font-size: 15px;
  }
}

.carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.carousel .carousel-indicators {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
  margin-right: 30px !important;
  width: 10px;
  height: 10px;
  border: 6px solid var(--bs-secondary);
  background: var(--bs-white);
  transition: 0.5s;
}

.carousel .carousel-indicators li.active {
  border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  left: 0;
  padding: 25px 30px;
  background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  right: 0;
  padding: 25px 30px;
  background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

/*** Carousel End ***/


/*** About Start ***/
.about .about-item-content-img {
  border: 4px solid;
  border-color: var(--bs-secondary) var(--bs-primary) var(--bs-primary) var(--bs-secondary);
}

.about .about-item-image {
  position: relative;
  background: var(--bs-light);
  background-image: url(../img/about-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.about .about-item-image .img-1 {
  margin-bottom: 250px;
  margin-right: 0;
  border: 4px solid;
  border-color: var(--bs-secondary) var(--bs-light) var(--bs-light) var(--bs-secondary);
  z-index: 3;
}

.about .about-item-image .img-2 {
  margin-top: 250px;
  margin-left: 0;
  border: 4px solid;
  border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary) var(--bs-light);
  z-index: 3;
}

.about .about-item-image::before {
  width: 80%;
  height: 80%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-style: dotted;
  border-color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 2;
}

.about .about-item-image .about-item-image-content {
  width: 55%;
  height: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bs-secondary);
  border: 4px solid var(--bs-primary);
  opacity: 0.9;
  z-index: 4;
}

.about .about-item-image .about-item-image-effect {
  position: absolute;
  top: 0;
  right: 0;
}

/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
  position: relative;
  transition: 0.5s;
}

.feature .feature-item:hover {
  background: var(--bs-white);
  border: 1px solid transparent;
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
  transition: 0.5s;
}

.feature .feature-item:hover a:hover {
  color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
  border: transparent;
  transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
  border: 1px solid var(--bs-secondary);
}

/*** Features End ***/

/*** Services Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}

.service .service-item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
  background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 3;
}

.service .service-item:hover .service-content {
  opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
  color: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
  color: var(--bs-secondary);
}

.service .service-item .service-tytle {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  right: 0;
  background: var(--bs-white);
  display: flex;
  transition: 0.5s;
  z-index: 3;
}

.service .service-item:hover .service-tytle {
  margin-right: -100%;
}

/*** Services End ***/

/*** Fact Counter ***/
.counter {
  background: linear-gradient(rgba(0, 18, 72, 0.9), rgba(0, 22, 89, 1)), url(../img/counter.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-btn:hover {
  background: var(--bs-white);
  color: var(--bs-secondary);
}

.counter .counter-box {
  padding-right: 20px;
  padding-bottom: 20px;
}

.counter .counter-item {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter .counter-item .counter-item-style {
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  top: 0;
  left: 0;
  background: var(--bs-secondary);
  z-index: 2;
}

.counter .counter-item .counter-item-inner {
  position: relative;
  top: 20px;
  left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  background: var(--bs-white);
  box-shadow: 20px 20px rgba(255, 94, 21, 1);
  z-index: 3;
}

.counter .counter-item .counter-counting {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-primary);
  font-size: 30px;
}

/*** Fact Counter ***/

/*** Projects Start ***/
.project .project-item .project-img {
  position: relative;
}

.project .project-item .project-img::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  background: var(--bs-secondary);
  z-index: -1;
}

.project .project-item .project-content a.h4 {
  transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
  color: var(--bs-secondary);
}

/*** Projects End ***/


/*** Team Start ***/
.team .team-item {
  position: relative;
  z-index: 1;
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .2);
  transition: 0.5s;
  z-index: 2;

}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.team .team-item .team-img .team-icon {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scale(-1);
  margin-bottom: 100%;
  background: transparent;
  transition: 0.5s;
  opacity: 0;
  z-index: 5;

}

.team .team-item:hover .team-img .team-icon {
  transform: scale(1);
  margin-bottom: 0;
  opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
  width: 50%;
  height: 50%;
  position: absolute;
  background: var(--bs-secondary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-1 {
  top: 0;
  left: 0;
}

.team .team-item .team-border-style-2 {
  right: 0;
  bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
  width: 0;
  height: 0;
  position: absolute;
  background: var(--bs-secondary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-3 {
  top: 0;
  right: 0;
}

.team .team-item .team-border-style-4 {
  left: 0;
  bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
  width: 0%;
  height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
  width: 50%;
  height: 50%;
}

/* Remove bottom margin/padding from previous section (Team Member) */
.team-member-section,
.team-member-section>.container,
.team-member-section .row {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/*** Team End ***/

/*** Blog Start ***/
/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-secondary);
}

/* Remove top padding from Blog section */
/* Remove all top margin/padding from Blog section */
.container-fluid.blog,
.container-fluid.blog>.container,
.container-fluid.blog .row {
  margin-top: 0 !important;
  padding-top: 0 !important;
}



/*** Blog End ***/

/*** Blog End ***/

/* ** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-secondary) !important;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}

/*** testimonial End ** */

/*** Contact Start ***/
.contact .contact-map {
  position: relative;
  overflow: hidden;
  padding: 20px;
  z-index: 1;
}

.contact .contact-map::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bs-primary);
  z-index: -1;
}

.contact .contact-map::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--bs-secondary);
  z-index: -1;
}

/*** Contact End ***/
/***** Contact Boxes Start *****/
.contact .contact-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 2px solid #ff7f27;
  /* Orange border */
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  /* All boxes equal height */
  box-sizing: border-box;
}

.contact .contact-box i {
  font-size: 32px;
  color: #ff7f27;
  /* Orange icon */
  flex-shrink: 0;
  margin-top: 5px;
}

.contact .contact-box h4 {
  margin: 0 0 6px 0;
  font-weight: 600;
  color: #0b2545;
}

.contact .contact-box p {
  margin: 0;
  color: #555;
}

/***** Contact Boxes End *****/


/*** Footer Start ***/
/*** Footer Start ***/

/* Footer background + spacing */
.footer {
  background: #031738 !important;
  padding-top: 60px !important;
  /* More space above footer */
  padding-bottom: 40px !important;
  /* More space inside footer */
  margin-top: 60px !important;
  /* GAP between Join With Us & Footer */
}

/* Remove unnecessary padding inside footer container */
.footer .container,
.footer .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Footer links */
.footer-item a {
  color: #ffffff !important;
  line-height: 30px;
  display: block;
}

/* Footer headings */
.footer-item h4 {
  color: #ffffff !important;
  margin-bottom: 20px;
}

/* Copyright section */
.copyright {
  background: #001A38 !important;
  padding: 12px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/*** Footer End ***/



/*** about popup for start ***/

.popup-container {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.popup-active {
  overflow: hidden;
}

/*** about popup form end***/


/*** build with vishwroop ***/
.popup-container {
  position: fixed;
  z-index: 1050;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  margin: auto;
}

.form-label {
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 10px 12px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.popup-active {
  overflow: hidden;
}

@media (max-width:576px) {
  .popup-content {
    width: 95%;
    max-width: 340px;
    padding: 20px;
  }

  .popup-content h2 {
    font-size: 1.25rem;
  }

  .form-label {
    font-size: 0.95rem;
  }
}

.alert-message {
  margin: 15px auto;
  padding: 10px;
  text-align: center;
  width: 90%;
  border-radius: 5px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
}

/*** build with vishwroop end***/

/*** discover more***/
/* 🔸 Global orange text style */
.text-secondary {
  color: #ff6f00 !important;
  /* your original orange */
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 🔹 Modal Container */
.about-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.about-modal.active {
  display: flex;
  animation: modalFade 0.4s ease forwards;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 🔹 Modal Box */
.about-modal-content {
  background: linear-gradient(145deg, #ffffff, #f0f3fa);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  width: 90%;
  position: relative;
  text-align: center;
  animation: slideUp 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 111, 0, 0.4);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 🔸 Keep modal heading same orange but don’t affect navbar */
.about-modal .text-secondary {
  color: #ff6f00 !important;
}

/* ✨ Paragraph Text Animation */
.about-text {
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 1.5s ease forwards 0.4s;
  line-height: 1.8;
  color: #333;
}

@keyframes textFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 1px;
  }

  50% {
    opacity: 0.6;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.3px;
  }
}

/* ✖ Close Button */
.about-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.about-close:hover {
  color: #ff6f00;
  transform: scale(1.2);
}

/***discover more end***/

/* join with us code */
/************************************
    UNIVERSAL POPUP OVERLAY
    (WORKS FOR ALL POPUPS)
*************************************/
.popup-container {
  display: none;
  /* Hidden until opened */
  position: fixed;
  /* Always on the screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Full screen overlay */
  background: rgba(0, 0, 0, 0.45);
  /* Dark transparent overlay */
  backdrop-filter: blur(6px);
  /* Glass blur effect */
  justify-content: center;
  /* Horizontally centered */
  align-items: center;
  /* Vertically centered */
  z-index: 2000;
  /* On top of everything */
  pointer-events: auto;
}


/************************************
        POPUP BOX DESIGN
*************************************/
.popup-content {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
  animation: fadeIn 0.3s ease-out;
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.25);
}


/************************************
        CLOSE BUTTON (X)
*************************************/
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: 0.25s ease;
}

.close-btn:hover {
  color: red;
}


/************************************
        OPENING ANIMATION
*************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/************************************
        BODY LOCK WHEN POPUP OPENS
*************************************/
body.popup-active {
  overflow: hidden;
}

/***service css***/
Optional Styling .modal-content {
  border-radius: 15px;
  background: #fff8f2;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.btn-secondary {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #ff5500, #ff8800);
}

/*** ourclient css***/

.clients-section {
  background: #ffffff;
  padding: 40px 0 80px 0;
  text-align: center;
}

/* Title */
.clients-title {
  font-size: 2rem;
  color: #001f54;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.clients-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #001f54;
  left: 20%;
  bottom: -5px;
  border-radius: 3px;
}

/* ✅ Uniform Grid Layout */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-top: 30px;
  padding: 0 20px;
}

/* ✅ Equal-Sized Client Cards */
.client-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 10px;
  height: 200px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 111, 0, 0.25), 0 0 15px rgba(0, 74, 173, 0.2);
  border-image: linear-gradient(45deg, #ff6f00, #004aad) 1;
}

/* ✅ Logo Uniform Fit */
.client-card img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.client-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.15);
}

/* Client Name */
.client-name {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff6f00;
  transition: color 0.4s ease;
}

.client-card:hover .client-name {
  color: #004aad;
}

/* Modal */
.client-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.client-modal.active {
  display: flex;
}

.client-modal-content {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
  position: relative;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modal Logo */
.client-modal-content img {
  width: 280px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.client-modal-content img:hover {
  transform: scale(1.05);
}

.client-modal-content h3 {
  color: #001f54;
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

/* Close Button */
.client-modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #001f54;
}

/* ✅ Responsive Sizes */
@media (max-width: 992px) {
  .client-card {
    height: 180px;
    width: 160px;
  }

  .client-card img {
    max-height: 90px;
  }

  .client-modal-content img {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client-card {
    height: 160px;
    width: 140px;
  }

  .client-card img {
    max-height: 80px;
  }

  .client-modal-content img {
    width: 180px;
  }

  .client-modal-content h3 {
    font-size: 1rem;
  }
}

/***ourclient css end***/

/***project css**/

/* Project Cards */
.project-card {
  background: #fff;
  padding: 22px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border-top: 5px solid transparent;
  opacity: 0;
  transform: translateY(20px);
}

.project-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card.metro {
  border-top-color: #007bff;
}

.project-card.transport {
  border-top-color: #28a745;
}

.project-card.road {
  border-top-color: #dc3545;
}

.project-card.dam {
  border-top-color: #6c757d;
}

.project-card.water {
  border-top-color: #17a2b8;
}

/* Modal Animations */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Inner Modal */
.inner-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inner-modal.show {
  display: flex;
  opacity: 1;
}

.inner-modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 85%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInScale 0.4s ease forwards;
}

.close-inner {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 26px;
  color: #ff4c4c;
  cursor: pointer;
}

/* More Projects Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInScale 0.4s ease forwards;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #ff4c4c;
  cursor: pointer;
}

/* More Projects Button Hover Animation */
#moreProjectsBtn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#moreProjectsBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/*** blog ***/

/* --- Popup Background --- */
.mission-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* --- Popup Box --- */
.mission-modal-content {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
}

/* --- Animation when visible --- */
.mission-modal.show {
  display: flex;
  opacity: 1;
}

.mission-modal.show .mission-modal-content {
  transform: scale(1);
  opacity: 1;
}

/* --- Close Button --- */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #ff6f00;
  cursor: pointer;
  font-weight: bold;
}

/* Title style */
#modalTitle {
  color: #ff6f00;
  font-weight: 600;
  margin-bottom: 15px;
}

/***apply form***/

.popup-container {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: red;
}

/* ✅ Labels - Dark Black & Bold */
.popup-content .form-label {
  font-weight: 700;
  color: #000;
}

/* Placeholder smaller and lighter */
.popup-content ::placeholder {
  font-size: 0.9rem;
  color: #888;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.popup-active {
  overflow: hidden;
}

/*** end***/
/***faq***/


.faq-section {
  background: url('img/faq-bg.jpg') center/cover no-repeat;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #001f54;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #ff6f00;
  color: #fff;
  box-shadow: none;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid #ff6f00;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Remove only top spacing of FAQ section */
.faq-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.faq-section .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* find location map */

/*co & founder section*/
/* Accent Side Strips */
.section-accent-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #f16522;
  /* Vishwaroop Orange */
}

.section-accent-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #f16522;
}

/* Profile Image Styling */
.profile-image {
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Headings */
.profile-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1d39;
  /* Navy Blue */
}

/* Bullet Points */
.profile-list li i {
  color: #f16522;
  font-size: 1.2rem;
}

/* Social Icons */
.profile-social a {
  font-size: 1.6rem;
  color: #6c757d;
  transition: 0.3s;
}

.profile-social a:hover {
  color: #f16522;
}

/* Signature Image */
.signature-img {
  height: 60px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .profile-title {
    text-align: center;
  }

  .profile-image {
    margin-bottom: 20px;
  }

  .profile-social {
    justify-content: center;
  }
}

/* logo css */
/* Default logo size */
/* Wrap the two logo images properly */
.brand-title {
  display: flex;
  align-items: center;
  gap: 6px;
  /* space between logos */
}

/* ALL logo images */
.brand-title .main-logo {
  max-height: 55px;
  /* control header height */
  width: auto;
  object-fit: contain;
}

/* For wide logo (text image) */
.brand-title .text-logo {
  max-width: 220px;
  /* limit width so it never breaks navbar */
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-title .main-logo {
    max-height: 45px;
  }

  .brand-title .text-logo {
    max-width: 180px;
  }
}

/* MOBILE VIEW ONLY */
@media (max-width: 768px) {

  .brand-title {
    display: flex !important;
    flex-direction: row !important;
    /* force side-by-side */
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    white-space: nowrap !important;
    /* prevent breaking */
    flex-wrap: nowrap !important;
    /* no wrapping ever */
  }

  .logo-main {
    height: 32px !important;
    /* resize for mobile */
    width: auto;
    flex-shrink: 0;
  }

  .logo-text {
    height: 32px !important;
    width: auto;
    max-width: 140px !important;
    /* prevents breaking */
    flex-shrink: 1;
    /* auto shrink if needed */
    object-fit: contain;
  }

  /* Give navbar more space on mobile */
  .navbar {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

