/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Variables */
:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white-color: #ffffff;
  --black-color: #000000;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  outline: none;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: capitalize;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(18, 115, 235, 0.3);
}

.btn-primary:hover {
  background-color: #0d5fc4;
  color: var(--white-color);
  box-shadow: 0 8px 25px rgba(18, 115, 235, 0.4);
}

.btn-outline {
  background-color: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 0px;
}

.section-header .subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  /* position: relative; */
  padding-left: 15px;
}

/* .section-header .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
} */

/* .section-header .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
} */

/* .section-header .section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
} */

.section-header .section-desc {
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader svg {
  width: 100px;
  height: 100px;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Header */
.header {
  background-color: var(--white-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
  transition: var(--transition);
  z-index: 999;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.5s ease;
  padding: 0px 0;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar {
  padding: 0;
}

.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.navbar-brand img {
  transition: var(--transition);
  height: 100px;
  width: auto;
}

.navbar-nav .nav-item {
  margin: 0 10px;
  position: relative;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  padding: 8px 15px;
  position: relative;
}

/* .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
} */

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: calc(100% - 30px);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: rgba(18, 115, 235, 0.1);
  color: var(--primary-color);
}

.book-now-btn {
  padding: 8px 20px;
  font-size: 14px;
}

.navbar-toggler {
  border: none;
  padding: 0;
  font-size: 24px;
  color: var(--dark-color);
}

/* Offcanvas Menu */
.offcanvas {
  background-color: var(--white-color);
}

.offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.offcanvas-body {
  padding: 20px;
}

.offcanvas-body .navbar-nav {
  flex-direction: column;
}

.offcanvas-body .nav-item {
  margin: 0;
}

.offcanvas-body .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.offcanvas-body .dropdown-menu {
  position: static;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.offcanvas-body .dropdown-item {
  padding-left: 30px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-slider .swiper-slide {
  padding: 125px 0;
  position: relative;
  height: 85vh;
}

.slide-1 {
  background: linear-gradient(135deg, #0a3d7a 0%, #1273eb 100%);
}

.slide-2 {
  background: linear-gradient(135deg, #092b5a 0%, #0d5fc4 100%);
}

.slide-3 {
  background: linear-gradient(135deg, #0a2252 0%, #0a4ba0 100%);
}

.slide-content {
  padding-right: 30px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
}

.slide-content p {
  font-size: 16px;
  color: var(--gray-color);
  margin-bottom: 30px;
  color: rgb(116, 211, 255);
}

.slide-btns .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.slide-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide-img img {
  border-radius: 10px;
  object-fit: contain !important;
  transition: var(--transition);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
  opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 1;
  border: 2px solid var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 100px;
}

/* Modern About Section */
.about-modern {
  position: relative;
  overflow: hidden;
}

.about-visual {
  position: relative;
  padding: 0px;
}

.main-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(18, 115, 235, 0.15);
}

.main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  height: 400px;
  display: block;
  transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-img {
  transform: scale(1.03);
}

/* Experience Pill */
.experience-pill {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  z-index: 3;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.inner-pill {
  background: linear-gradient(135deg, #1273eb 0%, #0d5fc4 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.inner-pill .number {
  font-size: 1.75rem;
  line-height: 1;
}

.inner-pill .label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ribbon-end {
  width: 20px;
  height: 40px;
  background: #0a4ba0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: -1px;
}

/* Stats Cards */
.stats-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.card-1 {
  bottom: 30px;
  left: -20px;
  border-left: 4px solid #1273eb;
}

.card-2 {
  bottom: -20px;
  right: 30px;
  border-left: 4px solid green;
}

.stat-icon {
  font-size: 1.5rem;
  margin-right: 12px;
  color: #1273eb;
}

.card-2 .stat-icon {
  color: green;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.count {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Content Styles */
.section-tag {
  display: inline-block;
  background: rgba(18, 115, 235, 0.1);
  color: #1273eb;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(90deg, #1273eb 0%, #0d5fc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.mission-statement .lead {
  font-size: 1.25rem;
  color: #4a5568;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #1273eb;
}

/* Feature Items */
.feature-item {
  display: flex;
  margin-bottom: 30px;
}

.feature-icon {
  position: relative;
  margin-right: 20px;
  flex-shrink: 0;
}

.icon-bg {
  width: 60px;
  height: 60px;
  background: rgba(18, 115, 235, 0.1);
  border-radius: 12px;
  position: absolute;
  transform: rotate(45deg);
  z-index: 0;
}

.feature-icon i {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: #1273eb;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-sublist {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.feature-sublist li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.feature-sublist i {
  color: #1273eb;
  margin-right: 8px;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Buttons */
.btn-primary-gradient {
  background: linear-gradient(90deg, #1273eb 0%, #0d5fc4 100%);
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(18, 115, 235, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 115, 235, 0.4);
  color: white;
}

.btn-outline-primary {
  border: 2px solid #1273eb;
  color: #1273eb;
  background: transparent;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #1273eb;
  color: white;
}

/* Trust Bar */
.trust-bar {
  /* background: rgba(18, 115, 235, 0.03); */
  border-radius: 16px;
  padding: 40px;
  margin-top: 80px;
  width: 90%;
  margin: 0 auto;
  /* border: 1px dashed rgba(18, 115, 235, 0.2); */
}

.trust-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 2rem;
  color: #1273eb;
  margin-bottom: 15px;
  display: inline-block;
}

.trust-item h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Animations */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .experience-pill {
    right: 10px;
  }

  .stats-card {
    position: relative;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 15px;
    display: inline-block;
    margin-right: 15px;
  }

  .trust-bar {
    margin-top: 50px;
    padding: 30px 15px;
  }
}

@media (max-width: 767.98px) {
  .about-content {
    padding-left: 0 !important;
    margin-top: 30px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .trust-item {
    padding: 15px 10px;
  }
}

/* Counter Section */
.counter-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center;
  background-size: cover;
  color: var(--white-color);
  position: relative;
  padding: 80px 0;
}

.counter-box {
  text-align: center;
  padding: 30px 15px;
}

.counter-box .counter {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 5px;
  display: inline-block;
}

.counter-box span {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
}

.counter-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Why Choose Us */
.why-choose-section {
  background-color: var(--light-color);
}

.why-choose-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-img img {
  width: 100%;
  height: auto;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-video {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white-color);
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  transition: var(--transition);
}

.play-video:hover {
  transform: scale(1.1);
  color: var(--white-color);
}

.accordion-button {
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 5px !important;
  box-shadow: none;
  background-color: var(--white-color);
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color) !important;
}

.accordion-button:not(.collapsed) i {
  color: var(--white-color);
}

.accordion-button:not(.collapsed)::after {
  /* Replace default arrow with white SVG */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: var(--bs-accordion-btn-icon-transform);
}

/* Remove Bootstrap's default arrow completely */
.accordion-button::after {
  background-image: none !important;
  content: "+"; /* Plus for collapsed */
  font-size: 1.2rem;
  font-weight: bold;
  color: #161616; /* White icon */
  margin-left: auto;
  transform: none !important;
}

/* Show minus when expanded */
.accordion-button:not(.collapsed)::after {
  content: "–";
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-body {
  padding: 20px;
}

/* Loans Section */
.loan-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.loan-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(18, 115, 235, 0.2);
}

.loan-card.featured .btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.loan-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: rgba(18, 115, 235, 0.1);
  color: var(--primary-color);
  font-size: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.loan-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.loan-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.loan-features {
  margin-bottom: 25px;
}

.loan-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.loan-features i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
}

/* Poster Section */
.poster-section {
  background: linear-gradient(rgba(18, 115, 235, 0.9), rgba(18, 115, 235, 0.9)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: var(--white-color);
  text-align: center;
  position: relative;
}

.poster-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--white-color);
}

.poster-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Section */
.testimonial-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(18, 115, 235, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--gray-color);
}

.testimonialSwiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.testimonialSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(18, 115, 235, 0.1);
  color: var(--primary-color);
  font-size: 24px;
  border-radius: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(18, 115, 235, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  height: 50px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  padding: 10px 15px;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

/* Footer */
.footer {
  position: relative;
}

/* .footer img{
   
    height: 60px;
    object-fit: contain;
} */

.footer ul {
  padding-left: 0;
}

.footer-top {
  padding: 100px 0 70px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget img {
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-widget .widget-title {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget .widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.about-text {
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white-color);
  transform: translateY(-5px);
}

.links-list li {
  margin-bottom: 10px;
}

.links-list a {
  display: flex;
  align-items: center;
  color: #a0a0a0;
  transition: var(--transition);
}

.links-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.links-list a i {
  margin-right: 10px;
  font-size: 12px;
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 18px;
}

.footer-bottom {
  background-color: #111;
  padding: 20px 0;
}

.copyright-text {
  color: #a0a0a0;
  margin: 0;
}

.footer-links a {
  color: #a0a0a0;
  margin-left: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white-color);
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  color: var(--white-color);
  transform: translateY(-5px);
}

/* Modal */
.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  font-weight: 600;
  color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .section-header .section-title {
    font-size: 32px;
  }

  .slide-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-header .section-title {
    font-size: 28px;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .desktop-menu .navbar-nav {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-header .section-title {
    font-size: 26px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .counter-box .counter,
  .counter-box span {
    font-size: 36px;
  }

  .experience-badge {
    right: 0;
  }

  .footer-top {
    padding: 60px 0 40px;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .section-header .section-title {
    font-size: 24px;
  }

  .slide-content h1 {
    font-size: 24px;
  }

  .slide-btns .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .counter-box {
    padding: 20px 15px;
  }

  .counter-box .counter,
  .counter-box span {
    font-size: 30px;
  }

  .poster-content h2 {
    font-size: 28px;
  }

  .footer-bottom .text-center,
  .footer-bottom .text-md-end {
    text-align: center !important;
  }

  .footer-links {
    margin-top: 10px;
    text-align: center !important;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

.service-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(18, 115, 235, 0.1);
  color: var(--primary-color);
  font-size: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: var(--transition);

  /* Rotate to make rhombus shape */
  transform: rotate(45deg);
}

/* Rotate the icon inside back to normal */
.service-icon i {
  display: inline-block;
  transform: rotate(-45deg);
}

/* Services Section - Blue Version */
.services-blue-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.services-blue-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.services-blue-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 115, 235, 0.85); /* Solid blue overlay */
}

.services-blue-content {
  position: relative;
  z-index: 2;
}

/* Service Cards */
.service-blue-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
  border-top: 4px solid #1273eb;
}

.service-blue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-blue-icon {
  width: 70px;
  height: 70px;
  background: rgba(18, 115, 235, 0.1);
  color: #1273eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 2px solid #1273eb;
}

.service-blue-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1273eb;
}

.service-blue-card p {
  margin-bottom: 20px;
  color: #555;
}

.service-blue-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.service-blue-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.service-blue-features i {
  color: #1273eb;
  margin-right: 10px;
  font-size: 14px;
  margin-top: 4px;
}

.service-blue-link {
  font-weight: 600;
  color: #1273eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-blue-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.service-blue-link:hover {
  color: #0d5fc4; /* Slightly darker blue */
}

.service-blue-link:hover i {
  transform: translateX(5px);
}

/* Section Header Adjustments */
.services-blue-content .section-header .subtitle {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
}

.services-blue-content .section-title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-blue-content .section-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .services-blue-section {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .services-blue-section {
    padding: 60px 0;
  }

  .service-blue-card {
    padding: 25px;
  }
}

/* CSS */
.fund-countries {
  padding: 80px 0;
  background: #f8f9fa;
}

.fund-countries-header {
  text-align: center;
  margin-bottom: 0px;
}

.fund-countries-subtitle {
  display: inline-block;
  color: #1273eb;
  background: rgba(18, 115, 235, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.fund-countries-title {
  font-size: 2.25rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.fund-countries-desc {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.fund-countries-swiper {
  padding: 30px 10px;
  overflow: hidden;
}

.fund-country-card {
  background: white;
  border-radius: 12px;
  /* overflow: hidden; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.fund-country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fund-country-flag {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1273eb 0%, #0a4ba0 100%);
}

.fund-country-flag img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fund-country-name {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: #1273eb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.fund-country-details {
  padding: 40px 20px 20px;
}

.fund-country-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.fund-country-details li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.fund-country-details i {
  width: 25px;
  color: #1273eb;
  margin-right: 10px;
  text-align: center;
}

/* Swiper Navigation */
.fund-country-next,
.fund-country-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: #1273eb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fund-country-next:after,
.fund-country-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.fund-country-next:hover,
.fund-country-prev:hover {
  background: #1273eb;
  color: white;
}

.fund-country-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 1;
}

.fund-country-pagination .swiper-pagination-bullet-active {
  background: #1273eb;
  width: 20px;
  margin-top: 10px;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .fund-countries {
    padding: 60px 0;
  }

  .fund-country-flag {
    height: 120px;
  }

  .fund-country-flag img {
    height: 60px;
  }

  .fund-country-details {
    padding: 30px 15px 15px;
  }
}

@media (max-width: 767.98px) {
  .fund-countries-title {
    font-size: 1.75rem;
  }

  .fund-country-name {
    font-size: 0.9rem;
    padding: 4px 15px;
  }
}

.fund-countries .swiper-slide {
  padding: 0 0 20px;
}
.testimonial-section .swiper-slide {
  padding: 0 0 20px;
}

/* Footer Background Styles */
.footer {
  position: relative;
  color: #fff;
}

.footer-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(2 51 112 / 86%);
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Adjust existing footer styles for better visibility */
.footer-top {
  background: transparent;
}

.footer-widget h3.widget-title {
  color: #fff;
}

.footer-widget .about-text,
.footer-widget .links-list a,
.footer-widget .services-list a,
.footer-widget .contact-list span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-widget .links-list a:hover,
.footer-widget .services-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: #fff;
  color: #1273eb;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: #fff;
}

/* Adjust icon colors */
.footer-widget i {
  color: #fff;
}

.poster-section {
  position: relative;
  padding: 100px 0; /* Adjust padding as needed */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white; /* Text color for content */
  text-align: center;
}

.poster-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0056c0e0;
  z-index: 0;
}
.poster-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Modern Gallery Hover Effect */
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 79, 169, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay h5 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-overlay a {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay a {
  transform: translateY(0);
}

.gallery-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.gallery-item {
  flex: 1 0 calc(12.666% - 10px);
  min-width: 0;
  margin: 0 10px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(13, 79, 169, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-caption h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-caption a {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-caption a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Hover Effect */
.gallery-item:hover {
  flex: 3 0 calc(50% - 10px);
  z-index: 10;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Make other items shrink slightly when one is hovered */
.gallery-row:hover .gallery-item:not(:hover) {
  flex: 0.8 0 calc(10% - 10px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .gallery-item {
    flex: 1 0 calc(25% - 10px);
  }

  .gallery-item:hover {
    flex: 3 0 calc(50% - 10px);
  }

  .gallery-row:hover .gallery-item:not(:hover) {
    flex: 0.8 0 calc(16.666% - 10px);
  }
}

@media (max-width: 992px) {
  .gallery-item {
    flex: 1 0 calc(33.333% - 10px);
  }

  .gallery-item:hover {
    flex: 3 0 calc(66.666% - 10px);
  }
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 0 calc(50% - 10px);
  }

  .gallery-item:hover {
    flex: 3 0 calc(100% - 10px);
  }
}

@media (max-width: 576px) {
  .gallery-item {
    flex: 1 0 calc(100% - 10px);
  }
}

/* Enquiry Modal Styles */
#enquiryModal .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#enquiryModal .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 1.2rem;
}

#enquiryModal .modal-title {
  font-weight: 600;
  color: white;
  font-size: 1.3rem;
}

#enquiryModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#enquiryModal .modal-body {
  padding: 1.5rem;
}

#enquiryModal .form-label {
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

#enquiryModal .input-group-text {
  background-color: white;
  border-right: none;
  color: var(--primary-color);
}

#enquiryModal .form-control,
#enquiryModal .form-select {
  border-left: none;
  padding: 0.75rem 0.25rem;
  background-color: white;
}

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(18, 115, 235, 0.15);
  border-color: var(--primary-color);
}

#enquiryModal textarea.form-control {
  min-height: 100px;
}

#enquiryModal .btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

#enquiryModal .btn-primary:hover {
  background-color: #0d5bc1;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(18, 115, 235, 0.3);
}

/* Input group border styling */
#enquiryModal
  .input-group:not(.has-validation)
  > .form-control:not(:last-child),
#enquiryModal
  .input-group:not(.has-validation)
  > .form-select:not(:last-child) {
  border-radius: 0 0.375rem 0.375rem 0;
}

#enquiryModal .input-group > .form-control,
#enquiryModal .input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

#enquiryModal
  .input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
#enquiryModal
  .input-group:not(.has-validation)
  > .dropdown-toggle:nth-last-child(n + 3) {
  border-radius: 0.375rem 0 0 0.375rem;
}

.btnicon-call {
  width: 40px;
  height: 40px;
  left: 20px;
  border-radius: 100%;
  background-color: #326694;
  position: fixed;
  bottom: 20px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

.btnicon-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #2ac902;
  left: 10px;
  position: fixed;
  bottom: 70px;
  margin-left: 10px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

.btnicon-call a {
  color: white;
  font-size: 20px;
}
.btnicon-whatsapp a {
  color: white;
}

/* .btnicon-whatsapp a {
  color: skyblue;
} */

.service-blue-features {
  display: none !important;
}

.loan-features {
  display: none;
}

.fund-country-details {
  display: none;
}

:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --loader-bg: #f8f9fa;
}

.fund-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--loader-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.preloader-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Book Styles */
.book {
  width: 80px;
  height: 100px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  margin-bottom: 0px;
}

.book-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px 5px 5px 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform-origin: left center;
  animation: bookOpen 2s ease-in-out infinite;
}

.book-spine {
  position: absolute;
  left: 0;
  width: 8px;
  height: 100%;
  background: darken(var(--primary-color), 10%);
}

.pages-container {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  transform-style: preserve-3d;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border: 1px solid #eee;
  transform-origin: left center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.page-1 {
  animation: pageTurn 2s 0.2s ease-in-out infinite;
}
.page-2 {
  animation: pageTurn 2s 0.4s ease-in-out infinite;
}
.page-3 {
  animation: pageTurn 2s 0.6s ease-in-out infinite;
}
.page-4 {
  animation: pageTurn 2s 0.8s ease-in-out infinite;
}

/* Flying Papers */
.flying-papers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.paper {
  position: absolute;
  background: white;
  color: var(--primary-color);
  font-size: 18px;
  padding: 5px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

.paper-1 {
  top: 30%;
  left: 20%;
  animation: flyPaper1 3s linear infinite;
}
.paper-2 {
  top: 40%;
  left: 70%;
  animation: flyPaper2 3s 0.5s linear infinite;
}
.paper-3 {
  top: 60%;
  left: 10%;
  animation: flyPaper3 3s 1s linear infinite;
}
.paper-4 {
  top: 20%;
  left: 60%;
  animation: flyPaper4 3s 1.5s linear infinite;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 20px 0 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-color);
  animation: progressLoad 2s infinite;
}

/* Logo Text */
.fund-logo {
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.fund-logo span:nth-child(1),
.fund-logo span:nth-child(3) {
  color: var(--primary-color);
}

/* Animations */
@keyframes bookOpen {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(-45deg);
  }
}

@keyframes pageTurn {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(-30deg);
  }
}

@keyframes flyPaper1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-50px, -50px) rotate(-20deg);
    opacity: 0;
  }
}

@keyframes flyPaper2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(40px, -60px) rotate(15deg);
    opacity: 0;
  }
}

@keyframes flyPaper3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-30px, 40px) rotate(-10deg);
    opacity: 0;
  }
}

@keyframes flyPaper4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(50px, 30px) rotate(25deg);
    opacity: 0;
  }
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}

:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --dark-color: #1a1a1a;
}

.bank-partners-section {
  padding: 40px 0;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.bank-slider {
  width: 100%;
  padding: 20px 0;
}

.bank-slide {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.bank-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bank-slide img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%) contrast(0.8);
            opacity: 0.8; */
  transition: all 0.3s ease;
}

.bank-slide:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}

/* Custom swiper styles */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

:root {
  --primary-color: #1273eb;
  --white-color: #ffffff;
  --transition: all 0.5s ease;
}

/* Main Container */
.my-breadcum-section {
  background: linear-gradient(135deg, var(--primary-color), #0a56b5);
  color: var(--white-color);
  overflow: hidden;
}

/* Row Layout */
.my-breadcum-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Content Section */
.my-breadcum-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.my-breadcum-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.my-breadcum-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.my-breadcum-section img {
  height: 250px;
  width: 100%;
  display: none;
  object-fit: contain;
}

.my-breadcum-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.my-breadcum-image-2 {
  position: relative;
  height: 250px;
  width: 100%;
  object-fit: contain;
  z-index: 3;
}

/* New background circles */
.circle-background {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  /* filter: blur(10px); */
  z-index: 1;
}

/* Circle 1 - Large pulsing circle */
.circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffffff 0%, white 70%);
  top: 20%;
  left: 30%;
  animation: pulseCircle1 8s infinite alternate ease-in-out;
}

/* Circle 2 - Medium irregular circle */
.circle-2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffffff 0%, white 80%);
  top: 50%;
  left: 60%;
  animation: pulseCircle2 7s infinite alternate-reverse ease-in-out;
}

/* Circle 3 - Small fast circle */
.circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #ffffff 0%, white 60%);
  top: 30%;
  left: 10%;
  animation: pulseCircle3 5s infinite alternate ease-in-out;
}

/* Circle animations */
@keyframes pulseCircle1 {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.3) translate(-20px, 10px);
  }
  100% {
    transform: scale(0.8) translate(15px, -5px);
  }
}

@keyframes pulseCircle2 {
  0% {
    transform: scale(1) skew(0deg);
  }
  50% {
    transform: scale(1.5) skew(10deg);
  }
  100% {
    transform: scale(0.7) skew(-5deg);
  }
}

@keyframes pulseCircle3 {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.8) rotate(15deg);
  }
  100% {
    transform: scale(0.6) rotate(-10deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .circle-1 {
    width: 200px;
    height: 200px;
    left: 20%;
  }
  .circle-2 {
    width: 150px;
    height: 130px;
    left: 50%;
  }
  .circle-3 {
    width: 100px;
    height: 100px;
  }
}

:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white-color: #ffffff;
  --black-color: #000000;
  --transition: all 0.3s ease;
}

.my-mis-vis-val {
  padding: 100px 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.my-mis-vis-val::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.my-mis-vis-val .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.my-mis-vis-val .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.my-mis-vis-val .mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.my-mis-vis-val .mv-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* .my-mis-vis-val .mv-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transition: var(--transition);
  } */

.my-mis-vis-val .mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.my-mis-vis-val .mv-card:hover::after {
  height: 10px;
}

.my-mis-vis-val .card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--white-color);
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(18, 115, 235, 0.3);
}

.my-mis-vis-val .card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.my-mis-vis-val .card-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.my-mis-vis-val .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-mis-vis-val .card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-color);
}

.my-mis-vis-val .card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 4px;
  opacity: 0.7;
}

/* Individual card accents */
.mv-card:nth-child(2) .card-icon,
.mv-card:nth-child(2) .card-list li::before {
  background: #4caf50;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.mv-card:nth-child(3) .card-icon,
.mv-card:nth-child(3) .card-list li::before {
  background: #ff9800;
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

/* Floating dots background */
.my-mis-vis-val .floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.my-mis-vis-val .dot {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .my-mis-vis-val {
    padding: 70px 0;
  }

  .my-mis-vis-val .section-title {
    font-size: 2.2rem;
  }

  .my-mis-vis-val .mv-card {
    padding: 30px;
  }
}

.contact-inn {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-inn .contact-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
}

.contact-inn .contact-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-inn .contact-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.contact-inn .contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.contact-inn .contact-card {
  flex: 1 1 300px;
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
}

.contact-inn .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-inn .contact-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-inn .contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.contact-inn .contact-card p {
  color: var(--gray-color);
}

.contact-inn .contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-inn .contact-card a:hover {
  text-decoration: underline;
}

.contact-inn .contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-inn .contact-form {
  flex: 1 1 calc(50% - 15px);
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-inn .contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-inn .form-group {
  margin-bottom: 20px;
}

.contact-inn .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.contact-inn .form-group input,
.contact-inn .form-group textarea,
.contact-inn .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-inn .form-group input:focus,
.contact-inn .form-group textarea:focus,
.contact-inn .form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 115, 235, 0.2);
}

.contact-inn .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-inn .submit-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.contact-inn .submit-btn:hover {
  background-color: #0d5cb6;
}

.contact-inn .contact-map {
  flex: 1 1 calc(50% - 15px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-inn .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-inn .contact-card {
    flex: 1 1 250px;
  }
}

@media (max-width: 768px) {
  .contact-inn .contact-header h1 {
    font-size: 2rem;
  }

  .contact-inn .contact-content {
    flex-direction: column;
  }

  .contact-inn .contact-form,
  .contact-inn .contact-map {
    flex: 1 1 100%;
  }

  .contact-inn .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .contact-inn .contact-header h1 {
    font-size: 1.8rem;
  }

  .contact-inn .contact-header p {
    font-size: 1rem;
  }

  .contact-inn .contact-card {
    flex: 1 1 100%;
  }

  .contact-inn .contact-form,
  .contact-inn .contact-map {
    padding: 20px;
  }

  .contact-inn .contact-map iframe {
    min-height: 300px;
  }
}

:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white-color: #ffffff;
  --black-color: #000000;
  --transition: all 0.3s ease;
}

.services-inn {
  width: 100%;
}

.services-inn__header {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white-color);
}

.services-inn__title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.services-inn__subtitle {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Service Sections with Different Backgrounds */
.services-inn__service-1 {
  background-color: #f0f8ff;
  /* padding: 80px 0; */
}

.services-inn__service-2 {
  background-color: #ffffffff;
  /* Lavender blush */
  /* padding: 80px 0; */
}

.services-inn__service-3 {
  background-color: #f0f8ff;
  padding: 80px 0;
}

.services-inn__service-4 {
  background-color: #ffffffff;
  /* Floral white */
  padding: 80px 0;
}

.services-inn__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-inn__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.services-inn__content {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 20px;
}

.services-inn__image {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 20px;
}

.services-inn__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-inn__service-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.services-inn__service-desc {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.services-inn__content ul {
  list-style: none;
  margin-top: 0px;
}

.services-inn__content li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.services-inn__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231273eb'%3E%3Cpath d='M12 3L1 9l11 6 9-4.91V17h2V9M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-inn__content,
  .services-inn__image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services-inn__image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .services-inn__header {
    padding: 40px 15px;
  }

  .services-inn__title {
    font-size: 2rem;
  }

  .services-inn__service-title {
    font-size: 1.5rem;
  }

  .services-inn__service-1,
  .services-inn__service-2,
  .services-inn__service-3,
  .services-inn__service-4 {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .services-inn__header {
    padding: 30px 15px;
  }

  .services-inn__title {
    font-size: 1.8rem;
  }

  .services-inn__subtitle {
    font-size: 1rem;
  }
}

.services-inn__container ul {
  padding-left: 0;
}

:root {
  --primary-color: #1273eb;
  --secondary-color: #1273eb;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white-color: #ffffff;
  --black-color: #000000;
  --transition: all 0.3s ease;
}

.loan-inn {
  width: 100%;
}

.loan-inn__header {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white-color);
}

.loan-inn__title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.loan-inn__subtitle {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Loan Sections with Different Backgrounds */
.loan-inn__loan-1 {
  background-color: #f0f8ff;
  /* padding: 80px 0; */
}

.loan-inn__loan-2 {
  background-color: #ffffffff;
  /* padding: 80px 0; */
}

.loan-inn__loan-3 {
  background-color: #f0f8ff;
  /* padding: 80px 0; */
}

.loan-inn__loan-4 {
  background-color: #ffffffff;
  padding: 80px 0;
}

.loan-inn__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.loan-inn__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.loan-inn__content {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 20px;
}

.loan-inn__image {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 20px;
}

.loan-inn__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.loan-inn__loan-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.loan-inn__loan-desc {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.loan-inn__content ul {
  list-style: none;
  margin-top: 0px;
}

.loan-inn__content li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.loan-inn__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("../images/rupee.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .loan-inn__content,
  .loan-inn__image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .loan-inn__image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .loan-inn__header {
    padding: 40px 15px;
  }

  .loan-inn__title {
    font-size: 2rem;
  }

  .loan-inn__loan-title {
    font-size: 1.5rem;
  }

  .loan-inn__loan-1,
  .loan-inn__loan-2,
  .loan-inn__loan-3,
  .loan-inn__loan-4 {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .loan-inn__header {
    padding: 30px 15px;
  }

  .loan-inn__title {
    font-size: 1.8rem;
  }

  .loan-inn__subtitle {
    font-size: 1rem;
  }
}

.loan-inn__container ul {
  padding-left: 0;
}

[id] {
  scroll-margin-top: 250px; /* Adjust this to the actual height of your navbar */
}

.what-we {
  display: flex;
  align-items: center;
}

.what-we-are img {
  height: 200px;
  /* width:140px; */
  object-fit: cover;
  border-radius: 10px;
}

.loan-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-blue-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-slider .slide-img {
  height: 350px;
  width: 100%;
  object-fit: contain !important;
}
