/*=========================
      Tablet
=========================*/

@media (max-width: 991px) {
  .container {
    width: 92%;
  }

  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/*=========================
      Mobile
=========================*/

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 15px;

    margin-bottom: 40px;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 25px;
  }

  .service-icon {
    width: 70px;

    height: 70px;
  }

  .service-icon img {
    width: 35px;

    height: 35px;
  }

  .service-icon i {
    font-size: 35px;
  }

  .btn {
    padding: 12px 25px;

    font-size: 15px;
  }
}

/*=========================
      Small Mobile
=========================*/

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .section-title {
    font-size: 26px;
  }

  body {
    font-size: 15px;
  }

  .card {
    padding: 20px;
  }
}

/*=========================================
        TOP BAR RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/*=========================================
        TABLET NAVBAR
=========================================*/

@media (max-width: 991px) {
  .nav-menu {
    gap: 20px;
  }

  .apply-btn {
    padding: 12px 22px;
  }

  .logo img {
    width: 150px;
  }
}

/*=========================================
        MOBILE
=========================================*/

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .apply-btn-1 {
    display: none;
  }

  .nav-menu {
    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #fff;

    flex-direction: column;

    align-items: flex-start;

    padding: 20px;

    display: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;

    width: 100%;

    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;

    opacity: 1;

    visibility: visible;

    display: none;

    width: 100%;

    box-shadow: none;

    padding-left: 15px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/*=========================================
        HERO RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;

    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 65vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;

    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;

    font-size: 16px;
  }

  .hero-content span {
    font-size: 15px;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;

    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 28px;

    font-size: 15px;
  }
}
/*=========================================
      LOAN SERVICES RESPONSIVE
=========================================*/

/* Large Tablet */

@media (max-width: 1200px) {
  .loan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .loan-services {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .loan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .loan-card {
    min-height: 320px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .loan-services {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .loan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .loan-card {
    padding: 30px 20px;
    min-height: auto;
  }

  .loan-icon {
    width: 75px;
    height: 75px;
  }

  .loan-icon i {
    font-size: 30px;
  }

  .loan-card h3 {
    font-size: 20px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .section-tag {
    font-size: 13px;
    padding: 7px 18px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .loan-card {
    padding: 25px 18px;
  }

  .loan-card p {
    font-size: 14px;
  }

  .loan-card a {
    font-size: 15px;
  }
}
/*=========================================
        ABOUT RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .about-wrapper {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 70px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 700px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about-content {
    text-align: center;
  }

  .about-tag {
    font-size: 13px;

    padding: 8px 18px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-bottom h3 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-bottom h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-image img {
    border-radius: 15px;
  }
}

/*=========================================
      WHY CHOOSE RESPONSIVE
=========================================

@media (max-width: 991px) {
  .choose-image img {
    height: 400px;
  }

  .choose-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .choose-content {
    text-align: center;
  }

  .choose-content h2 {
    font-size: 34px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .choose-image img {
    height: 300px;
  }

  .choose-content h2 {
    font-size: 28px;
  }

  .choose-card {
    padding: 25px;
  }

  .choose-card li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .choose-content h2 {
    font-size: 24px;
  }

  .choose-card {
    padding: 20px;
  }
}
*/
/*=========================================
  TABLET
=========================================

@media (max-width: 992px) {
  .choose-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .choose-image,
  .choose-content {
    width: 100%;
  }

  .choose-image img {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: block;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }
}

/*=========================================
  MOBILE
=========================================*

@media (max-width: 768px) {
  .why-choose {
    padding: 50px 15px;
  }

  .choose-wrapper {
    gap: 30px;
  }

  .choose-content {
    text-align: center;
  }

  .choose-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .section-tag {
    font-size: 14px;
  }

  .choose-card {
    padding: 20px;
    text-align: left;
  }

  .choose-card li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

/*=========================================
  SMALL MOBILE
=========================================*

@media (max-width: 480px) {
  .why-choose {
    padding: 40px 12px;
  }

  .choose-content h2 {
    font-size: 24px;
  }

  .choose-card {
    padding: 18px;
  }

  .choose-card li {
    font-size: 14px;
  }
}
  /*==============================
  Tablet & Mobile
==============================*/

@media (max-width: 992px) {
  .choose-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .choose-image {
    order: 1;
    width: 100%;
  }

  .choose-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
  }

  .choose-content {
    order: 2;
    width: 100%;
  }

  .choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*==============================
  Mobile
==============================*/

@media (max-width: 768px) {
  .why-choose {
    padding: 50px 15px;
  }

  .choose-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .choose-card {
    padding: 20px;
  }
}
/*=========================================
        HOW IT WORKS RESPONSIVE
=========================================*/

/* Laptop */

@media (max-width: 1200px) {
  .process-top {
    gap: 50px;
  }

  .process-left h2 {
    font-size: 40px;
  }

  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .process {
    padding: 70px 0;
  }

  .process-top {
    grid-template-columns: 1fr;

    gap: 30px;

    margin-bottom: 50px;
  }

  .process-left h2 {
    font-size: 36px;
  }

  .process-right p {
    font-size: 16px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .process {
    padding: 60px 0;
  }

  .process-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
  }

  .process-left h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .process-left,
  .process-right {
    width: 100%;
  }
  /*
  .process-left h2 {
    font-size: 30px;
  }

  .process-right {
    margin-top: -10px;
  }
*/
  .process-cards {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card h3 {
    font-size: 24px;
  }

  .process-card p {
    font-size: 15px;
  }

  .process-number {
    font-size: 58px;
  }
}

/*=========================================
  PROCESS SECTION - MOBILE
=========================================
@media (max-width: 768px) {
  .process {
    padding: 60px 0;
  }

  .process-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
  }

  .process-left,
  .process-right {
    width: 100%;
  }

  .process-left h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .process-right p {
    font-size: 15px;
    line-height: 1.8;
  }

  .process-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-card {
    padding: 30px 25px;
    text-align: center;
  }

  .process-number {
    margin: 0 auto 20px;
  }

  .process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .process-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .step-footer {
    justify-content: center;
    margin-top: 25px;
  }
}
  */
/* Small Mobile */

@media (max-width: 576px) {
  .process-left h2 {
    font-size: 26px;
  }

  .process-right p {
    font-size: 15px;
  }

  .process-card {
    border-radius: 16px;
  }

  .process-card h3 {
    font-size: 21px;
  }

  .process-card p {
    line-height: 1.7;
  }

  .step-footer {
    padding: 16px 20px;
  }

  .step-footer strong {
    font-size: 22px;
  }
}
/*=========================================
        TESTIMONIAL RESPONSIVE
=========================================*/
/*=========================================
        RESPONSIVE - 1200px
=========================================

@media (max-width: 1200px) {
  .testimonial-heading h2 {
    font-size: 52px;
  }

  .testimonial-box {
    padding: 100px 60px 60px;
  }

  #clientReview {
    font-size: 20px;
  }

  .arrow {
    width: 65px;
    height: 65px;
  }
}

/*=========================================
        RESPONSIVE - 992px
=========================================

@media (max-width: 992px) {
  .testimonial-heading h2 {
    font-size: 44px;
  }

  .testimonial-box {
    padding: 90px 50px 50px;
  }

  .profile-image {
    width: 160px;
    height: 160px;
  }

  #clientName {
    font-size: 32px;
  }

  #clientReview {
    font-size: 18px;
    line-height: 1.8;
  }

  .quote-left {
    left: -15px;
    top: -10px;

    font-size: 55px;
  }

  .quote-right {
    right: -10px;
    bottom: -20px;

    font-size: 55px;
  }

  .arrow {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/*=========================================
        RESPONSIVE - 768px
=========================================

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-heading h2 {
    font-size: 34px;
  }

  .testimonial-heading p {
    font-size: 16px;
  }

  .testimonial-box {
    padding: 80px 25px 40px;
  }

  .profile-image {
    width: 130px;
    height: 130px;
  }

  #clientName {
    font-size: 28px;
  }

  #clientRole {
    font-size: 14px;
  }

  .stars {
    font-size: 22px;
  }

  #clientReview {
    font-size: 16px;
    line-height: 1.9;
  }

  .quote-left,
  .quote-right {
    display: none;
  }

  .arrow {
    width: 55px;
    height: 55px;
    border-radius: 16px;
  }

  .arrow.left {
    left: 15px;
  }

  .arrow.right {
    right: 15px;
  }

  .thumbnail {
    width: 55px;
    height: 55px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }
}

/*=========================================
        RESPONSIVE - 576px
=========================================

@media (max-width: 576px) {
  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-box {
    padding: 60px 20px 35px;
  }

  .profile-image {
    width: 110px;
    height: 110px;
  }

  #clientName {
    font-size: 23px;
  }

  #clientRole {
    font-size: 13px;
    letter-spacing: 1px;
  }

  #clientReview {
    font-size: 15px;
    line-height: 1.8;
  }

  .arrow {
    position: relative;

    top: auto;

    transform: none;

    margin-top: 30px;
  }

  .arrow.left {
    left: auto;
  }

  .arrow.right {
    right: auto;
  }

  .testimonial-box {
    display: flex;
    flex-direction: column;
  }

  .thumbnail-wrapper {
    margin-top: 35px;
  }

  #thumbnailContainer {
    gap: 10px;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }
}
*/
/*=========================================
  TESTIMONIAL - MOBILE
=========================================*/
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-heading {
    text-align: center;
    margin-bottom: 35px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .testimonial-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .testimonial-box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .profile-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
  }

  .testimonial-content h3 {
    font-size: 22px;
    margin-top: 15px;
  }

  #clientRole {
    font-size: 15px;
  }

  .stars {
    margin: 12px 0;
    font-size: 18px;
  }

  #clientReview {
    font-size: 15px;
    line-height: 1.8;
    padding: 0;
  }

  .review-wrapper {
    margin: 25px 0;
  }

  .thumbnail-wrapper {
    margin-top: 25px;
  }

  #thumbnailContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  #thumbnailContainer img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }

  .dots {
    margin-top: 20px;
  }

  /* Arrow Buttons */
  .arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}

/*=========================================
  SMALL MOBILE
=========================================*/
@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-heading h2 {
    font-size: 24px;
  }

  .testimonial-box {
    padding: 25px 15px;
  }

  .profile-image img {
    width: 80px;
    height: 80px;
  }

  .testimonial-content h3 {
    font-size: 20px;
  }

  #clientRole {
    font-size: 14px;
  }

  #clientReview {
    font-size: 14px;
    line-height: 1.7;
  }

  .arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .arrow.left {
    left: 5px;
  }

  .arrow.right {
    right: 5px;
  }

  #thumbnailContainer img {
    width: 40px;
    height: 40px;
  }

  .dots {
    margin-top: 15px;
  }
}
/*=========================================
        992px
=========================================

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/*=========================================
        768px
=========================================

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about {
    text-align: center;
  }

  .footer-about img {
    margin: auto auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer h3 {
    margin-bottom: 20px;
  }

  .footer-policy {
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
  }
}

/*=========================================
        576px
=========================================

@media (max-width: 576px) {
  .footer {
    padding-top: 50px;
  }

  .footer-about img {
    width: 170px;
  }

  .footer h3 {
    font-size: 20px;
  }

  .footer-about p,
  .footer-links a,
  .footer-contact p {
    font-size: 15px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}
  */
/*=========================================
  MOBILE FOOTER
=========================================*/
/*=========================================
  MOBILE FOOTER
=========================================*/
@media (max-width: 768px) {
  .footer {
    padding: 45px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-contact p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-contact i {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-policy {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Blue line under section headings */
  .footer-links h3,
  .footer-contact h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }

  .footer-links h3::after,
  .footer-contact h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3b82f6;
    border-radius: 3px;
  }
}

/*=========================================
  SMALL MOBILE
=========================================*/
@media (max-width: 480px) {
  .footer {
    padding: 35px 0 20px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer h3 {
    font-size: 18px;
  }

  .footer-about p,
  .footer-links a,
  .footer-contact p,
  .footer-bottom p,
  .footer-policy a {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-policy {
    flex-direction: column;
    gap: 8px;
  }
}
/* Tablet */
@media (max-width: 1024px) {
  .scroll-top {
    width: 46px;
    height: 46px;
    right: 20px;
    bottom: 20px;
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .scroll-top {
    width: 42px;
    height: 42px;
    right: 15px;
    bottom: 15px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .footer-logo img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .footer-disclosure {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 0 20px;
    margin-top: 25px;
  }

  .disclosure-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .disclosure-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .footer-disclosure {
    gap: 25px;
    padding-top: 30px;
  }

  .disclosure-item h4 {
    font-size: 14px;
  }

  .disclosure-item p {
    font-size: 13px;
  }
}
