@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Chewy&family=Merienda:wght@300..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Slabo+27px&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/*** Spinner Start ***/
/*** Spinner ***/
body {
  background: linear-gradient(135deg, #f7f7f7, #e0e0e0);
  font-family: "Playfair Display", serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#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;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.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 {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

h2,
h3,
h5,
h6 {
  font-weight: bold;
  background: linear-gradient(
    270deg,
    royalblue,
    dodgerblue,
    deepskyblue,
    rgb(4, 34, 123)
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite, fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

h2 {
  font-size: 2.4rem;
  animation-delay: 0.2s;
}
h3 {
  font-size: 2rem;
  animation-delay: 0.3s;
}

h5 {
  font-size: 1.3rem;
  animation-delay: 0.5s;
}
h6 {
  font-size: 1rem;
  animation-delay: 0.6s;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.6rem;
  }
}
p{
  color: #000 !important;
}
/*** Navbar ***/
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;       /* adjust size */
    width: auto;
}

.navbar-brand p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-light .navbar-nav .nav-link {
 position: relative;
    margin-right: 33px;
    padding: -1px 0;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    transition: 0.5s;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    /* font-weight: bolder; */
    font-style: normal;
    text-transform: uppercase;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}
.dropdown-menu {
  background-color: #fff;
  border: 2px solid #007bff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
      width: 344px;
}

.dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background-color: #2a69de; /* Your preferred hover color */
  color: #fff !important;
  padding-left: 30px;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  color: #020202;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.dropdown-item:hover::before {
  opacity: 1;
  left: 15px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}
.text-primar {
  color: #fff !important;
}
/* Make dropdown scrollable */
.nav-item .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* scrollbar style (optional) */
.nav-item .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.nav-item .dropdown-menu::-webkit-scrollbar-thumb {
    background: #4601b6;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-item .dropdown-menu {
        max-height: 220px;
    }
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-secondary);
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid;
    border-left: 0;
    border-style: dotted;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-secondary);
    color: #fff;
    border: none;
  }

  .navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: white;
    transition: 0.5s;
  }

  .sticky-top.navbar-light .navbar-nav .nav-item::before {
    bottom: 0;
  }

  .navbar-light .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: transparent transparent white transparent;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover::after,
  .navbar-light .navbar-nav .nav-item.active::after {
    bottom: 1px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-item:hover::before,
  .navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
  position: relative;
  overflow: hidden;
}

.carousel-indicators {
  display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  left: 0;
  border-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  right: 0;
  border-right: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  background-size: cover;
}

.carousel-caption-1-content {
  text-align: end;
  padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
  display: flex;
  justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-caption-2-content {
  text-align: start;
  padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
  display: flex;
  justify-content: start;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
    margin-top: -100px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-1 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-1-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-1-content .carousel-caption-1-content-btn {
    justify-content: center;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-2 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-2-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-2-content .carousel-caption-2-content-btn {
    justify-content: center;
  }

  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .text-primar {
    color: #100e0e !important;
  }
  .navbar.sticky-top {
    z-index: 1050; /* Above dropdowns and content */
    top: 0;
    position: sticky !important;
    background-color: #ffffff;
  }

  .carousel-caption-1-content,
  .carousel-caption-2-content {
    padding: 0 15px !important;
  }

  .carousel .carousel-inner .carousel-item {
    height: 600px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 600px;
  }
}

@media (max-width: 576px) {
  .carousel .carousel-inner .carousel-item {
    margin-top: 3px;
  }
  .carousel-header {
    margin-bottom: -344px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 500px;
  }

  .carousel-caption-1-content h1,
  .carousel-caption-2-content h1 {
    font-size: 1.8rem;
  }

  .carousel-caption-1-content p,
  .carousel-caption-2-content p {
    font-size: 1rem;
  }
}
.modal .modal-header {
  height: 100px;
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: url(../img/header.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}
 /* Breadcrumb Section */
 .breadcrumb-section {
  background-color: #fff;
  padding: 20px 15px;
  border-top: 1px solid #eee;
  border-bottom: 3px solid #007bff;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  font-size: 15px;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: #999;
}

.breadcrumb-item.active {
  color: #000;
  font-weight: bold;
}

@media (max-width: 768px) {

  .breadcrumb {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/*** Single Page Hero Header End ***/

/* highlight */
.core-glow-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #f4f7ff 100%);
  padding: 60px 0;
}

.glow-text-primary {
  color: #0a2e75;
}

.card-glow {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(13, 71, 161, 0.08);
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-glow::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle at center,
    rgba(13, 71, 161, 0.03),
    transparent
  );
  z-index: 0;
  transition: opacity 0.4s;
}

.card-glow:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(13, 71, 161, 0.15);
}

.card-icon-glow {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0d47a1, #1a237e);
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(13, 71, 161, 0.3);
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glow:hover .card-icon-glow {
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 12px 24px rgba(13, 71, 161, 0.4);
}

.card-glow h5 {
  font-weight: 600;
  font-size: 18px;
  color: #0a2e75;
  z-index: 1;
  position: relative;
}

.card-glow p {
  font-size: 15px;
  color: #555;
  z-index: 1;
  position: relative;
}

/* hightlight end */

/*** Features Start ***/

.feature .feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 8px 8px 16px #c7d4f0, -8px -8px 16px #ffffff;

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature .feature-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
  transform: rotate(360deg);
}

.feature .feature-item a.btn {
  transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
  color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/

.about .about-img {
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: 30px;
}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  right: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img .about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 30px;
  font-weight: bold;
  background: var(--bs-secondary);
  color: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
  position: relative;
  border: 1px solid rgba(13, 71, 161, 0.1);
  box-shadow: 0 6px 16px rgba(13, 71, 161, 0.15);
  background-color: white;
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content a:hover {
  color: var(--bs-white);
}

.service-item:hover .service-content p {
  color: var(--bs-white);
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Counter Start ***/
.counter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(14, 15, 18, 0.9), rgb(11, 11, 11)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.counter .counter-item .counter-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*** Counter End ***/

/*** Products Start ***/
.product .product-item {
  border-style: dashed double none;
  border-radius: 10px;
}
.bg-transparent {
  background-color: transparent;
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center; /* centers the image horizontally */
}

.bg-transparent img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-transparent img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.product-img {
  transition: transform 0.6s ease, clip-path 0.6s ease;
}

.product-item:hover .product-img {
  transform: scale(1.1);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

/* Overlay styles */
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item:hover .img-overlay {
  opacity: 1;
}

.overlay-content {
  color: #fff;
  font-size: 2rem;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}

.product-item:hover .overlay-content {
  transform: scale(1);
}

/* Optional lift effect on the card */
.product-item {
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

/*** Products End ***/

/* why choose us */
.why-choose-us-timeline {
  background: #f4f7ff;
  padding: 60px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d47a1;
}

.section-header span {
  color: #1a237e;
}

.section-header p {
  font-size: 1rem;
  color: #050505;
  margin-top: 10px;
}

.timeline {
  position: relative;
  max-width: 747px;
  margin: auto;
  padding: 0 10px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #0d47a1;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: -16px 30px;
  position: relative;
  width: 50%;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item .content {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.1);
  transition: transform 0.4s ease;
}

.timeline-item .content:hover {
  transform: translateY(-8px);
}

.timeline-item .content i {
  font-size: 28px;
  color: #0d47a1;
  margin-bottom: 10px;
  display: block;
}

.timeline-item .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a237e;
}

.timeline-item .content p {
  font-size: 14px;
  color: #020202;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #0d47a1;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::before {
  left: -10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .timeline-item .content {
    margin: 11px;
    background-color: #ffffff;
    padding: 21px 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.1);
    transition: transform 0.4s ease;
  }
  .timeline::after {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-item::before {
    left: 0;
    right: auto;
  }
}

/* why choose end */

/* Mission & Vision Section Styles */

.mission-vision-section {
  overflow: hidden; /* Prevent potential overflow issues with animations/shadows */
}

/* General styling for both cards */
.mission-vision-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  border: 1px solid #e9ecef; /* Subtle border */
  display: flex; /* Use flexbox for internal alignment */
  flex-direction: column; /* Stack icon, title, text vertically */
  text-align: center; /* Center-align content */
}

.mission-vision-card .card-icon {
  transition: transform 0.3s ease-out;
}

.mission-vision-card .card-title {
  font-weight: 600;
  color: #343a40; /* Darker heading color */
}

.mission-vision-card .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; /* Allow text to take available space */
}

.mission-card {
  border-top: 5px solid #17a2b8;
}

.vision-card {
  border-top: 5px solid #17a2b8;
}

/* Hover Effects */
.mission-vision-card:hover {
  transform: translateY(-8px); /* Lift effect */
  box-shadow: 0 12px 25px var(--card-hover-shadow); /* Enhanced shadow */
  border-color: var(--primary-color); /* Highlight border */
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg); /* Slight icon animation */
}

/* Adjust padding for medium screens */
@media (max-width: 991.98px) {
  .mission-vision-card {
    padding: 1.5rem !important; /* Slightly reduce padding */
    text-align: left; /* Left-align on smaller screens if preferred */
  }
  .mission-vision-section .display-6 {
    font-size: 2rem; /* Slightly smaller heading on tablets */
  }
  .mission-vision-card .card-icon {
    text-align: center; /* Keep icon centered */
  }
}

/* Adjust font sizes and icon sizes for smaller screens */
@media (max-width: 767.98px) {
  .mission-vision-section .display-6 {
    font-size: 1.8rem; /* Smaller heading on mobile */
  }
  .mission-vision-card .card-title {
    font-size: 1.3rem;
  }
  .mission-vision-card .card-icon i {
    font-size: 2.5em; /* Slightly smaller icon */
  }
  .mission-vision-card {
    text-align: center; /* Re-center text on mobile */
  }
}

@media (max-width: 575.98px) {
  .mission-vision-card {
    padding: 1.25rem !important; /* Further reduce padding on small mobile */
  }
  .mission-vision-section .display-6 {
    font-size: 1.6rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.2rem;
  }
}

/* we offer */

.offer-flow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Dual Lines */
.offer-line::before,
.offer-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1976d2;
  border-radius: 10px;
}

.offer-line::before {
  left: 0;
}

.offer-line::after {
  right: 0;
}

/* Offer Points */
.offer-point {
  position: relative;
  margin-bottom: -5rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: calc(var(--i) * 0.3s);
  display: flex;
  justify-content: flex-start;
}

.offer-point:nth-child(even) {
  justify-content: flex-end;
}

.offer-point::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 20px;
  height: 20px;
  background: #0d47a1;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #90caf9;
  animation: pulse 2s infinite;
}

.offer-point:nth-child(odd)::before {
  left: -32px;
}

.offer-point:nth-child(even)::before {
  right: -32px;
}

.offer-point .content {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.15);
  position: relative;
  max-width: 400px;
}
.content .icon {
  width: 50px;
  height: 50px;
  background-color: #1976d2;
  color: white;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px #90caf9;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(144, 202, 249, 0.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .offer-point {
    margin-left: 3px;
    position: relative;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: calc(var(--i) * 0.3s);
    display: flex;
    justify-content: flex-start;
  }
  .offer-line::before {
    left: 20px;
  }

  .offer-line::after {
    right: 20px;
  }

  .offer-point::before {
    left: -24px !important;
    right: -24px !important;
  }

  .offer-point .content {
    margin-left: -3px;
    padding: 1.2rem;
    max-width: 100%;
  }
  .offer-point:nth-child(odd)::before {
    left: -32px;
  }

  .offer-point:nth-child(even)::before {
    right: -32px;
  }
}

/* we offer end */

/*** FAQs Start ***/

.faq-section {
  padding: 80px 20px;
  color: #f3f4f6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Accordion Container */
.accordion-item {
  background: #090a0b;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Accordion Header Button */
.accordion-button {
  color: #070707 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:hover {
  background-color: #2563eb;
  color: #090808;
}

/* Accordion Body */
.accordion-body {
  background: #6396e8;
  color: #090a0b;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

/* Image Box */
.faq-section img {
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.faq-section img:hover {
  transform: scale(1.03);
}

/*** FAQs End ***/

.gap-feature {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f7fcfe, #e3f2f9);
  border-radius: 24px;
  margin: auto;
  animation: fadeIn 0.8s ease-in-out;
}

/* Reusable Content Block */
.feature-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: riseIn 1s ease both;
}

.feature-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Alternate block direction */
.feature-content:nth-child(even) {
  flex-direction: row-reverse;
  background: #f0faff;
}

/* Image Styling */
.feature-image {
  flex: 1;
  min-width: 240px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
}

/* Text Styling */
.feature-label {
  background: #4caf50;
  color: #fff;
  padding: 6px 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: inline-block;
  animation: popIn 0.8s ease;
}

.feature-label.alt {
  background: #0288d1;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-content:nth-child(even) {
    flex-direction: column;
  }

  .feature-image {
    width: 100%;
  }

  .feature-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .gap-feature {
    padding: 2rem 1rem;
  }

  .feature-label {
    font-size: 0.9rem;
    padding: 4px 10px;
  }

  .feature-content {
    padding: 1.5rem;
  }
}

/* product pages */

.product-section {
  padding: 40px 20px;
    max-width: 1360px;
    margin: auto;
}

.product-box {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
}

.product-header {
  text-align: center;
  margin-bottom: 30px;
}

.product-title {
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 10px;
}

.product-description {
  font-size: 1.1rem;
  color: #333;
}

.product-content h2,
.product-content h3,
.product-content h4,
.product-content h5,
.product-content h6 {
  font-size: 1.5rem;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 12px;
  border-left: 4px solid #007bff;
}

.product-content p {
  padding: 0 10px;
  line-height: 1.7;
  color: #333;
}

.product-list {
  list-style: none;
  padding: 0 10px;
  margin-bottom: 30px;
}

.product-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  line-height: 1.6;
  color: #333;
}

.product-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #007bff;
  font-size: 1rem;
}

.product-images {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px;
}

.product-img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .product-title {
      font-size: 2rem;
  }

  .product-content h2,
  .product-content h3,
  .product-content h4,
  .product-content h5,
  .product-content h6 {
      font-size: 1.3rem;
  }

  .product-images {
      flex-direction: column;
      align-items: center;
  }
}
/* prodcut pages end */

/*** Footer Start ***/
.footer {
  background: #fff;
  border-top: dashed rgb(8, 4, 6);
  color: #000;
}

.footer .footer-item a {
  line-height: 35px;
  color: #000;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
  color: #000;
}
.rounded-circle {
  background-color: #fff;
  color: #020202 !important;
}
.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: #0e2be6;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary)
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top-style: groove;
  background: var(--bs-secondary);
}
/*** copyright end ***/


/* sitemap page */
/* SITEMAP WRAPPER */
.sitemap-wrapper {
    padding: 40px 20px;
    background: #f1f6ff;
}

/* SITEMAP BOX */
.sitemap-box {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    border-top: 4px solid #0d6efd;
    box-shadow: 0 0 10px rgba(0,0,0,0.09);
}

/* TITLE */
.sitemap-title {
    font-size: 28px;
    font-weight: 600;
    color: #0d2471;
    margin-bottom: 20px;
    text-align: center;
}

/* LIST */
.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LIST ITEMS */
.sitemap-item {
    padding: 10px 15px;
    position: relative;
    border-left: 2px solid #0d6efd55;
    margin-left: 15px;
}

/* SYMBOL BEFORE ITEM */
.sitemap-item::before {
    content: "➜";
    position: absolute;
    left: -20px;
    top: 10px;
    font-size: 14px;
    color: #0d6efd;
}

/* LINKS */
.sitemap-link {
    text-decoration: none;
    font-size: 18px;
    color: #0d2471;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s;
}

.sitemap-link:hover {
    color: #0d6efd;
    padding-left: 8px;
    font-weight: 600;
}

/* CHILD LIST */
.sitemap-child {
    margin-top: 8px;
    padding-left: 20px;
    border-left: 1px dashed #0d6efd55;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .sitemap-title {
        font-size: 22px;
    }
    .sitemap-link {
        font-size: 16px;
    }
}

/* privacy disclaimer terma nd consdition */
.disclaimer {
    color: #060606;
    line-height: 1.6;
    padding: 30px;
    max-width: 950px;
    margin: 30px auto;
    background-color: #f9f9f9; /* subtle background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* soft shadow */
}

/* Headings h2 to h6 with same font size */
.disclaimer h2,
.disclaimer h3,
.disclaimer h4,
.disclaimer h5,
.disclaimer h6 {
    color: #19409a !important;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px; /* same font size for all headings */
    text-transform: uppercase; /* optional: make headings stand out */
    letter-spacing: 0.5px;
}

/* Paragraph spacing */
.disclaimer p {
    margin-bottom: 12px;
}

/* Optional: add subtle line under each heading */
.disclaimer h2::after,
.disclaimer h3::after,
.disclaimer h4::after,
.disclaimer h5::after,
.disclaimer h6::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #19409a; /* blue line */
    margin-top: 5px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .disclaimer {
        padding: 20px;
        font-size: 14px;
    }

    .disclaimer h2,
    .disclaimer h3,
    .disclaimer h4,
    .disclaimer h5,
    .disclaimer h6 {
        font-size: 16px;
    }
    .navbar-brand p{
      display: none;
    }
}