/* Theme */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

body {
    font-family: 'DM Sans', sans-serif;
}

.a-change {
    color: inherit;
    text-decoration: none;
}

.main-margin {
    margin-top: 5%;
}

.main-images {
    border-radius: 15px;
    width: 70%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.main-second-image {
    border-radius: 15px;
    width: 100%;
    border-radius: 10px;
}

.section-padding {
    padding-top: 10%;
    padding-bottom: 10%;
}

.main-button-title {
    background-color: #A6CE39;
    flex-wrap: wrap;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    color: #051B05;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

.main-title {
    margin-top: 5px;
    font-weight: bold;
    font-size: 48px;
}

.main-title-white {
    color: #FFF;
    margin-top: 5px;
    font-weight: bold;
    font-size: 48px;
}


/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: #b5d03d !important;
}

.main-button-title {
    background-color: #b5d03d;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}



.main-button-title:hover {
    background-color: #9fb834;
}

.pages-breadcums {
    font-size: 20px;
    color: #C6D936;
}

.pages-breadcums-span {
    font-size: 20px;
    color: #FFFF;
}

.second-main-title {
    font-weight: bold;
    font-size: 24px;
}

.main-p {
    font-size: 18px;
    color: #595B62;
}

.main-p2 {
    font-size: 18px;
    color: #595B62;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px 50px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #595B62;

}

.check {
    color: #595B62;
    font-size: 18px;
    margin-right: 10px;
}

.main-button {
     background-color: #21eb6b;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.main-button:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}


.main-button2 {
    background-color: #1A4137;
    color: #FFF;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 150px
}

.bg-color {
    background-color: #F8F5F2;
}

.image-card {
    position: relative;
    /* allows absolutely positioned child */
    border-radius: 8px;
    overflow: hidden;
}

.image-card img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-text {
    margin: 15px;
    position: absolute;
    bottom: 0;
    /* stick to bottom */
    left: 0;
    border-radius: 5px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    /* translucent white background */
    color: #222;
}

.overlay-text .tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
}

.overlay-text h5 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}


.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* nesw and blog*/
.news-area1-bg {
    background-image: url("../images/1290x360 News Blog.jpg");
    width: 100%;
    height: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
}

/* Unique carousel styles */
.custom-news-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.custom-news-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.custom-news-slide {
    flex: 0 0 33.333%;
    /* Show 3 cards on md+ */
    padding: 0 10px;
    /* Small gap between slides */
    box-sizing: border-box;
}

.custom-news-slide .card {
    height: 100%;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-news-slide .card:hover {
    transform: translateY(-5px);
}

/* Mobile: Show 1 card */
@media (max-width: 767.98px) {
    .custom-news-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }
}

/* Tablet: Show 2 cards */
@media (min-width: 768px) and (max-width: 991.98px) {
    .custom-news-slide {
        flex: 0 0 50%;
        padding: 0 10px;
    }
}

.custom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.custom-carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.custom-prev-btn {
    left: 10px;
}

.custom-next-btn {
    right: 10px;
}

.custom-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.custom-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-indicator.active {
    background: #28a745;
}

.footer {
    background-color: #006400;
    /* Dark green */
    color: white;
    padding: 40px 20px 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.email-signup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.email-input {
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background-color: white;
    color: #333;
    width: 100%;
}

.signup-btn {
    background-color: #FFD700;
    /* Yellow */
    color: #006400;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.signup-btn:hover {
    background-color: #FFA500;
}

.footer-services,
.footer-locations {
    flex: 1;
    min-width: 200px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-locations p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-locations .contact-email {
    font-weight: bold;
}

.footer-locations .phone {
    color: #FFD700;
    /* Yellow for phones */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 12px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #FFA500;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        min-width: auto;
    }

    .footer-services,
    .footer-locations {
        min-width: auto;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        position: static;
        margin: 10px auto;
    }
}


/* header */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;              /* Desktop default */
    min-height: 600px;          /* Prevent too small */
    max-height: 900px;          /* Prevent too tall */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .carousel-container {
        height: 75vh;
        min-height: 520px;
        max-height: 700px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .carousel-container {
        height: 65vh;
        min-height: 420px;
        max-height: 520px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .carousel-container {
        height: 60vh;
        min-height: 360px;
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}


.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical centering */
    padding: 40px;
    max-width: 650px;
}

.hero-green {
    color: #087e36; /* KBSL green */
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.slide-content h1 .line1 {
    display: block;
    margin-top: 50%;
}

/* Phone Section Styling */
.kr-phone-box {
    color: #000;
}

.kr-phone-icon {
    width: 45px;
    height: 45px;
    background-color: #2f9f5c;
    /* green-yellow color */
    border-radius: 50%;
    font-size: 18px;
    color: white;
}


.slide-content h1 .line2 {
    display: block;
}

.service-cards {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.service-card h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(21, 71, 52, 0.9);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(21, 71, 52, 1);
    transform: scale(1.05);
}

.nav-button:active {
    transform: scale(0.95);
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-menu-text-white a {
    color: white;
}

.nav-menu-text-black a {
    color: #0000;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}
.contact-area1-bg {
    background-image: url("../images/1290x360 Contact.jpg");
    width: 100%;
    height: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.phone-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #154734;
    font-size: 12px;
}





/* Services */
.bg-section1-services {
    background-image: url("../images/bg-services.png");
}

.service-video-img {
    border-radius: 10px;
}

.service-white-section-with-image {
    background-color: #FFFF;
    padding: 30px;
    border-radius: 10px;
}

.loan-section {
    background-color: #eee9e9;
    padding: 5%;
}

.loan-section-ul {
    list-style: none;
}

.font-bold {
    font-weight: bold;
}

.loan-section-li {
    background-color: #FFF;
    padding: 30px 30px;
    margin-top: 10px;
    display: flex;
    gap: 30px;
    border-radius: 6px;
}

/* ===== Testimonial Section ===== */
.kr-testimonial-section {
    background-color: #A6CE39;
    padding-top: 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.kr-testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

/* Image */
.kr-testimonial-image img {
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
}

/* Content */
.kr-testimonial-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

/* Navigation buttons (top right) */
.kr-testimonial-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.kr-testimonial-nav button {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kr-testimonial-nav button:hover {
    background: white;
    color: #a8cd3c;
}

/* Text */
.kr-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.kr-testimonial-divider {
    width: 60%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    margin: 20px 0;
}

.kr-testimonial-author h4 {
    font-weight: 700;
    margin: 0;
}

.kr-testimonial-author small {
    color: rgba(255, 255, 255, 0.8);
}

.kr-testimonial-rating {
    margin-top: 10px;
    color: orange;
    font-size: 1.2rem;
}

/* ===== Responsive ===== */

/* Tablet: reduce image and spacing */
@media (max-width: 992px) {
    .kr-testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .kr-testimonial-image img {
        width: 250px;
    }

    .kr-testimonial-content {
        max-width: 90%;
    }

    .kr-testimonial-nav {
        justify-content: center;
        margin-bottom: 15px;
    }

    .kr-testimonial-divider {
        width: 100%;
    }
}

/* Mobile: image goes below text */
@media (max-width: 768px) {
    .kr-testimonial-container {
        flex-direction: column-reverse;
        /* ✅ moves image below text */
        gap: 40px;
        text-align: center;
    }

    .kr-testimonial-image img {
        width: 200px;
    }

    .kr-testimonial-content {
        order: 1;
    }

    .kr-testimonial-nav {
        justify-content: center;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .kr-testimonial-section {
        padding-top: 40px;
    }

    .kr-testimonial-text {
        font-size: 1rem;
    }

    .kr-testimonial-image img {
        width: 180px;
    }

    .kr-testimonial-nav button {
        width: 30px;
        height: 30px;
    }
}




/* Branches */
.branches-area1-bg {
    background-image: url("../images/1290x360 Branch Network.jpg");
    width: 100%;
    height: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.contact-details {
    text-align: center;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-form {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    top: 12px;
    left: 0;
    color: #6b7280;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding: 10px 0 10px 25px;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0f3d31;
}

.btn {
    background-color: #0f3d31;
    color: white;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 2px;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #155949;
}



/* Vacanciess */
.vacancie-area1-bg {
    background-image: url("../images/1290x360 Careers.jpg");
    width: 100%;
    height: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
}
.vacancies-img {
    border-radius: 10px;
}

.hr-green {
    color: #C6D936;
}

.form-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px 40px;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}


.form-control:focus {
    border-color: #6cc04a;
    box-shadow: 0 0 0 0.1rem rgba(108, 192, 74, 0.25);
}

.upload-btn {
    background-color: #a6d64d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.upload-btn:hover {
    background-color: #8ec43b;
}

.submit-btn {
    background: transparent;
    border: 2px solid #0f5132;
    color: #0f5132;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #0f5132;
    color: #fff;
}

.required {
    color: red;
}

.text-center {
    text-align: center;
}


/* Blog */
/* Container */
.kr-blog-section {
    background: #fff;
}

/* Grid */
.kr-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Blog Card */
.kr-blog-card {
      background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* stronger but cleaner */
    transition: all 0.3s ease;
}



/* Image */
.kr-blog-img {
    width: 100%;
    height: 280px;
    object-fit: cover;

     image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Content */
.kr-blog-content {
    padding: 20px;
}

/* Meta */
.kr-blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Title */
.kr-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.main-pma {
    margin-top: -15px !important;
}

/* Read More */
.kr-readmore {
    font-size: 14px;
    text-decoration: none;
    color: #007b45;
    font-weight: 600;
}

.kr-readmore i {
    margin-left: 5px;
    transition: 0.3s;
}

.director-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.director-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.director-card {
    min-width: 260px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    padding: 10px;
    text-align: center;
}

.director-card img {
    width: 100%;
    border-radius: 12px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/* Responsive */
@media (max-width: 768px) {
    .kr-blog-title {
        font-size: 16px;
    }

    .kr-blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

.grey-bg {
    background-color: #F1F1F2;
    padding: 20px;
    border-radius: 5px;
}

/* Section title */
.form-title {
    font-weight: 700;
    color: #051B05;
    font-size: 20px;

    display: inline-block;
    padding-bottom: 5px;
}

/* Form container */
.contact-form {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Input fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    outline: none;
    box-shadow: 0 0 0 1px #e0e0e0;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 2px #0d3b2e;
    transform: scale(1.01);
}

/* Button */
.main-green-btn {
    background-color: #0d3b2e;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-green-btn:hover {
    background-color: #145a42;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }
}

/* Footer */
.footer-section {
    background-color: #033015;
    color: #fff;
    position: relative;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.btn-yellow {
    background-color: #dce775;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 16px;
    transition: 0.3s;
}

.btn-yellow:hover {
    background-color: #cddc39;
}

.newsletter-form input {
    border-radius: 30px;
    border: none;
    padding: 10px 15px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #dce775;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 18px;
    color: #000;
}


/* about us */
.about-bg {
    background-color: #A6CE39
}

.text-white {
    color: #ffff;
}

.director-card-img {
    border-radius: 20px;
    background-color: #fafafa;
    box-shadow: 0 4px 100% rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-about-icon {
    width: 50px;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.info-window-title {
    font-weight: bold;
    color: #007bff;
}

.branch-list li {
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.branch-list li:hover {
    background-color: #f8f9fa;
}

.branch-list li.active {
    background-color: #e3f2fd;
    color: #007bff;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}

.slide-left.animate {
    transform: translateX(0);
}

.bounce {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce.animate {
    transform: translateY(0) scale(1.05);
}
.end-btn{
    display: flex;
     justify-content: flex-end;
}

.icon-cl-white{
    color: #FFF !important;
}
.rounded-circle-white{
    border-color: #FFF !important;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        margin-bottom: 10px;
    }

    .back-to-top {
        bottom: 40px;
    }
}













@media (max-width: 1200px) {
    .navbar-logo {
        height: 45px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .service-cards {
        gap: 15px;
    }

    .service-card {
        padding: 15px 25px;
    }
}

/* ===== Tablet (max-width: 992px) ===== */
@media (max-width: 992px) {

    .kr-phone-box {
        display: none !important;
        /* hide phone box on tablet & mobile */
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .service-cards {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-card {
        width: 45%;
    }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }

    .slide-content h1 {
        font-size: 30px;
        text-align: center;
        padding: 0px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card h3 {
        font-size: 25px;
        text-align: center;
        margin-top: -25px;
    }

    .service-card p {
        text-align: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 15px;
    }

    .carousel-slide {
        height: 100% !important;
    }

    .main-images {
        width: 100%;
    }

    .main-title {
        font-size: 30px;
    }

    .main-button {
        padding: 10px 25px;
        font-size: 33px;
        margin-top: 10px;

        
    }

    .main-button-title {
        padding: 5px 20px;
    }

  .button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}


    .about-btn {
        align-self: flex-start;
    }

    .second-main-title {
        font-size: 18px;
        margin-top: 2px;
    }

    .main-title-white {
        font-size: 24px;
    }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
    .navbar-logo {
        height: 35px;
    }

    .slide-content h1 {
        font-size: 35px;
        text-align: center;
        padding: 0px;
    }

    .service-card {
        width: 90%;
        padding: 15px 20px;
    }

    .carousel-slide {
        height: 65vh;
    }
}

        .bg-section1-services {
            background-color: #f8f9fa;
            min-height: 100vh;
        }

        .section-padding {
            padding: 60px 0;
        }

        .loan-section-ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .loan-section-li {
            display: flex;
            align-items: center;
            padding: 20px;
            margin-bottom: 15px;
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .loan-section-li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .loan-section-li.active {
            background-color: #2f9f5c;
            color: white;
            transform: translateX(10px);
        }

        .loan-section-li.active .second-main-title {
            color: white;
        }

        .loan-section-li img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
        }





        .main-p {
            font-size: 1.1rem;
            color: #718096;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        

       .main-p2 {
            font-size: 1.1rem;
            color: #718096;
            line-height: 1.0;
            margin-bottom: 20px;
        }


        .service-white-section-with-image {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-top: 30px;
        }

        .service-video-img {
            border-radius: 10px;
            object-fit: cover;
            height: 100%;
        }

        .features {
            margin-top: 20px;
        }

        .feature {
            padding: 3px 0;
            color: #4a5568;
            font-size: 0.95rem;
        }

        .feature i {
            color: #667eea;
        }

        .content-section {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            animation: fadeIn 0.6s ease;
        }

        <!--   -->
        .cv-section {
    background: none;
    padding: 60px 20px;
    border: 2px solid #0c7c3b;
    border-radius: 20px;
}

.cv-box {
    background: #ffffff;
    border-radius: 28px;
    max-width: 1100px;
    margin: auto;
    padding: 50px;
    display: flex;
    gap: 50px;
}

.cv-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-left img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
}

.cv-right {
    flex: 2;
}

label {
    font-size: 13px;
    color: #374151;
    margin-bottom: 5px;
    display: block;
}

label span {
    color: red;
}

input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

input:focus {
    outline:none ;
    border-color: #0c7c3b;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% + 50% */
    gap: 20px;
    margin-bottom: 16px;
}

.form-col {
    width: 100%;
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* 100% on mobile */
    }
}


.upload-area {
    margin: 25px 0;
}

.upload-btn {
    background: #9ad233;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.upload-btn:hover {
    background: #7fb52a;
}

.submit-btn {
    display: block;
    margin-top: 10px;
    padding: 12px 50px;
    border: 2px solid #0c7c3b;
    background: transparent;
    color: #0c7c3b;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0c7c3b;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 900px) {
    .cv-box {
        flex-direction: column;
        padding: 30px;
    }

    .form-row {
        flex-direction: column;
    }
}

input {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;

    /* FIX: stronger border color */
    border: 1.5px solid #cbd5e1;

    /* FIX: solid background */
    background-color: #ffffff;

    color: #111827;
    transition: all 0.25s ease;

    /* subtle outer shadow for edge clarity */
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* placeholder */
input::placeholder {
    color: #9ca3af;
}

/* focus state */
input:focus {
    outline: none;

    /* strong top line visibility */
    border-color: #0c7c3b;

    box-shadow:
        0 0 0 3px rgba(12,124,59,0.15),
        0 2px 8px rgba(0,0,0,0.08);
}
/* vacancy descrption*/
.empowerment-section {
    padding: 80px 20px;
    background: #ffffff;
}

.empowerment-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.empowerment-content {
    flex: 1.2;
}

.empowerment-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.empowerment-content h2 span {
    color: #9ad233; /* green highlight */
}

.empowerment-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 18px;
}

.empowerment-image {
    flex: 1;
}

.empowerment-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .empowerment-container {
        flex-direction: column;
        gap: 40px;
    }

    .empowerment-content h2 {
        font-size: 30px;
    }
}


/* chenge */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two columns */
    gap: 20px 60px; /* row gap, column gap */
    max-width: 900px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: #e8f5ef; /* soft green background */
    color: #2a8f6a;           /* check color */
    font-size: 14px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr; /* single column on mobile */
    }
}
