/********** Template CSS **********/
:root {
  --primary: #ff800f;
  --secondary: #001064;
  --light: #f6f7f8;
  --dark: #010a35;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-square:hover
{
  color: #fff !important;
  background-color: #001064 !important;
  border-color: #fff;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #696e77;
  font-weight: 400;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    /* right: 0; */
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(1, 10, 53, 0);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(rgba(1, 10, 53, 0.1), rgba(1, 10, 53, 0.8)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
.facts {
  position: relative;
}

.facts * {
  position: relative;
  z-index: 1;
}

.facts::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(1, 10, 53, 0.8);
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .container.quote .quote-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.quote .quote-text,
.container.quote .quote-form {
  position: relative;
}

.container.quote .quote-text *,
.container.quote .quote-form * {
  position: relative;
  z-index: 1;
}

.container.quote .quote-text::after,
.container.quote .quote-form::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.container.quote .quote-text::after {
  background: rgba(1, 10, 53, 0.8);
}

.container.quote .quote-form::after {
  background: rgba(255, 255, 255, 0.8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(1, 10, 53, 0.8);
  transition: 0.5s;
}

.team-item .team-img::after {
  left: auto;
  right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
  width: 50%;
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.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 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #7f8499;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: white !important;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #7f8499;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--primary) !important;
}

.footer .btn.btn-square {
  color: #7f8499;
  border: 1px solid #7f8499;
}

.footer .btn.btn-square:hover {
  color: var(--light);
  border-color: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

/* My code */

.text-justify {
  text-align: justify;
}

.br-button {
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

.img-zoom {
  transition: transform 0.3s ease-in-out;
}

.img-zoom:hover {
  transform: scale(1.1);
}

/* Gallery Part */

.gallery-container {
  padding: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  border-radius: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05) translateY(-5px);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image {
  max-width: 90%;
  max-height: 80%;
  display: block;
  margin: auto;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.left {
  left: 20px;
}

.right {
  right: 20px;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }

  .arrow {
    font-size: 30px;
  }
}
.page-header-gallery {
  background: linear-gradient(rgba(1, 10, 53, 0.8), rgba(1, 10, 53, 0.8)),
    url(img/gallery-banner.jpg) center center no-repeat !important;
  background-size: cover;
}

/* .nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
} */

/* Ac Service Part */
.heroBanner {
  background: url("https://images.unsplash.com/photo-1581091012184-7f361b37783f?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heroBanner h1 {
  color: white;
  font-size: 3em;
  background: rgba(0, 0, 0, 0.65);
  padding: 15px 30px;
  border-radius: 12px;
}

.mainContent {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.sectionTitle {
  font-size: 2.2em;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.aboutSection {
  text-align: center;
  margin-bottom: 50px;
}

.aboutSection p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1em;
}

.featuresGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
}

.featureCard {
  flex: 1 1 260px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.featureCard:hover {
  transform: translateY(-5px);
}

.featureCard img {
  max-width: 220px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.featureCard h3 {
  color: #3498db;
  margin-bottom: 10px;
}

.reasonsSection {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.reasonsList {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.reasonsList li {
  margin-bottom: 15px;
  font-weight: 500;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.reasonsList li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #27ae60;
}

.gallerySection {
  text-align: center;
  margin-bottom: 60px;
}

.galleryGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.galleryGrid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .heroBanner h1 {
    font-size: 2em;
  }

  .galleryGrid img {
    width: 90%;
  }
}

/*  */
.np-difference-section,
.np-areas-section {
  background: #eef4f9;
  padding: 40px 20px;
  text-align: center;
  /* margin: 30px 0; */
}

.np-section-title {
  font-size: 2.2rem;
  color: #1b3c59;
  margin-bottom: 15px;
}

.np-section-title span {
  color: #3498db;
}

.np-difference-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.np-diff-card {
  background: #f4f8fc;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  width: 250px;
  transition: transform 0.3s ease;
  text-align: center;
}

.np-diff-card:hover {
  transform: translateY(-6px);
}

.np-diff-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.np-diff-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.np-diff-card strong {
  display: block;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

/* Area Tags */
.np-area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.np-area-tags span {
  background-color: #3498db;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.95rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.np-area-tags span:hover {
  background-color: #2c80b4;
}

/* Footer Map */
.map-responsive {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 40vh;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
}

.carousel-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

strong {
  color: #001064;
}

/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.no-spinner {
  -moz-appearance: textfield;
}


.nav-bar-nm{
  color: white !important;
  transition: 0.3s;
}

.nav-bar-nm:hover{
  color: #ff800f !important;
}

/* Whatsapp logo hover */
.ph {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 70%;
    left: 10px;
}

.whatsapp {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 80%;
    left: 10px;
}