:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}


.btn-learn-more {
    background-color: #fff;
    color: #3498db;
    border: 1px solid #3498db;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-learn-more:hover {
    background-color: #3498db;
    color: #fff;
  }
  
  .btn-primary {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-primay:hover {
    background: linear-gradient(90deg, #2980b9, #27ae60);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }


/*=================Nav Bar=================*/
.navbar-brand {
    font-weight: 700;
}


/*=================Hero Section=================*/
.hero-section {
    background: url('/img/22.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.hero-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary {
    background-color: white;
    color: #6366F1;
    border: none;
}

.hero-btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 0.5rem;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero-image-container {
        margin-top: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
/*=================End Hero Section=================*/

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.loan-calculator {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
}

.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0143a3 100%);
    color: white;
    padding: 80px 0;
}

.footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 30px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
}

.step-item {
    padding: 30px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}


.page-hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/img/22.jpg') no-repeat center center/cover;
      color: white;
      padding: 6rem 1rem;
      text-align: center;
    }
   
    .page-hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

    .faq-card {
      border: none;
      border-radius: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);      
    }


    .contact-hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/img/22.jpg') no-repeat center center/cover;
      color: white;
      padding: 6rem 1rem;
      text-align: center;
    }
    .contact-hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }
    .contact-hero-section h1 {
      font-weight: 700;
    }
    .contact-card {
      border: none;
      border-radius: 1rem;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      background: #fff;
    }
    .contact-info i {
      font-size: 1.8rem;
      color: #007bff;
    }
    .form-control {
      border-radius: 0.5rem;
      padding: 0.75rem 1rem;
    }
    .btn-custom {
      border-radius: 0.5rem;
      padding: 0.75rem 2rem;
    }
    iframe {
      border: 0;
      width: 100%;
      height: 350px;
      border-radius: 1rem;
    }


    .about-hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('/img/22.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    .icon-box {
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .about-section {
      padding: 80px 0;
    }
    .values-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    .value-box {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }
    .value-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }