@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Nunito", sans-serif !important;
}

.burger {
  padding: 6.25rem 0;
}

.t-burger {
  padding-top: 6.25rem;
}

.burger-top {
  margin-top: 6.25rem;
}

.burger-y {
  margin: 6.25rem 0;
}


@media (min-width: 1400px) {
  .container {
    max-width: 1250px !important;
  }
}


/* ============================================ website return top ==================================================================== */


#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  background-color: #1E58A6;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#backToTop:hover {
  background-color: #1E58A6;
  transform: scale(1.1);
}

/* ============================================loader================================================================================= */

body.loading {
  overflow: hidden;
}

/* Loader overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-circle {
  display: flex;
  gap: 15px;

}

.loader-dot {
  width: 20px;
  height: 20px;
  background: #1E58A6;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* ============================================ Header Css ==================================================================== */

.navbar-nav li.active>.nav-link,
.navbar-nav li.active>a {
  color: #EE1D23 !important;
  font-weight: 700;
  border-bottom: 2px solid #EE1D23;
}

.dropdown-menu li.active>.dropdown-item,
.dropdown-menu a.dropdown-item.active {
  background-color: #1E58A6;
  color: #fff !important;
   border-bottom: none !important;
}

.navbar-nav li.dropdown.active>.nav-link.dropdown-toggle {
  color: #EE1D23 !important;
}

/* Dropdown container styling */
.custom-dropdown {
  width: 200px !important;
  border: none;
  border-radius: 10px !important;
  padding: 0 !important;
  overflow: hidden;
  transform-origin: top;
  animation: dropdownSlide 0.3s ease;
  background: #ffffff;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Dropdown item style */
.custom-dropdown .dropdown-item {
  padding: 12px 20px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: normal;
  /* allow text to wrap if needed */
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
  padding-left: 25px;
}

/* Smooth dropdown open animation */
@keyframes dropdownSlide {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Divider style */
.dropdown-divider {
  margin: 0;
  border-color: #e0e0e0;
}

/* Nav link styling */
.nav-link.dropdown-toggle {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link.dropdown-toggle:hover {
  color: #10c14c;
}


/* ============================================ Main Banner Css ==================================================================== */

.slider-img {
  height: 900px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 700px;
  right: 0px !important;
  left: -400px !important;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: left !important;
  padding: 0px !important;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  padding-bottom: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 75px;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.7);
  /* X Y blur color */
}

.carousel-caption p {
  font-size: 1rem;
  line-height: 30px;
}

.carousel-size {
  width: 50%;
  height: 100%;
  margin: auto;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3.5rem !important;
  height: 3.5rem !important;

}

.banner_btn-w {
  width: 20%;
}

.main_banner {
  position: relative;
}

.main_banner_cards {
  position: absolute;
  bottom: -8%;
  left: 21%;
  z-index: 100;
}

.banner_cards {
  background-color: #fff;
  width: 100%;
  padding: 25px 20px !important;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-bottom: 5px solid #EE1D23;
}

.banner_cards:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}


.banner_cards h3 {
  font-size: 17px !important;
}

.banner_cards p {
  font-size: 14px !important;
  line-height: 20px !important;
}

/*======================================== 🖥️ Desktop Full Design  ==============================================================*/


.bg-prime {
  background-color: #FFF6F7;
}

hr {
  background-color: rgb(161 161 161) !important;
}

.navbar-postion {
  margin-top: 45px;
  /* space for top header */
}

.top_header {
  display: none;
  /* default hidden */
  background-color: #1E58A6;
  z-index: 10000;
  color: #fff;
  padding: 12px 0px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top_header {
  background-color: #1E58A6;
  z-index: 10000;
  color: #fff;
  padding: 12px 0px;
  font-size: 14px;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media a {
  text-decoration: none;
  color: #ffff;
}

.social-media a:hover {
  color: #EE1D23;
}

.social-media i:hover {
  color: #EE1D23;
}

.social-icons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  text-decoration: none;
  color: #ffff;
}

.social-icons a:hover {
  color: #EE1D23;
}

.social-icons i:hover {
  color: #EE1D23;
}

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
}

.user-icon:hover {
  background-color: #EE1D23;
  cursor: pointer;

}

.vepro_primary_btn {
  border-radius: 25px !important;
  padding: 12px 24px !important;
  background-color: #fff !important;
  border: 1px solid transparent !important;
  color: #1E58A6 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.vepro_primary_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E58A6, #EE1D23);
  border-radius: 25px;
  padding: 2px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  box-sizing: border-box;
}

.vepro_primary_btn span {
  position: relative;
  z-index: 1;
}

.vepro_primary_btn:hover {
  color: #1E58A6 !important;
  background-color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  border: 1px solid transparent;
}


.vepro_secondary_btn {
  display: inline-block;
  /* Ensure transform works */
  background-color: #fff;
  border: none;
  color: #000;
  padding: 14px 35px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.vepro_secondary_btn:hover {
  background-color: #EE1D23;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.about_img_section {
  position: relative;
  width: 100%;
  height: 460px;
}

.about_img1 {
  position: absolute;
  width: 65%;
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 50px;
}

.about_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.about_img2 {
  position: absolute;
  width: 54%;
  height: 73%;
  top: 14%;
  left: 36px;
  border-radius: 50px;
  border: 15px solid #fff;
}

.about_img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.about_circle {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 67%;
  left: 47%;
  background-color: #1E58A6;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about_circle h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
}

.about_circle p {
  font-size: 12px;
  margin: 0px;
}

.about_height {
  margin-top: 170px
}

.small-heading {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #EE1D23;
  text-transform: capitalize;
}

.main-heading {
  color: #000000;
  line-height: 55px;
  font-weight: 600;
}

p {
  line-height: 26px;
}

.text {
  font-size: 16px;
  width: 75% !important;
  margin: auto;
}

.reviews {
  text-align: center;
  padding: 0px 50px !important;
}

.reviews h1 {
  color: #EE1D23;
  font-weight: 600;
}

.reviews p {
  margin: 0px;
}



.lio-slider {
  position: relative;
  max-width: 1180px;
  margin: auto;
}

.swiper {
  max-width: 1174px !important;
  width: 100%;
}

.swiper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px; /* fixed uniform height */
  width: 100%;
  padding: 20px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.swiper .card:hover {
  transform: translateY(-5px);
}

/* Thumbnail container */
.swiper .thumbnail {
  width: 100%;
  height: 200px; /* fixed image area */
  max-height: 200px;
  border-radius: 15px;
  overflow: hidden;
}

/* Image inside thumbnail */
.swiper .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.swiper .thumbnail:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Title container */
.swiper .card .title-container {
  display: block;
  margin-top: 15px;
  text-decoration: none;
}

.swiper .card .title-container h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  max-height: 55px;
  overflow: hidden;
}

/* Description area */
.swiper .card .description {
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-height: 115px; /* limit text overflow */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Learn More button area always bottom aligned */
.learn-more {
  margin-top: auto;
  padding-top: 15px;
}

.learn-more a {
  text-decoration: none;
  color: #EE1D23 !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.learn-more a:hover {
  color: #b80000 !important;
}



.description ul {
  list-style: none; 
  padding-left: 0;
  margin: 0;
}

.description ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  font-weight: 400;
}


.description ul li::before {
  content: "\2022"; 
  position: absolute;
  left: 0;
  top: 0;
  color: #EE1D23; 
  font-size: 18px;
  line-height: 1.4;
}

.slider__prev,
.slider__next {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  /* background-color: rgba(217, 217, 217, 0.1); */
  border-radius: 50%;
  z-index: 2;
  /* box-shadow: 0 0 15px rgba(75, 75, 75, 0.4); */
  top: calc(50% - 25px);
  cursor: pointer;
  border: 2px solid #000;
}

.slider__prev::after {
  content: "";
  position: absolute;
  width: 12px !important;
  height: 12px !important;
  transform: rotate(-45deg);
  top: 18px;
  left: 18px;
  box-sizing: border-box;
}

.slider__next::after {
  content: "";
  position: absolute;
  width: 12px !important;
  height: 12px !important;
  transform: rotate(-45deg);
  top: 18px;
  left: 15px;
  box-sizing: border-box;
}


.slider__prev.swiper-button-disabled,
.slider__next.swiper-button-disabled {
  opacity: 0.6;
  box-shadow: none;
  cursor: not-allowed;
}

.slider__prev {
  left: 0;
}

.slider__prev::after {
  border-top: 3px solid #000000;
  border-left: 3px solid #000000;
}

.slider__next {
  right: 0;
}

.slider__next::after {
  border-bottom: 3px solid #000000;
  border-right: 3px solid #000000;
}

.lio-slider .swiper-pagination-bullet {
  background-color: transparent;
  border: 3px solid #1e58a6;
  height: 16px;
  width: 16px;
}

.lio-slider .swiper-pagination-bullet-active {
  background: #1e58a6;
}

.lio-slider .swiper-pagination {
  margin-bottom: -4rem;
}

@media all and (min-width: 1024px) {
  .slider__prev {
    left: -70px;
  }

  .slider__next {
    right: -70px;
  }
}

@media all and (min-width: 1024px) {
  .swiper .card {
    width: 324.15px !important;
  }
}

@media all and (min-width: 1280px) {
  .swiper .card {
    width: 378.15px !important;
  }
}

.gallery-card {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}


.gallery-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}


.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}


.gallery-card:hover img {
  transform: scale(1.1);
}


.gallery_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(209, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
}


.gallery-card:hover .gallery_overlay {
  opacity: 1;
}


.gallery_overlay h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}


.gallery-card:hover .gallery_overlay h2 {
  transform: translateY(0);
}

.footercreds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 15px;
}

.footercreds a img,
.footercreds span img {
  height: 100px;
  width: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
  /* smooth animation */
  display: block;
}

.footercreds img:hover {
  transform: scale(1.1);
  filter: grayscale(100%);
}

.tt-container {
  max-width: 1200px;
  margin: 0 auto;
}


.tt-slider {
  position: relative;
  overflow: hidden;
}

.tt-slide-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  transition: transform 0.6s ease;
}

.tt-card {
  flex: 0 0 33.3333%;
  padding: 0 15px;
  opacity: 0.4;
  transition: transform 0.6s, opacity 0.6s;
}

.tt-card.center {
  opacity: 1;
  transform: scale(1.05);
}

.tt-content {

  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}


.tt-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
  border: none;/
}


.tt-card.center .tt-img {
  width: 140px;
  height: 140px;
  border: 4px solid #1E58A6;
}

.tt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.tt-info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}


.tt-card.center .tt-info {
  opacity: 1;
  max-height: 400px;
  margin-top: 15px;
}

.tt-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.tt-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.tt-text {
  color: #1E58A6;
  margin-bottom: 10px;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.tt-rating {
  color: #ffbf00;
  font-size: 22px;
}


.tt-nav {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1E58A6;
  border: none;
  color: #fff;
  font-size: 25px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.tt-nav:hover {
  background-color: rgba(0, 123, 255, 1);
}

.tt-prev {
  left: 10px;
}

.tt-next {
  right: 10px;
}


@media(max-width: 1024px) {
  .tt-card {
    flex: 0 0 50%;
  }
}

@media(max-width: 768px) {
  .tt-card {
    flex: 0 0 80%;
  }
}

.contact_icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f7c028;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_icon:hover {
    background-color: #ee191e;
    color: #ffff !important;
    cursor: pointer;
  }

.contact_icon i {
  color: #000;
  font-size: 16px;
}
.contact_icon i:hover {
  color: #ffffff;
}

.contact_info h5 {
  font-size: 18px;
  margin: 0px;
  font-weight: 600;
}

.contact_info p {
  margin: 0px;
  font-size: 14px;
}

.follow-us h5 {
  color: #000;
}

.infomation-box {
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  padding: 50px !important;

}

.contact_us {
  position: relative;
  width: 100%;
  background-color: #FFF6F7;
  padding: 100px 0 250px;
  /* bottom padding extended for map overlap */
  overflow: visible;
}

/* Map positioned to overlap bottom center */
.map-section {
  position: absolute;
  left: 50%;
  bottom: -175px;
  /* half overlap */
  transform: translateX(-50%);
  width: 75%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25); */
}

/* Map iframe */
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Overlay for click activation */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(237 25 31 / 6%);
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

/* Fade-out effect */
.map-overlay[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}


.footer {
  min-height: 400px;
  color: #ffffff !important;
  background: rgba(167, 12, 27, 6);
  background: linear-gradient(to bottom, rgba(167, 13, 28, 0.7), rgba(179, 1, 4, 1));
  position: relative;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding-top: 200px;
  padding-bottom: 80px;
}

.footer-space {
  margin-top: 480px;
}

.newsletter_footer {
  position: absolute;
  top: -30%;
  left: 11%;
}

.newsletter-content {
  width: 80% !important;
  position: absolute;
  bottom: 30%;
  left: 11%;
  text-align: center;
  margin: auto;
}

.newsletter-content h3 {
  font-size: 26px !important;
  position: relative;
  color: #000 !important;
}

.newsletter-content h3::after {
  content: '';
  position: absolute;
  width: 10%;
  height: 7px;
  background-color: #B6131A;
  margin: auto;
  top: 45px;
  border-radius: 50px;
  left: 45%;
}

.newsletter-input input {
  width: auto !important;
  background-color: white !important;
  border-bottom: none !important;
  border-top: none;
  /* /* border-left: none; */

}

.newsletter-content p {
  color: #000 !important;
  font-size: 16px !important;
  line-height: 30px;
  margin-top: 30px;
}

.newsletter_footer img {
  height: 100% !important;
}

input {
  width: 100%;
  background-color: unset;
  border-bottom: 1px solid #c9c9c9;
  border-top: none;
  border-left: none;
  border-right: none;
}

input:focus-visible {
  outline: none;
}

textarea {
  width: 100%;
  background-color: unset;
  border-bottom: 1px solid #c9c9c9;
  border-top: none;
  border-left: none;
  border-right: none;
}

textarea:focus-visible {
  outline: none;
}

.footer img {
  height: 55px;
}

.footer h5 {
  margin-bottom: 2rem;
  font-weight: 800;
  color: #fff;
}

.footer p {
  font-size: 0.9rem;
  color: #fff;
}

.footer a {
  color: rgba(255, 255, 255);
  text-decoration: none;
}

.footer .social-icons i:hover {
  color: #f7c028;
}

.footer hr {
  color: inherit;
  background-color: rgb(255 255 255) !important;
}

.footer .text-center {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.list-unstyled li:first-child {
  padding-top: 0px;
}

.list-unstyled li {
  padding-top: 15px;
}

.footer ul.list-unstyled li a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #ffff;
}

.footer ul.list-unstyled li a:hover {
  color: #f7c028;
  transform: translateX(5px);
}

.google-img {
  height: 40px !important;
}

.contact-info a {
  display: block;
  margin-top: 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}


.contact-info a:hover {
  color: #f7c028;
  transform: translateX(5px);
}

.custom-input-wrapper {
  display: flex !important;
  align-items: center !important;
  width: 35% !important;
  max-width: 576px !important;
  height: 55px !important;
  background: #fff !important;
  border-radius: 50px !important;
  padding: 0 13px 0 28px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  position: absolute;
  left: 33%;
}

.custom-input-wrapper input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 16px !important;
  color: #555 !important;
}

.custom-input-wrapper input::placeholder {
  color: #999 !important;
}

.custom-input-wrapper button {
  width: 42px !important;
  height: 42px !important;
  border: none !important;
  border-radius: 50% !important;
  background: linear-gradient(to bottom, #A70C1B, #B30005) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: transform 0.3s ease !important;
}

.custom-input-wrapper button:hover {
  transform: scale(1.05) !important;
}

.cta-box {
  text-align: center;
  background: linear-gradient(180deg, #1d58a6, #282828);
  padding: 60px 30px;
  color: #fff;
  border-radius: 16px;
  margin-top: 100px;
}

.cta-box h3 {
  font-size: 26px;
  margin-bottom: 40px;
}

.cta-btn {
  background: #fff;
  color: #1e58a6;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.transform-btn:hover {
  background: #e63946;
  color: #fff;
  transform: scale(1.1);
}




/* ===================== Creative Banner ===================== */
.creative-banner {
  position: relative;
  height: 600px;
  background: url('images/banner1.webp') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* Gradient Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 88, 166, 0.9), rgba(0, 0, 0, 0.85));
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Floating Geometric Shapes (for depth) */
.banner-shapes::before,
.banner-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite alternate;
}

.banner-shapes::before {
  width: 250px;
  height: 250px;
  background: #ffb703;
  top: 15%;
  left: 10%;
}

.banner-shapes::after {
  width: 300px;
  height: 300px;
  background: #1e58a6;
  bottom: 10%;
  right: 15%;
}

@keyframes float {
  from {
    transform: translateY(0px) scale(1);
  }

  to {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Banner Content */
.banner-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.2s ease forwards;
  top: 35%;
}

/* Heading */
.banner-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #ffffff, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s ease-in-out infinite alternate;
}

.banner-title span {
  color: #ffb703;
}

/* Decorative line under heading */
.banner-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #ffb703;
  border-radius: 5px;
  animation: lineSlide 3s infinite alternate;
}

@keyframes lineSlide {
  from {
    width: 80px;
    opacity: 0.7;
  }

  to {
    width: 150px;
    opacity: 1;
  }
}

@keyframes glowText {
  from {
    text-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
  }
}

/* Description */
.banner-desc {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  animation: fadeInUp 1.5s ease forwards;
}

/* Button */
.banner-btn {
  background: #ffb703;
  color: #1e58a6;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
}

.banner-btn:hover {
  background: #fff;
  color: #1e58a6;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .creative-banner {
    height: 400px;
  }

  .banner-title {
    font-size: 23px;
  }

  .banner-desc {
    font-size: 16px;
  }
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(178deg, #ff7784, #B30005);
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: rgba(163, 12, 27, 0.3) 0px 15px 40px;
}

/* Stats */

.stats {
  background: #f7f7f7;
}

.stats h3 {
  font-size: 36px;
  font-weight: 700;
  color: #A70C1B;

}

.stats p {
  font-weight: 500;
  color: #555;
}

.faq-modern {
  padding: 80px 0;
}



.faq-item {
  background: #fff;
  border-left: 5px solid #e32a2d;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h5 {
  margin: 0;
  font-weight: 600;
}

.faq-btn {
  background: #e32a2d;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.active .faq-btn {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}

.faq-item.active .faq-body {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}



/*======================================== 📱 Mobile/Tablet Responsive ==============================================================*/


@media (max-width: 768px) {

  body,
  html {
    overflow-x: hidden;
  }



  .t-burger {
    padding-top: 3.25rem;
  }

  .burger-y {
    margin: 4rem 0;
  }

  .burger {
    padding: 4rem 0;
  }

  .main-heading {
    line-height: 35px;
    font-size: 25px;
  }

  .top_header {
    display: none;
  }

  .navbar-postion {
    margin-top: 0px;
  }

  .navbar-toggler {
    border: none !important;
    padding: 0px !important;
  }

  .navbar-toggler:focus-visible {
    outline: none !important;
    border: none !important;
  }

  .main_banner {
    position: unset !important;

  }

  .main_banner_cards {
    position: unset !important;
    margin-top: 30px;
  }

  .banner_btn-w {
    width: auto;
  }

  .slider-img {
    height: 100vh !important;
  }

  .overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .carousel-caption {
    top: 60% !important;
    left: 5% !important;
    right: 5% !important;
    width: 100% !important;
    height: auto;
    text-align: center;
    padding: 15px 0;
  }

  .carousel-size {
    width: 90% !important;
    height: 100%;
    margin: auto;
  }

  .carousel-caption h1 {
    font-size: 2.3rem !important;
    line-height: 45px;
  }

  .carousel-caption p {
    font-size: 0.9rem !important;
    line-height: 22px !important;
  }

  .banner-btn {
    font-size: 0.9rem;
    padding: 10px 30px;
  }


  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }

  .about_height {
    margin-top: 0px;
  }

  .about_img_section {
    height: 370px;
  }

  .about_img1 {
    width: 69%;
  }

  .about_img2 {
    width: 60%;
    height: 69%;
    top: 15%;
    left: 0px;
    border: 11px solid #fff;
  }

  .about_circle {
    width: 93px;
    height: 100px;
    top: 62%;
    left: 45%;
  }

  .about_circle h1 {
    font-size: 17px;
  }

  .about_circle p {
    font-size: 11px;
  }

  .swiper-pagination {
    display: none;
  }

  .swiper {
    padding: 0px 12px !important;
  }

  .swiper .card {
    max-height: 460px;
    padding: 10px 16px;
  }

  .slider__prev {
    width: 40px !important;
    height: 40px !important;
    top: 470px !important;
    left: 38%;
  }

  .slider__next {
    width: 40px !important;
    height: 40px !important;
    top: 470px !important;
    right: 38%;
  }

  .slider__next::after {
    width: 11px !important;
    height: 11px !important;
    top: 13px;
    left: 11px;
  }

  .slider__prev::after {
    width: 11px !important;
    height: 11px !important;
    top: 14px;
    left: 15px;
  }

  .gallery-card {
    height: 190px;
    margin-bottom: 15px;
  }

  .footercreds a img,
  .footercreds span img {
    height: 55px;
    width: auto;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
  }

  .footercreds {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
  }

  .tt-card.center .tt-img {
    width: 120px;
    height: 120px;
    border: 5px solid #1E58A6;
  }

  .tt-nav {
    width: 45px;
    height: 45px;
  }

  .contact_us {
    padding: 70px 0 0px;

  }

  .contact_info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-left: 15px;
  }

  .contact_info p {
    font-size: 14px;
    margin-left: 15px;
  }

  .contact_icon {
    width: 35px;
    height: 35px;
  }

  .contact_icon i {
    font-size: 14px;
  }

  .infomation-box {
    padding: 30px !important;
  }

  .map-section {
    position: relative;
    width: 100%;
    height: 280px;
    margin: 0px;
    right: auto;
    top: auto;
    bottom: -72px;
  }

  .map-section iframe {
    margin-left: 0;
    width: 100%;
    height: 100%;
  }

  .map-overlay {
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .newsletter_footer {
    top: -27%;
    left: 0%;
  }

  .newsletter_footer img {
    height: 40vh !important;
    transform: scaleX(1.5);
  }

  .newsletter-content h3 {
    font-size: 20px !important;
  }

  .newsletter-content h3::after {
    width: 22%;
    height: 5px;
    top: 35px;
    left: 38%;
  }

  .newsletter-content p {
    color: #000 !important;
    font-size: 14px !important;
    line-height: 22px;
    margin-top: 25px;
  }

  .newsletter-content {
    width: 100% !important;
    position: absolute;
    bottom: 28%;
    left: 0%;
    text-align: center;
    margin: auto;
  }

  .custom-input-wrapper button {
    width: 35px !important;
    height: 35px !important;
  }

  .custom-input-wrapper {
    width: 70% !important;
    height: 47px !important;
    padding: 0 8px 0 20px !important;
    left: 15%;
  }

  .footer {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 20px;
    text-align: left;
    margin-top: 430px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .footer .social-icons {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer .row>[class^="col-"] {
    text-align: left;
  }

  .footer input {
    width: 100%;
  }

  .footer button {
    width: 20%;
  }

  .cta-box {
    padding: 25px;
    margin-top: 60px;
  }

  .cta-box h3 {
    font-size: 25px;
    margin-bottom: 22px;
  }

  .faq-btn {
    padding: 19px;
    font-size: 23px;
  }

  .faq-item {
    border-left: 5px solid #e32a2d;
    padding: 20px 14px;
  }

  .faq-header h5 {
    font-size: 16px;
  }

  .reviews {
    padding: 15px !important;
    border-right: none !important;
    border-bottom: 1px solid #dadada;
  }

  .reviews:last-child {
    border-bottom: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  .navbar-nav li.active>.nav-link, .navbar-nav li.active>a {
    border-bottom: 0px ;
}
.text {
    width: 100% !important;

}

}


/* ==================== MOBILE NAV PANEL STYLING ==================== */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 30px;
    overflow-y: auto;
    z-index: 9999;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    
  }

  .navbar-nav .nav-link {
    text-align: left;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px !important;

  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    background: #f9f9f9;
    border: none;
    box-shadow: none;
    width: 100%;
    display: none;
    margin-top: 10px;
    border-radius: 8px;

  }

  .navbar-nav .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 15px;
    font-size: 16px;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  /* Overlay when panel open */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    display: none;
  }

  .mobile-overlay.show {
    display: block;
  }
  .mobile_nav{
    width: 100%;
    padding: 15px;
   border-bottom: 1px solid #e3e3e3;
    margin-bottom: 20px;
  }
  .mobile_nav i{
    font-size: 20px;
  }
  .mobile_nav i:hover{
     color: #ee1c22;
  }

} 


