/* <!-- HEADER WRAPPER END --> */
body{
    font-family: "Poppins", sans-serif;
    padding-top: 0; /* remove extra space */
    margin: 0;
    background-color: #f9f9f9;
}

/* HEADER WRAPPER */


/* =========================
   TOP BAR
========================= */
.top-bar {
    background-color: #782b17;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar span {
    margin-right: 20px;
    display: inline-block;
    transition: 0.3s;
}



.top-bar i {
    color: #467e3d;
    margin-right: 6px;
}

.top-bar .top-right span {
    margin-right: 0;
}

/* Hover Effect */
.top-bar span:hover {
    color: #467e3d;
    cursor: pointer;
    transform: translateY(-1px);
}

/* =========================
   NAVBAR
========================= */
.navbar-custom {
    background-color: #fff;
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.logo-main {
    color: #782b17;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.logo-sub {
    color: #467e3d;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Nav Links */
.navbar-custom .nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
    position: relative;
}

/* Icons */
.navbar-custom .nav-link i {
    margin-right: 5px;
    color: #467e3d;
}

/* Hover Effect */
.navbar-custom .nav-link:hover {
    color: #782b17;
}

/* Underline Hover Animation */
.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #782b17;
    transition: 0.3s;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* Active */
.navbar-custom .nav-link.active {
    color: #782b17;
    font-weight: 600;
}

/* =========================
   STICKY SCROLL EFFECT
========================= */
.navbar-scrolled {
    background-color: #782b17 !important;
    padding: 10px 0;
}

/* Text white on scroll */
.navbar-scrolled .nav-link {
    color: #fff !important;
}

.navbar-scrolled .nav-link i {
    color: #fff !important;
}

.navbar-scrolled .logo-main,
.navbar-scrolled .logo-sub {
    color: #fff !important;
}

/* Remove underline color issue on scroll */
.navbar-scrolled .nav-link::after {
    background-color: #fff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px){

    .navbar-custom {
        padding: 10px 0;
    }

    .navbar-custom .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .top-bar {
        display: none;
    }

    .top-bar span {
        display: block;
        margin: 5px 0;
    }

    .logo-main {
    color: #782b17;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}
}

/* <!-- HEADER WRAPPER END --> */


/* HERO SECTION */
/* HERO */
.hero-section {
    min-height: 100vh;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1514733670139-4d87a1941d55?q=80&w=1178&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}



.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
    top: 0;
    left: 0;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}

/* HEADING */
.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-content h1 span {
    color: #467e3d;
}

.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    color: #ddd;
}

/* BUTTONS */
.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 50px;
}

.btn-main {
    background: #782b17;
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid #467e3d;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    
    font-size: 14px;
    font-weight: 500;
    
    border: 1px solid rgba(255,255,255,0.2);
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    
    transition: 0.3s;
}

/* Hover effect (premium feel) */
.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-stats h4 {
    margin: 0;
    color: white;
    font-weight: bold;
}

.hero-stats span {
    font-size: 14px;
    color: #ccc;
}

/* CARD */
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
}

.open-badge {
    background: #467e3d;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
}

/* 📱 MOBILE */
@media(max-width:992px){
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-card {
        margin-top: 30px;
    }
}

@media(max-width:768px){
    .hero-section {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 11px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        align-items: center;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media(max-width:576px){
    .hero-content h1 {
        font-size: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* HERO SECTION */


/* <!-- Services Section End --> */
.kd-services{
  background:#f9f9f9;
  font-family:'Poppins', sans-serif;
}

.kd-section-title{
  color:#782b17;
  font-weight:700;
}

.kd-section-subtitle{
  color:#555;
}

.kd-service-card{
  border:none;
  border-radius:12px;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  cursor:pointer;
}

.kd-service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.kd-icon{
  font-size:35px;
  color:#467e3d;
}

.kd-service-card h5{
  color:#782b17;
  font-weight:600;
  margin-bottom:10px;
}

.kd-service-card p{
  font-size:14px;
  color:#666;
}

/* <!-- Services Section End --> */


/* <!-- ----------hakim-section----------- --> */
/* Section */
.hakim-section {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

/* Image */
.hakim-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hakim-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.hakim-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Badge */
.badge-custom {
    background: rgba(70,126,61,0.1);
    color: #467e3d;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Title */
.hakim-title {
    font-size: 34px;
    font-weight: 700;
    color: #782b17;
    margin-top: 10px;
}

.hakim-title span {
    color: #467e3d;
}

/* Text */
.hakim-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* Info Boxes */
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h3 {
    color: #782b17;
    font-weight: 700;
}

.info-box p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Points */
.hakim-points {
    list-style: none;
    padding: 0;
}

.hakim-points li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.hakim-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #467e3d;
    font-weight: bold;
}

/* Button */
.btn-main {
    background: linear-gradient(45deg, #782b17, #467e3d);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-main:hover {
    opacity: 0.9;
    color: #fff;
}

/* Animation */
.hakim-content {
    opacity: 0;
    transform: translateY(40px);
}
/* <!-- ----------hakim-section----------- --> */

/* <!-- Why Choose Us Section --> */
.why-choose {
  background: #f8f9fa;
}

.section-title {
  color: #782b17;
  font-weight: 700;
}

.section-subtitle {
  color: #467e3d;
}

.why-box {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #467e3d;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
}

.why-box h5 {
  color: #782b17;
  font-weight: 600;
}

.why-box p {
  color: #555;
  font-size: 14px;
}
/* <!-- Why Choose Us Section --> */

/* <!-- Testimonials Section Start --> */
.testimonials-section {
  background: #f9f9f9;
}

.testimonial-title {
  color: #782b17;
  font-weight: 700;
}

.testimonial-subtitle {
  color: #467e3d;
  font-size: 16px;
}

.testimonial-card {
  max-width: 650px;
  margin: auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 15px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Dummy Avatar */
.testimonial-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #467e3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  border: 4px solid #e6f2e6;
}

.testimonial-avatar i {
  line-height: 1;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.testimonial-text {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-role {
  color: #888;
  font-size: 14px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #467e3d;
  border-radius: 50%;
  padding: 12px;
}
/* <!-- Testimonials Section Start --> */


/* <!-- Stats Section Start --> */
.stats-section {
  background: #f8f9fa;
}

.stat-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #782b17;
}

.stat-box p {
  font-size: 16px;
  color: #467e3d;
  margin-top: 10px;
  font-weight: 500;
}
/* <!-- Stats Section Start --> */



/* <!-- CTA Section Start --> */
/* CTA Section */
/* CTA Section */
.cta-kadri{
    background: #f9f9f9;
}

/* Inner Box */
.cta-box{
    background: linear-gradient(135deg, #782b17, #467e3d);
    padding: 50px 40px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Content */
.cta-content h2{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content h2 span{
    color: #ffd9c0;
}

.cta-content p{
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
}

/* Buttons Wrapper */
.cta-buttons{
    justify-content: flex-end;
}

.flex-center{
    justify-content: center;
}

/* Buttons */
.cta-btn{
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Call Button */
.call-btn{
    background: #fff;
    color: #782b17;
}

.call-btn:hover{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn{
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover{
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE IMPROVEMENTS ================= */

/* Tablet */
@media (max-width: 991px){
    .cta-box{
        padding: 40px 25px;
    }

    .cta-content{
        text-align: center;
    }

    .cta-content h2{
        font-size: 28px;
    }

    .cta-content p{
        margin: 0 auto;
        font-size: 15px;
    }

    .cta-buttons{
        justify-content: center !important;
        margin-top: 25px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .cta-box{
        padding: 30px 20px;
        border-radius: 12px;
    }

    .cta-content h2{
        font-size: 22px;
        line-height: 1.4;
    }

    .cta-content p{
        font-size: 14px;
        max-width: 100%;
    }

    .cta-btn{
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta-buttons{
        flex-direction: column;
        gap: 12px;
    }
}
/* <!-- CTA Section Start --> */


/* <!-- Location Section End --> */
.kkd-location-section {
  background-color: #f9f9f9;
}

.kkd-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #782b17;
}

.kkd-section-desc {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.kkd-contact-box p {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.kkd-btn {
  background-color: #467e3d;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.kkd-btn:hover {
  background-color: #782b17;
  color: #fff;
}

.kkd-map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* <!-- Location Section End --> */


/* Footer Styling */
.footer-kadri{
    background:#782b17;
    color:#fff;
    padding:60px 0 20px;
}

.footer-kadri h5{
    font-weight:600;
    margin-bottom:20px;
}

.footer-kadri p{
    font-size:14px;
    color:#ddd;
}

.footer-kadri a{
    color:#ddd;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
    transition:0.3s;
}

.footer-kadri a:hover{
    color:#467e3d;
    padding-left:5px;
}

.footer-social a{
    display:inline-block;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background:#467e3d;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#fff;
    color:#782b17;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
    font-size:14px;
    color:#ccc;
}

/* Footer Styling */

/* <!-- Footer Start --> */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:28px;
    line-height:55px;
    z-index:1000;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-float:hover{
    background:#1ebe5d;
    transform:scale(1.1);
}

/* <!-- Footer Start --> */