
.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 850px;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 30, 60, 0.78) 50%, rgba(10, 30, 60, 0.2) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide-text {
    max-width: 750px;
    color: #fff;
}

.slide-tag {
    display: inline-block;
    background: rgba(125, 186, 33, 0.15);
    border: 1px solid rgba(125, 186, 33, 0.35);
    font-size: 15px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

















.slide-text h2 {
    font-size: 48px;
    font-weight: 650;
    line-height: 1.45;
    margin: 0 0 14px;
    color: white;
}

.slide-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 22px;
}

.badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 4px;
}

.btn-enquire {
    background: #fff;
    color: #0a2040;
    font-size: 20px;
    font-weight: 500;
    padding: 11px 26px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    margin-top: 50px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    font-size: 20px;
    padding: 11px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-decoration: none;
        margin-top: 50px;

}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.arrow-left {
    left: 16px;
}

.arrow-right {
    right: 16px;
}

.carousel-controls {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s;
}

.dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}





/* Modal Background */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    background: #ffffff;
    padding: 30px;
    width: 450px;          /* width increase */
    min-height: 420px;     /* height increase */
   
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: popup 0.4s ease;
}

/* Animation */
@keyframes popup {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Heading */
.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

.close:hover {
    color: red;
}

/* Form Inputs */
form input, 
form textarea {
    width: 100%;
    margin: 12px 0;
    padding: 12px;
    border-radius: 10px;      /* radius added */
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

/* Focus Effect */
form input:focus,
form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}
.modal-content {
    max-width: 400px;
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 25px;
    position: relative;
    text-align: center;
}

/* LOGO */
.form-logo img {
    width: 140px;
    margin-bottom: 10px;
}

/* INPUTS */
.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

/* BUTTON CENTER */
.btn-center {
    text-align: center;
    margin-top: 10px;
}

.btn-center a {
    display: inline-block;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}






.floating-icons a {
    position: relative;
    overflow: visible;
}

/* RIPPLE */
.floating-icons a::before,
.floating-icons a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.5;
    animation: ripple 2s infinite;
}

.floating-icons a::after {
    animation-delay: 1s;
}

/* ANIMATION */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* Section Styling */
.testimonial-4 {
    padding: 90px 0;
    background: linear-gradient(120deg, #eef2ff, #f8fbff);
}

/* Heading */
.main-title-3 h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title-3 h1 span {
    color: #ff5a3c;
}

/* Content Box */
.content-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Glow Border Effect */
.content-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #ff5a3c, #3a86ff, #06d6a0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Hover Effect */
.content-box:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Text */
.content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* Button */
.btn-4 {
    margin-top: 15px;
    padding: 12px 26px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff5a3c, #ff8c42);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* Button Hover */
.btn-4:hover {
    background: linear-gradient(45deg, #111, #333);
    transform: translateY(-2px);
}

/* Ripple Effect */
.btn-4::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-4:active::after {
    width: 200px;
    height: 200px;
}

/* Image */
.testimonial-4 img {
    border-radius: 20px;
    transition: 0.5s;
}

/* Image Hover Zoom */


/* Responsive */
@media (max-width: 768px) {
    .main-title-3 h1 {
        font-size: 26px;
    }

    .content-box {
        margin-bottom: 25px;
    }
}



/* ===== Footer Main ===== */
.main-footer-3 {
    background: #0f172a;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

/* Animated Lines Background */
.lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.05);
    animation: moveLine 6s linear infinite;
}

.lines .line:nth-child(1) { left: 10%; }
.lines .line:nth-child(2) { left: 25%; }
.lines .line:nth-child(3) { left: 40%; }
.lines .line:nth-child(4) { left: 55%; }
.lines .line:nth-child(5) { left: 70%; }
.lines .line:nth-child(6) { left: 85%; }

@keyframes moveLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Newsletter */
.subscribe-newsletter {
    background: linear-gradient(135deg, #7dba21, rgb(175 213 117));
    padding: 40px 0;
    border-radius: 0 0 40px 40px;
    color: #fff;
}

.subscribe-newsletter h3 {
    font-weight: 700;
}

/* Input */
.newsletter-form input {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 12px 15px;
}

/* Button */
.newsletter-form button {
    border-radius: 0 50px 50px 0;
    background: #111;
    color: #fff;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #000;
    transform: scale(1.05);
}

/* Footer Inner */
.footer-inner {
    padding: 70px 0 40px;
}

/* Logo */
.f-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Text */
.footer-item p {
    font-size: 15px;
    line-height: 1.8;
}

/* Headings */
.footer-item h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* Fancy Border */
.s-border {
    width: 40px;
    height: 2px;
    background: #ff5a3c;
    margin-bottom: 10px;
}

.m-border {
    width: 20px;
    height: 2px;
    background: #fff;
    margin-bottom: 20px;
}

/* Links */
.links li {
    margin-bottom: 10px;
}

.links a {
    color: #cbd5e1;
    transition: 0.3s;
}

.links a:hover {
    color: #ff5a3c;
    padding-left: 5px;
}

/* Contact */
.contact-info li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Gallery */
.footer-gallery ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

/* Sub Footer */
.sub-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
   
}

/* Social Icons */
.social-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-list .icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
}

/* Hover Glow */
.social-list .icon:hover {
    background: #ff5a3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,90,60,0.4);
}

/* Tooltip */
.tooltip {
    position: absolute;
    top: -35px;
    background: #ff5a3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
    font-size: 12px;
}

.icon:hover .tooltip {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 50px;
        margin-bottom: 10px;
    }
}



/* Section Background */
.counters-1 {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
}

/* Grid gap remove fix */
.counters-1 .row {
    gap: 20px;
}

/* Counter Box */
.counter-box-1 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Glow Border Effect */
.counter-box-1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, #ff5a3c, #3a86ff, #00d4ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Hover Effect */
.counter-box-1:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Icon */
.counter-box-1 .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff5a3c;
    transition: 0.4s;
}

/* Icon Hover */
.counter-box-1:hover .icon {
    transform: rotate(10deg) scale(1.2);
    color: #00d4ff;
}

/* Counter Number */
.counter-box-1 h1 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

/* Text */
.counter-box-1 p {
    font-size: 15px;
    color: #cbd5e1;
}

/* Remove Borders (old ones) */
.border-l, .border-r {
    border: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-box-1 {
        margin-bottom: 20px;
    }
}
.counters-1 .row {
    display: flex;
    flex-wrap: nowrap;   /* sab ek hi line me rahenge */
    gap: 20px;
}

.counters-1 .col-lg-3 {
    flex: 0 0 25%;       /* 4 cards = 25% each */
    max-width: 25%;
}
@media (max-width: 768px) {
    .counters-1 .row {
        flex-wrap: wrap;   /* mobile pe normal ho jaye */
    }

    .counters-1 .col-lg-3 {
        flex: 0 0 50%;     /* 2 cards per row */
        max-width: 50%;
    }
}
@media (max-width: 768px) {

    .counters-1 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;   /* center me laayega */
        gap: 15px;
    }

    .counters-1 .col-lg-3 {
        flex: 0 0 90%;   /* ek card full width ke paas */
        max-width: 90%;
    }

    .counter-box-1 {
        text-align: center;
    }
}



/* Card Box */
.single-info-2 {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hover Effect */
.single-info-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Top Gradient Line */
.single-info-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff5a3c, #ff8c42);
}

/* Number Badge */
.single-info-2 .number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
}

/* Icon */
.single-info-2 .icon {
    margin-bottom: 15px;
}

.icon-inner {
    width: 70px;
    height: 70px;
    margin: auto;
    background: rgba(255, 90, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.icon-inner i {
    font-size: 30px;
    color: #ff5a3c;
    transition: 0.4s;
}

/* Icon Hover */
.single-info-2:hover .icon-inner {
    background:rgb(125 186 33);
    transform: scale(1.1) rotate(8deg);
}

.single-info-2:hover .icon-inner i {
    color: #fff;
}

/* Title */
.single-info-2 h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.single-info-2 h2 a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.single-info-2 h2 a:hover {
    color: #ff5a3c;
}

/* Text */
.single-info-2 p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .single-info-2 {
        margin-bottom: 20px;
    }

    .icon-inner {
        width: 60px;
        height: 60px;
    }

    .icon-inner i {
        font-size: 24px;
    }

    .single-info-2 h2 {
        font-size: 18px;
    }
}

/* Force 2 cards in one row */
.counters-info-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Each card 50% width */
.counters-info-section .col-lg-6,
.counters-info-section .col-md-6,
.counters-info-section .col-sm-6 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}
@media (max-width: 768px) {

    .counters-info-section .row {
        justify-content: center;
    }

    .counters-info-section .col-lg-6,
    .counters-info-section .col-md-6,
    .counters-info-section .col-sm-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .counter-box-3 {
        padding: 15px;
    }

    .counter-box-3 p {
        font-size: 13px;
    }
}


@media (max-width: 768px) {

    .counters-info-section .row {
        justify-content: center;
    }

    .counters-info-section .col-lg-6,
    .counters-info-section .col-md-6,
    .counters-info-section .col-sm-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .counter-box-3 {
        padding: 15px;
    }

    .counter-box-3 p {
        font-size: 13px;
    }
}
/* Force 2 cards in one row */
.counters-info-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Each card 50% width */
.counters-info-section .col-lg-6,
.counters-info-section .col-md-6,
.counters-info-section .col-sm-6 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}
/* Row spacing */
.counters-info-section .row {
    gap: 15px;
}

/* Card */
.counter-box-3 {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover */
.counter-box-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ff5a3c;
}

/* Icon Circle */
.counter-box-3 .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #ff5a3c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
}

/* Icon Hover */
.counter-box-3:hover .icon {
    transform: scale(1.1);
    background: #111;
}

/* Text */
.counter-box-3 p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Equal Height Fix */
.counter-box-3 {
    height: 100%;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .counters-info-section .row {
        justify-content: center;
    }

    .col-lg-6,
    .col-md-6,
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .counter-box-3 {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 18px;
    }

    .counter-box-3 .icon {
        margin-bottom: 6px;
    }
}



/* about */
.about-main-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.about-main-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #b8860b;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-badge {
  display: inline-block;
  background: #fff8e6;
  color: #7a5c00;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid #b8860b44;
}
.about-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
 text-align: justify;
}
.chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f7f4ed;
  border: 1px solid #e0d8c0;
  color: #666;
}
.chip::before {
  content: '● ';
  color: #b8860b;
  font-size: 8px;
}
.btn-read-more {
  display: inline-block;
  background: #7dba21;
  color: #fff;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 550;
  text-decoration: none;
  width: fit-content;
  border-radius: 24px;
}
.btn-read-more:hover {
  background: #ea2228;
  color: white;
}


/* faq */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Left Image Side ── */
.img-side {
  position: relative;
  overflow: hidden;
}

.img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
}

.img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.badge-tag {
  display: inline-block;
  background: #1D9E75;
  color: #E1F5EE;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.badge-title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.badge-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.stats-row {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.stat {
  border-left: 2px solid #1D9E75;
  padding-left: 10px;
}

.stat-num {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Right FAQ Side ── */
.faq-side {

  padding: 3rem 2.5rem;

  border: none;
  display: flex;
  flex-direction: column;

}

.faq-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: #1D9E75;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-heading {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

/* ── Accordion ── */
.acc-item {
  border-bottom: 1px solid #e5e5e5;
}

.acc-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  font-weight: 500;
  color: #111111;
  text-align: left;
  transition: color 0.2s;
}

.acc-btn:hover {
  color: #1D9E75;
}

.acc-btn.open {
  color: #1D9E75;
}

.acc-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #888888;
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
  line-height: 1;
}

.acc-btn.open .acc-icon {
  transform: rotate(45deg);
  background: #1D9E75;
  border-color: #1D9E75;
  color: #ffffff;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.acc-inner {
  padding: 0 0 14px;
  font-size: 13px;
  color: #555555;
  line-height: 1.75;
}

/* ── Mobile Responsive ── */
@media (max-width: 680px) {
  .faq-section {
    grid-template-columns: 1fr;
  }

  .img-side {
    min-height: 260px;
  }

  .faq-side {
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 2rem 1.25rem;
  }
}
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

/* ───────── MAIN SECTION ───────── */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 500px; /* fixed height */
  border-radius: 18px;
  overflow: hidden;
 
}

/* ───────── LEFT IMAGE SIDE ───────── */
.img-side {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.img-overlay {
  position: absolute;
  inset: 0;
border-radius: 15px;
}

/* Badge Box */
.img-badge {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
  padding: 16px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Badge Content */
.badge-tag {
  display: inline-block;
  background: #1D9E75;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.badge-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.badge-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* Stats */
.stats-row {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.stat {
  border-left: 2px solid #1D9E75;
  padding-left: 10px;
}

.stat-num {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

/* ───────── RIGHT FAQ SIDE ───────── */
.faq-side {
  padding: 2.5rem;
}

/* Heading */
.faq-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #1D9E75;
  margin-bottom: 8px;
}

.faq-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: #111;
}

/* ───────── ACCORDION ───────── */
.acc-item {
  border-bottom: 1px solid #eee;
}

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 17px;
  font-weight: 500;
  color: #222;
  transition: 0.3s;
}

.acc-btn:hover {
  color: black;
}

/* Icon */
.acc-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

/* Active */
.acc-btn.open {
  color: black;
}

.acc-btn.open .acc-icon {
  background: #7dba21;
  color: #fff;
  transform: rotate(45deg);
}

/* Body */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-inner {
  padding-bottom: 14px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ───────── MOBILE ───────── */
@media (max-width: 768px) {
  .faq-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .img-side {
    height: 240px;
  }

  .faq-side {
    padding: 2rem 1.5rem;
    overflow: visible;
  }

  .faq-heading {
    font-size: 20px;
  }

  .acc-btn {
    font-size: 13px;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .faq-side {
    padding: 1.5rem 1rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 10px;
  }
}


/* latest Property */
/* SECTION */
.featured-properties {
  padding: 60px 0;
  background: #f8f9fb;
}

/* CARD */
.prop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  position: relative;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.prop-img-wrap {
  position: relative;
  overflow: hidden;
}

.prop-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.prop-card:hover .prop-img {
  transform: scale(1.08);
}

/* BADGES */
.prop-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.prop-badges span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
}

.badge-new { background: #28a745; }
.badge-rent { background: #007bff; }
.badge-sale { background: #ff5a5f; }
.badge-featured { background: #ffc107; color: #000; }

/* PRICE */
.prop-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
}

.prop-price small {
  font-size: 11px;
  opacity: 0.7;
}

/* ACTION BUTTONS */
.prop-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 8px;
}

.prop-btn {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.prop-btn:hover {
  background: #ff5a5f;
  color: #fff;
}

/* BODY */
.prop-body {
  padding: 18px;
}

.prop-type {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.prop-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.prop-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

/* SPECS */
.prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.prop-specs span {
  background: #f1f1f1;
  padding: 5px 10px;
  border-radius: 6px;
}

/* FOOTER */
.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.prop-agent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent-avatar {
  width: 32px;
  height: 32px;
  background: #ff5a5f;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEATURED CARD */
.prop-card-featured {
  border: 2px solid #ffc107;
}

.most-popular-badge {
  background: #ffc107;
  color: #000;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .prop-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .featured-properties {
    padding: 40px 0;
  }

  .prop-img {
    height: 180px;
  }

  .prop-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .prop-img {
    height: 160px;
  }

  .prop-body {
    padding: 14px;
  }

  .prop-specs {
    flex-direction: column;
    gap: 6px;
  }

  .prop-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* map */
.map-area {
    width: 100%;
    overflow: hidden;
}