/* =================================================
   CSS VARIABLES - UPDATED COLOR SCHEME
================================================= */
:root{
    --black: #000;
    --white: #fff;
    --light-green: #edfff3; /* Light blue background */
    --primary-green: #78c208; /* Primary blue for buttons/accents */
    --dark-blue: #0d47a1; /* Darker blue for hover */
    --text: #333;
    --light-bg: #f5f9ff; /* Updated to lighter blue tint */
}


/* =================================================
   GLOBAL
================================================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =================================================
   HEADER TOP - UPDATED COLORS
================================================= */
.header-top{
    background: var(--light-green);
    padding: 6px 0;
    font-size: 14px;
}

.header-top span{
    margin-right: 12px;
}

.header-social a{
    margin-left: 12px;
}

/* =================================================
   HEADER MAIN
================================================= */
.header-main{
    padding: 15px 0;
    border-bottom: 1px solid var(--light-green);
    background: var(--white);
}

.logo{
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-green);
}

.logo img{
    height: 45px;
    width: auto;
    display: block;
}

/* Desktop Menu */
.desktop-nav .nav{
    gap: 20px;
}

.desktop-nav .nav-link{
    color: var(--text);
    font-weight: 500;
}

.desktop-nav .nav-link:hover{
    color: var(--primary-green);
}

/* =================================================
   BUTTON STYLES
================================================= */
.btn-primary{
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 10px 25px;
    border-radius: 4px;
}

.btn-primary:hover{
    background-color: #5a9206;
    border-color: #5a9206;
}

.btn-outline-primary{
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 10px 25px;
    border-radius: 4px;
}

.btn-outline-primary:hover{
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

/* =================================================
   HERO SECTION - WITH HTML IMAGES
================================================= */
.hero-section{
    padding: 0;
    position: relative;
}

#heroSlider {
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(227,242,253,0.7) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.hero-section h1{
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.hero-section h2{
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 25px;
    color: var(--text);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 25px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 25px;
    height: 25px;
}

/* =================================================
   ABOUT SECTION - UPDATED COLORS
================================================= */
.about-section{
    padding: 80px 0;
    background: var(--white);
}

.about-section h1{
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.about-section h4{
    margin-bottom: 15px;
    color: var(--primary-green);
}

.about-section p{
    margin-bottom: 20px;
}

/* =================================================
   COUNTER SECTION - UPDATED COLORS
================================================= */
.counter-section{
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.counter-section i{
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.counter-section h3{
    font-size: 26px;
    margin-bottom: 4px;
    color: var(--dark-blue);
}


/* ===============================
   COUNTER STRIP
================================ */
.counter-section{
    position: relative;
    padding: 70px 0;
    background: linear-gradient(90deg, #f5f7ff, #eef1ff);
}

.counter-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #f4f3ff99;
}

.counter-section .container{
    position: relative;
    z-index: 2;
}

.counter-section i{
    font-size: 28px;
    margin-bottom: 8px;
}

.counter-section h3{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* ICON IN FRONT OF TEXT */
.counter-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}



/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section{
    padding:80px 0;
    background:#f9fafc;
}

/* Square cards */
.testimonial-card{
    background:#eef3ff;
    padding:30px;
    border-radius:0;
    min-height:260px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* User */
.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-size:16px;
}

.testimonial-user span{
    font-size:14px;
    color:#777;
}

/* ===============================
   CUSTOM CONTROLS (NO BOOTSTRAP CLASH)
================================ */
.testimonial-controls{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.testimonial-controls button{
    width:46px;
    height:46px;
    border-radius:50%;
    border:none;
    background:#e6e6e6;
    font-size:26px;
    line-height:1;
    cursor:pointer;
}

/* 🔥 KILL BOOTSTRAP CONTROL STYLES COMPLETELY */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{
    display:none !important;
}

/* Footer */
.singer-footer {
  background: linear-gradient(135deg, #5c88cd, #0959d7);
  color: #ffffff;
  padding: 80px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* MAIN LAYOUT */
.footer-container {
 
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* BRAND */
.footer-logo {
  width: 125px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social a {
    background-color: #ffffff;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2196f3;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #e1e1e1;
  border-color: #001f55;
}


/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-tour h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #001f55;
}

/* TOUR */
.footer-tour p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* NEWSLETTER */
.newsletter-title {
  margin-top: 25px;
}

.footer-newsletter {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #f0f0f0;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
  background: var(--primary-green);
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #5f9c04;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #ffffff;
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #ffffff;
}

/* =================================================
   ICON COLORS
================================================= */
.fa-solid{
    color: var(--primary-green);
}

.fa-facebook-f{ color:#1877F2; }
.fa-instagram{ color:#E4405F; }
.fa-linkedin-in{ color:#0A66C2; }
.fa-whatsapp{ color:#25D366; }

/* =================================================
   MOBILE MENU - UPDATED COLORS
================================================= */
.mobile-menu-toggle{
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span{
    width: 26px;
    height: 3px;
    background: var(--dark-blue);
}

/* Overlay */
/* =================================================
   MOBILE MENU OPEN ANIMATION (CSS ONLY)
================================================= */
.mobile-menu-overlay{
    position: fixed;
    inset: 0;
    background: var(--dark-blue);
    color: var(--white);
    z-index: 9999;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

/* active/open state */
.mobile-menu-overlay.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* inner links animation */
.mobile-menu-links{
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;

    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
}

/* animate links when menu opens */
.mobile-menu-overlay.active .mobile-menu-links{
    opacity: 1;
    transform: translateY(0);
}

/* link hover effect */
.mobile-menu-links a{
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-links a:hover{
    color: var(--light-green);
    transform: translateX(6px);
}




/* =================================================
   LOAN SERVICES SECTION
================================================= */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.service-header {
    margin-bottom: 60px;
}

.service-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.service-subheading {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Card Design */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(227, 242, 253, 0.8);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
    border-color: var(--primary-green);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(30, 136, 229, 0.1) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.card-content i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    border: 3px solid white;
    z-index: 2;
}

.card-content h3 {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 120px;
}

.card-content .btn {
    padding: 8px 25px;
    font-size: 14px;
    border-radius: 25px;
    background: var(--light-green);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    transition: all 0.3s ease;
    font-weight: 500;
}

.card-content .btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
}

/* Loan Type Cards */
.loan-type-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.08);
    border: 1px solid rgba(227, 242, 253, 0.8);
    transition: all 0.3s ease;
    height: 100%;
}

.loan-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.15);
    border-color: var(--primary-green);
}

.loan-type-card i {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 15px;
    background: var(--light-green);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
}

.loan-type-card h4 {
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.loan-type-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Loan Features Section */
.loan-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.loan-features h2 {
    color: var(--dark-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

.loan-features .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
}

.loan-features img {
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* View More Button */
.services-section .btn-outline-primary.btn-lg {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    border-width: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-section .btn-outline-primary.btn-lg:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.services-section .btn-outline-primary.btn-lg i {
    transition: transform 0.3s ease;
}

.services-section .btn-outline-primary.btn-lg:hover i {
    transform: translateX(5px);
}




/* BLOG SECTION */
.loan-blog-section{
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.blog-header .blog-tag{
    display: inline-block;
    font-size: 13px;
    padding: 6px 12px;
    background: #f1f4ff;
    margin-bottom: 10px;
}

.blog-header h2{
    font-size: 38px;
    margin-bottom: 40px;
}

/* FILTER TABS */
.blog-filters{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn{
    padding: 8px 18px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover{
    background: var(--primary-green);
    color: #fff;
    border-color: #4f8103;
}

/* BLOG CARD */
.blog-card{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.blog-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content{
    padding: 20px;
}

.blog-content h4{
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content p{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.blog-content a{
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
}

/* VIEW ALL */
.view-all-btn{
    display: inline-block;
    padding: 12px 26px;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}



/* about page */

/* ==============================
   PAGE HERO
================================ */
.page-hero{
    width: 100%;
}

.page-hero-inner{
    display: flex;
    min-height: 300px;
}

/* LEFT SIDE */
.page-hero-content{
    flex: 1;
    background: var(--dark-blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.page-hero-content h1{
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb{
    font-size: 14px;
}

.breadcrumb a{
    color: #fff;
    text-decoration: none;
}

.breadcrumb span{
    margin: 0 6px;
}

/* RIGHT IMAGE */
.page-hero-image{
    flex: 1;
}

.page-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}






/* CONTACT SECTION */
.contact-section{
    padding: 80px 0;
    background: #f9fafc;
}

/* LEFT BOX */
.contact-info-box{
    background: #0f4aa2;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-info-box h2{
    margin-bottom: 10px;
}

.contact-info-box p{
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.contact-info-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-info-list i{
    font-size: 25px;
    color: var(--primary-green);
}

/* RIGHT BOX */
.contact-form-box{
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-form-box h3{
    margin-bottom: 25px;
}

/* FORM */
.contact-form-box .form-control,
.contact-form-box .form-select{
    padding: 12px;
    font-size: 14px;
}

/* SUBMIT BUTTON */
.submit-btn{
    background: #0f4aa2;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
}

.submit-btn:hover{
    background: #0b3c8c;
}




/* MOBILE MENU HEADER */
.mobile-menu-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: #0c4296; /* dark top bar like image */
}

/* MOBILE LOGO IMAGE */
.mobile-logo img{
    height: 36px;   /* perfect for mobile */
    width: auto;
    display: block;
}

/* CLOSE ICON */
.mobile-menu-close{
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}




/* ===============================
   VISION & MISSION SECTION
================================ */
.vision-mission-section{
    padding: 80px 0;
    background: var(--light-green);
}

/* Header */
.vm-header{
    max-width: 700px;
    margin: 0 auto 50px;
}

.vm-tag{
    display: inline-block;
    padding: 6px 16px;
    background: var(--white);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.vm-header h2{
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.vm-header p{
    color: var(--text);
    font-size: 16px;
}

/* Cards */
.vm-wrapper{
    align-items: stretch;
}

.vm-card{
    background: var(--white);
    padding: 40px;
    height: 100%;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card h3{
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.vm-card p{
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

/* Hover effect */
.vm-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


/* Icon */
.vm-icon{
    width: 60px;
    height: 60px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.vm-icon i{
    font-size: 26px;
    color: var(--primary-green);
}




/* ===============================
   FOUNDER SECTION
================================ */
.founder-header{
    max-width: 700px;
    margin: 0 auto 50px;
}

.founder-header h2{
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.founder-header p{
    color: var(--text);
    font-size: 16px;
}

.founder-tag{
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.founder-section{
    padding: 80px 0;
    background: var(--light-bg);
}

/* Image */
.founder-image{
    position: relative;
    padding: 20px;
    background: var(--white);
}

.founder-image img{
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.founder-content{
    padding-left: 30px;
}

.founder-tag{
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.founder-content h2{
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.founder-name{
    font-size: 22px;
    color: var(--black);
    margin-bottom: 4px;
}

.founder-role{
    display: block;
    color: var(--primary-green);
    font-size: 15px;
    margin-bottom: 20px;
}

.founder-content p{
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 15px;
}





/* ===== Section ===== */

.dd-tabs-section{
  padding:90px 20px;
  background:var(--light-bg);
}

.dd-tabs-container{
  max-width:1150px;
  margin:auto;
}


/* ===== Buttons ===== */

.dd-tabs-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:55px;
  flex-wrap:wrap;
}

.dd-tab-btn{
  padding:14px 38px;
  border:none;
  background:var(--white);
  cursor:pointer;
  font-weight:600;
  border-radius:10px;
  transition:.35s;
  font-size:16px;
  color:var(--text);
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}

/* Active + Hover */

.dd-tab-btn.active{
  background:var(--primary-green);
  color:var(--white);
  box-shadow:0 8px 24px rgba(120,194,8,.35);
}

.dd-tab-btn:hover{
  background:var(--primary-green);
  color:var(--white);
}


/* ===== Content ===== */

.dd-tab-content{
  display:none;
  animation:ddFade .45s ease;
}

.dd-tab-content.active{
  display:block;
}

@keyframes ddFade{
  from{opacity:0; transform:translateY(15px);}
  to{opacity:1; transform:translateY(0);}
}


/* ===== Grid ===== */

.dd-tab-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
}

/* Image */

.dd-tab-image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.4s;
}

.dd-tab-image img:hover{
  transform:scale(1.03);
}


/* Text */

.dd-tab-text h1{
  margin-bottom:18px;
  color:var(--dark-blue);
}

.dd-tab-text h4{
  margin-bottom:15px;
  color:var(--primary-green);
}

.dd-tab-text p{
  font-size:17.5px;
  text-align: left;
  line-height:1.75;
  color:var(--text);
}





/* ================================
   Hiring Partners Section
================================ */
.partners-section {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

/* ================================
   Marquee Wrapper
================================ */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  margin: 22px 0;
  position: relative;
}

/* ================================
   Track (moving row)
================================ */
.partners-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}

.partners-marquee.right .partners-track {
  animation: marquee-right 30s linear infinite;
}

/* ================================
   Logo Style
================================ */
.partners-track img {
  height: 100px;              /* Bigger logos */
  object-fit: contain;
  filter: none;              /* Keep logos colorful */
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-track img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Pause animation on hover */
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/* ================================
   Animations
================================ */
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}





    /* ===============================
   Loan CTA Section
================================ */
.loan-cta-section {
  padding: 50px 20px; /* ⬅️ reduced section height */
  background: var(--light-bg);
}

.loan-cta-box {
  max-width: 1200px;
  margin: auto;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    #9be34b
  );
  border-radius: 20px;
  padding: 40px 50px; /* ⬅️ reduced card height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ===============================
   Content
================================ */
.loan-cta-content {
  max-width: 650px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.loan-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 10px;
}

.loan-cta-content h2 {
  font-size: 34px; /* ⬅️ slightly smaller */
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.loan-cta-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===============================
   Button (Right Side)
================================ */
.loan-cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.loan-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-green);
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.loan-cta-btn:hover {
  background-color: #72b120;
  color: var(--white);
}

/* ===============================
   Decorative Shape
================================ */
.loan-cta-shape {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;   /* ⬅️ smaller */
  height: 360px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  z-index: 1;
}




  /* ===============================
   Single Service Page
================================ */

.single-service-hero {
  background-color: var(--dark-blue);
  padding: 80px 0;
  color: var(--white);
}

.service-hero-content {
  max-width: 700px;
}

.service-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-hero-content p {
  font-size: 17px;
  opacity: 0.95;
}

/* ===============================
   Details Section
================================ */

.single-service-details {
  background: var(--light-bg);
  padding: 70px 0;
}

.service-wrapper {
  display: flex;
  gap: 40px;
}

/* LEFT CONTENT */
.service-content {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
}

.service-content h2,
.service-content h3 {
  color: var(--black);
  margin-bottom: 14px;
}

.service-content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.service-list li {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}

/* RIGHT SIDEBAR */
.service-sidebar {
  width: 340px;
}

.service-box {
  background: var(--primary-green);
  color: var(--white);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.service-box.light {
  background: var(--light-green);
  color: var(--black);
}

.service-box h3,
.service-box h4 {
  margin-bottom: 10px;
}

.service-box p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* Buttons */
.service-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-green);
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-btn:hover {
  background-color: #5c9506ff;
  color: var(--white);
}

.service-link {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

/* Service top image */
.service-image {
  width: 100%;
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}



  /* ===============================
   Blog Hero
================================ */
.blog-hero {
  background: var(--dark-blue);
  padding: 80px 0;
  color: var(--white);
}

.blog-hero-content {
  max-width: 800px;
}

.blog-category {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 12px;
}

.blog-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 15px;
  opacity: 0.9;
}

/* ===============================
   Blog Layout
================================ */
.single-blog-section {
  background: var(--light-bg);
  padding: 70px 0;
}

.blog-wrapper {
  display: flex;
  gap: 40px;
}

/* ===============================
   Blog Content
================================ */
.blog-content {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
}

.blog-image {
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-content h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--black);
}

.blog-content blockquote {
  background: var(--light-green);
  padding: 20px;
  border-left: 5px solid var(--primary-green);
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
}

/* ===============================
   Sidebar
================================ */
.blog-sidebar {
  width: 340px;
}

.blog-widget {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.blog-widget.highlight {
  background: var(--primary-green);
  color: var(--white);
}

.blog-widget h3,
.blog-widget h4 {
  margin-bottom: 10px;
}

.blog-widget p {
  font-size: 15px;
  margin-bottom: 18px;
}

/* Buttons */
.blog-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-green);
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-btn:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.blog-links {
  list-style: none;
  padding-left: 0;
}

.blog-links li {
  margin-bottom: 12px;
}

.blog-links a {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 500;
}