@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #262a82;
  --title-color: #1A1A1A;
  --body-color: #878D97;
  --smoke-color: #EFF1F5;
  --secondary-color: #EEF2FB;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E0E0E0;
   --golden-color: #F9C606;
  --title-font: "Playfair Display", serif;
  --body-font: "Montserrat", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1220px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
}

.home-five,
.home-four {
  --theme-color: #0037ff;
  --smoke-color: #f6f7fc;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Small devices */
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}





.hero-section {
  background-color: #1f3f78;
  position: relative;
}

.hero-section .btn-warning {
  background-color: #d4a017;
  border-color: #d4a017;
}

.hero-section .btn-warning:hover {
  background-color: #c39415;
  border-color: #c39415;
}

/* Remove dots */
.hero-section .carousel-indicators {
  display: none !important;
}

/* Custom arrows positioned outside */
.carousel-control-prev.custom-prev,
.carousel-control-next.custom-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.carousel-control-prev.custom-prev:hover,
.carousel-control-next.custom-next:hover {
  background-color: #d4a017;
}

.carousel-control-prev.custom-prev {
  left: -60px; /* move outside left */
}

.carousel-control-next.custom-next {
  right: -60px; /* move outside right */
}

@media (max-width: 991px) {
  .carousel-control-prev.custom-prev,
  .carousel-control-next.custom-next {
    display: none; /* hide arrows on mobile */
  }
}






.card-header {
  border-bottom: none;
  font-size: 1rem;
}

.card {
  border-radius: 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  border-color: #1f3f78;
  color: #1f3f78;
}

.btn-outline-primary:hover {
  background-color: #1f3f78;
  color: #fff;
  border-color: #1f3f78;
}



/* Loan Categories Section */
.service-card {
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h5 a {
  color: #1f3f78;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card h5 a:hover {
  color: #d4a017; /* gold hover accent */
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}


/* Client Tools Section */
.client-tool-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.client-tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.client-tool-card:hover .icon-circle {
  background: linear-gradient(135deg, #1f3f78, #d4a017);
  transform: scale(1.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #1f3f78);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.client-tool-card p {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.client-tool-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Optional background wave for style */
.custom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("{{ asset('assets/img/shape/wave-light.svg') }}") repeat-x;
  background-size: contain;
  opacity: 0.08;
}




/* Blog & Video Section */
.blog-card .card-header {
  border-bottom: none;
  font-size: 1rem;
}

.blog-card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.btn-outline-primary {
  border-color: #1f3f78;
  color: #1f3f78;
}

.btn-outline-primary:hover {
  background-color: #1f3f78;
  color: #fff;
  border-color: #1f3f78;
}





/* Footer Styling */
.footer {
  color: #fff;
  font-size: 0.95rem;
  border-top: 4px solid #d4a017; /* Gold accent */
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #d4a017;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #d4a017 !important;
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .form-control {
  background-color: #fff;
  border: none;
  font-size: 0.9rem;
}

.footer .btn-warning {
  background-color: #d4a017;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #f1b71f;
}




.bg-gradient-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hover-shadow {
  transition: all 0.3s ease-in-out;
}
.hover-shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.transition {
  transition: all 0.3s ease;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}