body {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* HEADER */
.ag-header {
    /* padding: 15px 0; */
    border-bottom: 1px solid #eee;
}

/* LOGO */
.ag-logo img {
    width: auto;
    max-width: 100%;
    max-height: 90px;
}

/* NAV LINKS */
.ag-nav .nav-link {
    color: #000;
    font-weight: 500;
    padding: 6px 25px;
}

.ag-nav .nav-link.active {
    color: #f5a623;
    font-weight: 600;
}

.ag-nav .nav-link:hover {
    color: #f5a623;
}

/* CONTACT BUTTON */
.ag-contact-btn {
    background: #fdb515;
    color: #fff;
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 600;
    border: none;
}

.ag-contact-btn:hover {
    background: #e6a200;
    color: #fff;
}

/* MOBILE TOGGLE */
.ag-toggle {
    font-size: 22px;
    border: none;
    background: transparent;
}

/* MOBILE MENU */
.ag-mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px;
    margin-top: 10px;
}

.ag-mobile-menu .nav-link {
    color: #000;
    padding: 10px 0;
}

.ag-mobile-menu .nav-link.active {
    color: #f5a623;
    font-weight: 600;
}

.ag-mobile-menu .ag-contact-btn {
    width: 50%;
}

@media (max-width: 576px) {

    .ag-header {
        padding: 12px 0;
    }

    .ag-logo img {
        max-height: 80px;
    }

    .ag-toggle {
        font-size: 24px;
    }

    .ag-mobile-menu {
        padding: 12px;
    }

    .ag-mobile-menu .nav-link {
        font-size: 15px;
    }

    .ag-mobile-menu .ag-contact-btn {
        padding: 10px;
        font-size: 14px;
        width: 40%;
    }
    
}

@media (min-width: 577px) and (max-width: 768px) {

    .ag-logo img {
        max-height: 70px;
    }

    .ag-toggle {
        font-size: 24px;
    }

    .ag-mobile-menu .nav-link {
        font-size: 16px;
    }

    .ag-contact-btn {
        padding: 10px 22px;
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .ag-logo img {
        max-height: 80px;
    }

    .ag-nav .nav-link {
        padding: 6px 18px;
        font-size: 15px;
    }

    .ag-contact-btn {
        padding: 9px 22px;
        font-size: 15px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .ag-logo img {
        max-height: 85px;
    }

    .ag-nav .nav-link {
        font-size: 16px;
        padding: 6px 22px;
    }
}


.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 90vh;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* LEFT DARK SHADOW */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0) 75%
    );
    z-index: 2;
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 13rem;
}

.hero-btns .btn-warning {
    background: #fdb515;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.hero-btns .btn-light {
    padding: 12px 30px;
    font-weight: 600;
}

.hero-scale {
    width: 100%;
    z-index: 3;
}

.hero-scale img {
    width: 100%;
}

/* FIX: ensure carousel takes full height */
#heroCarousel,
.carousel-inner {
    height: 100%;
}

/* FIX: prevent bottom scale image overlap */
.main-slider {
    position: relative;
}


/* =====================================================
   📌 HERO SLIDER – FULL RESPONSIVE BREAKPOINTS
===================================================== */

@media (max-width: 576px) {

    .hero-slider,
    .carousel-item {
        height: 70vh;
    }

    .hero-content {
        margin-top: 100px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 45%;
        font-size: 12px;
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.6) 60%,
            rgba(0,0,0,0.2) 100%
        );
    }

    .hero-scale img {
        height: 20px;
        object-fit: cover;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .hero-slider,
    .carousel-item {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-btns {
        gap: 12px;
    }

    .hero-scale img {
        height: 24px;
        object-fit: cover;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .hero-slider,
    .carousel-item {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* ================= ABOUT SECTION ================= */
.ag-about-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

/* LEFT IMAGES */
.ag-about-img-main {
    border-radius: 25px;
}

.ag-about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* .ag-about-img-small {
    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ag-about-img-small img {
    width: 100%;
    border-radius: 15px;
} */

/* DOTTED DECORATION */
/* .ag-dots {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(#bbb 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.6;
} */

/* RIGHT CONTENT */
.ag-about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.ag-about-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

/* BUTTON */
.ag-about-btn {
    background: #fdb515;
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 5px;
    margin-top: 10px;
}

.ag-about-btn:hover {
    background: #e6a200;
    color: #000;
}

@media (max-width: 576px) {

    .ag-about-section {
        padding: 30px 0;
    }

    .ag-about-img-main img {
        height: auto;
        border-radius: 15px;
    }

    .ag-about-content h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
    }

    .ag-about-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .ag-about-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .ag-about-section {
        padding: 40px 0;
    }

    .ag-about-img-main img {
        height: auto;
        border-radius: 20px;
    }

    .ag-about-content h2 {
        font-size: 30px;
    }

    .ag-about-content p {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .ag-about-img-main img {
        height: 450px;
    }

    .ag-about-content h2 {
        font-size: 34px;
    }

    .ag-about-content p {
        font-size: 14px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .ag-about-img-main img {
        height: 520px;
    }

    .ag-about-content h2 {
        font-size: 38px;
    }
}


/* SECTION */
.ag-services-section {
    padding: 40px  0;
    background: #fff;
}

/* TITLE */
.ag-services-title {
    font-size: 42px;
    font-weight: 700;
}

.ag-title-line {
    width: 220px;
    height: 4px;
    background: #fdb515;
    margin: 12px 0 18px;
}

.ag-services-subtitle {
    font-size: 15px;
    color: #777;
    max-width: 720px;
}

/* BUTTON */
.ag-appointment-btn {
    background: #fdb515;
    padding: 14px 34px;
    font-weight: 600;
    border-radius: 8px;
    color: #000;
}

.ag-appointment-btn:hover {
    background: #ffaf02;
}

/* IMAGE WRAPPER */
.ag-services-bg {
    display: block;
    position: relative;
    height: 350px;
    border-radius: 22px;
}

/* FULL WIDTH IMAGE */
.ag-services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK GRADIENT */
.ag-services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        270deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.5) 45%,
        rgba(0,0,0,0) 75%
    );
    z-index: 1;
}

/* CARD WRAPPER */
.ag-cards-wrapper {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 2;
}

/* CARD */
.ag-service-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    transform: translateY(15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: 270px;
}

/* Yellow bottom accent animation */
.ag-service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #fdb515;
    border-radius: 18px;
    transition: width 0.4s ease;
}

.ag-service-card:hover::after {
    width: 100%;
}

/* ICON */
.ag-icon-box {
    width: 80px;
    height: 80px;
    background: #fdb515;
    transition: all 0.4s ease;
    border-radius: 16px 16px 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon image color pop */
.ag-service-card:hover .ag-icon-box img {
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

/* ICON IMAGE */
.ag-icon-box img {
    width: 40px;
    height: 40px;
}

.ag-service-content {
    padding: 20px 24px 20px;
    transition: all 0.4s ease;
}

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

/* TEXT */
.ag-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Title color change */
.ag-service-card:hover h4 {
    color: #fdb515;
    transition: color 0.3s ease;
}

.ag-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 576px) {

    .ag-services-section {
        padding: 30px 0;
    }

    .ag-services-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .ag-title-line {
        width: 140px;
        height: 3px;
    }

    .ag-services-subtitle {
        font-size: 13px;
    }

    .ag-appointment-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
    }

    .ag-services-bg {
        height: auto;
        padding-bottom: 40px;
    }

    .ag-cards-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .ag-icon-box {
        width: 65px;
        height: 65px;
    }

    .ag-icon-box img {
        width: 32px;
        height: 32px;
    }

    .ag-service-card h4 {
        font-size: 18px;
    }

    .ag-service-card p {
        font-size: 13px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .ag-services-title {
        font-size: 30px;
    }

    .ag-title-line {
        width: 170px;
    }

    .ag-services-bg {
        height: auto;
        padding-bottom: 60px;
    }

    .ag-cards-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .ag-service-card h4 {
        font-size: 19px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .ag-services-title {
        font-size: 34px;
    }

    .ag-services-bg {
        height: 300px;
    }

    .ag-cards-wrapper {
        bottom: -60px;
    }

    .ag-service-card {
        min-height: 260px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .ag-services-title {
        font-size: 38px;
    }

    .ag-services-bg {
        height: 330px;
    }

    .ag-cards-wrapper {
        bottom: -70px;
    }
}


/* WHY CHOOSE SECTION */
.why-choose-section {
    padding-top: 100px;
}

/* TITLE */
.why-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* DIVIDER */
.why-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.why-divider span {
    width: 120px;
    height: 4px;
    border-radius: 10px;
    background: #f5b400;
}

.why-divider img {
    width: 34px;
    margin: 0 14px;
}

/* CARD */
.why-choose-cards {
    background-image: url("../image/bg\ full\ view.png"); 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 50px;

}

.why-card {
    position: relative;
    overflow: hidden;
    margin: auto;
    height: 200px;
    max-width: 350px;
    background: #fff;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

/* TOP BORDER (left → right → down) */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fdb515;
    transition: width 0.3s ease;
}

/* RIGHT BORDER (top → bottom) */
.why-card span.border-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 0%;
    background: #fdb515;
    transition: height 0.3s ease;
}

/* BOTTOM BORDER (right → left) */
.why-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background: #fdb515;
    transition: width 0.3s ease;
}

/* LEFT BORDER (bottom → top) */
.why-card span.border-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: #fdb515;
    transition: height 0.3s ease;
}

/* HOVER SEQUENCE */
.why-card:hover::before {
    width: 100%;
}

.why-card:hover span.border-right {
    height: 100%;
    transition-delay: 0.3s;
}

.why-card:hover::after {
    width: 100%;
    transition-delay: 0.6s;
}

.why-card:hover span.border-left {
    height: 100%;
    transition-delay: 0.9s;
}

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

/* ICON */
.why-card img {
    width: 40px;
}

/* CARD TITLE */
.why-card h5 {
    font-size: 18px;
    font-weight: 700;
}

/* TEXT */
.why-card p {
    font-size: 12px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 576px) {

    .why-choose-section {
        padding-top: 20px;
    }

    .why-title {
        font-size: 26px;
        letter-spacing: 0.5px;
    }

    .why-divider span {
        width: 60px;
        height: 3px;
    }

    .why-divider img {
        width: 26px;
    }

    .why-choose-cards {
        padding: 25px 15px;
    }

    .why-card {
        max-width: 100%;
        padding: 18px;
    }

    .why-card img {
        width: 34px;
    }

    .why-card h5 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 12px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .why-title {
        font-size: 30px;
    }

    .why-divider span {
        width: 90px;
    }

    .why-choose-cards {
        padding: 35px;
    }

    .why-card {
        max-width: 320px;
    }

    .why-card h5 {
        font-size: 17px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .why-title {
        font-size: 34px;
    }

    .why-choose-cards {
        padding: 45px;
    }

    .why-card {
        max-width: 330px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .why-title {
        font-size: 38px;
    }

    .why-choose-cards {
        padding: 50px;
    }

    .why-card {
        max-width: 350px;
    }
}


/* COUNTER SECTION */
.counter-section {
    position: relative;
}

.counter-numbers {
    padding: 30px 0;
    position: relative;
    z-index: 2;
    background-color: #fbbf24; /* same yellow */
}

/* NUMBER */
.counter-section h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

/* TEXT */
.counter-section p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

@media (max-width: 576px) {

    .counter-numbers {
        padding: 25px 0;
    }

    .counter-section h2 {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .counter-section p {
        font-size: 14px;
    }

    .hero-scale img {
        height: 18px;
        margin-top: -10px;
        object-fit: cover;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .counter-section h2 {
        font-size: 38px;
    }

    .counter-section p {
        font-size: 15px;
    }

    .hero-scale img {
        height: 20px;
        object-fit: cover;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .counter-section h2 {
        font-size: 46px;
    }

    .counter-section p {
        font-size: 16px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .counter-section h2 {
        font-size: 52px;
    }

    .counter-section p {
        font-size: 17px;
    }
}


/* FILTER BUTTONS */
.latestpro-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* DIVIDER */
.latestpro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.latestpro-divider span {
    width: 120px;
    height: 4px;
    border-radius: 10px;
    background: #f5b400;
}

.latestpro-divider img {
    width: 34px;
    margin: 0 14px;
    margin-bottom: 10px;
}

.latestpro-subtitle {
    margin: auto;
    font-size: 18px;
    color: #777;
    max-width: 1200px;
}

.filter-btn {
    background: #ddd;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.filter-btn.active {
    background: #fbbf24;
    color: #000;
}

.filter-btn:hover {
    background: #fbbf24;
    color: #000;
}

/* latestpro CARD */
.latestpro-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.latestpro-card img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* CARD */
.latestpro-card {
    height: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 15px solid #fbbf24;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    max-height: 225px;
}

/* IMAGE */
.latestpro-card img {
    width: 110%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s ease;
    padding-bottom: 30px;
}

/* TITLE */
.overlay-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    justify-content: start;
    margin-bottom: 15px;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s ease;
}

/* VIEW BUTTON */
.view-btn {
    background: #fbbf24;
    color: #000;
    align-items: center;
    padding: 12px 36px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.latestpro-card:hover .card-overlay {
    opacity: 1;
}

.latestpro-card:hover .overlay-title,
.latestpro-card:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 576px) {

    .latestpro-title {
        font-size: 26px;
        letter-spacing: 0.5px;
    }

    .latestpro-divider span {
        width: 60px;
        height: 3px;
    }

    .latestpro-divider img {
        width: 24px;
    }

    .latestpro-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .latestpro-section .filter-btn {
        padding: 10px 20px;
        margin: 6px;
        font-size: 13px;
    }

    .overlay-title {
        font-size: 16px;
        text-align: center;
    }

    .view-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .latestpro-title {
        font-size: 30px;
    }

    .latestpro-divider span {
        width: 90px;
    }

    .latestpro-subtitle {
        font-size: 15px;
        max-width: 95%;
    }

    .filter-btn {
        padding: 11px 26px;
        font-size: 14px;
    }

    .overlay-title {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .latestpro-title {
        font-size: 34px;
    }

    .latestpro-subtitle {
        font-size: 16px;
    }

    .overlay-title {
        font-size: 20px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .latestpro-title {
        font-size: 38px;
    }

    .latestpro-subtitle {
        font-size: 17px;
    }

    .overlay-title {
        font-size: 22px;
    }
}


.about-ag-section {
    padding: 40px 0;
    background: url("../image/Trusted Construction BG down.png") no-repeat right bottom;
    background-color: #F7F7F7;
    background-size: contain;
    position: relative;
}

/* LEFT CONTENT */
.about-ag-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-ag-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-ag-points h5 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.about-ag-points p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* RIGHT COLUMN */
.right-bg {
    display: flex;
    justify-content: center;
}

/* YELLOW CARD */
.dream-box {
    position: relative;
    max-width: 420px;
    background-color: #fdb515;
    border-radius: 22px;
    padding: 40px 30px 70px;
    border-right: 10px solid #FAD687;
    border-bottom: 10px solid #FAD687;
}

.dream-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
}

.dream-box p {
    font-size: 13px;
    line-height: 1.7;
}

/* LOGO BOX – EXACT LIKE SECOND IMAGE */
.logo-box {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    background-color: #F7F7F7;
    padding: 18px 35px;
    border-radius: 16px;
}

.logo-box img {
    max-width: 220px;
}

@media (max-width: 576px) {
    .about-ag-section {
        padding: 30px 0;
        background-position: center bottom;
        background-size: cover;
    }

    .about-ag-title {
        font-size: 26px;
    }

    .about-ag-desc {
        font-size: 14px;
    }

    .about-ag-points h5,
    .about-ag-points p {
        text-align: left;
    }

    .dream-box {
        padding: 30px 20px 60px;
        margin-top: 40px;
    }

    .dream-box h3 {
        font-size: 22px;
        text-align: center;
    }

    .dream-box p {
        font-size: 13px;
        text-align: center;
    }

    .logo-box {
        bottom: -35px;
        padding: 14px 25px;
    }

    .logo-box img {
        max-width: 170px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .about-ag-title {
        font-size: 30px;
    }

    .dream-box {
        margin-top: 40px;
    }

    .dream-box h3 {
        font-size: 24px;
    }

    .logo-box {
        bottom: -40px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .about-ag-title {
        font-size: 34px;
    }

    .dream-box {
        max-width: 380px;
    }

    .logo-box img {
        max-width: 190px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .about-ag-title {
        font-size: 38px;
    }
}



/* ================= PROJECT PAGE CSS ================= */
.page-hero {
    height: 420px;
    background: 
        linear-gradient(
            rgba(235, 192, 97, 0.88),
            rgba(239, 197, 108, 0.88)
        ),
        url("../image/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.page-title {
    font-size: 52px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.breadcrumb-text a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-text span {
    display: inline-block;
    color: white;
    margin: 0 8px;
}

.breadcrumb-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.breadcrumb-text .active {
    font-weight: 600;
}

@media (max-width: 576px) {

    .page-hero {
        height: 240px;
        padding: 0 15px;
    }

    .page-title {
        font-size: 28px;
    }

    .breadcrumb-text {
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .page-hero {
        height: 300px;
    }

    .page-title {
        font-size: 36px;
    }

    .breadcrumb-text {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .page-hero {
        height: 360px;
    }

    .page-title {
        font-size: 44px;
    }

    .breadcrumb-text {
        font-size: 17px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .page-hero {
        height: 400px;
    }

    .page-title {
        font-size: 48px;
    }
}


/* FILTER BUTTONS */
.project-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* DIVIDER */
.project-section {
    background-color: #ffffff;
}

.filter-btn {
    background: #ddd;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.filter-btn.active {
    background: #fbbf24;
    color: #000;
}

.filter-btn:hover {
    background: #fbbf24;
    color: #000;
}

/* PORTFOLIO CARD */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.project-card img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* CARD */
.project-card {
    max-width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 15px solid #fbbf24;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* FIX: smoother hover on touch devices */
@media (hover: none) {
    .card-overlay {
        opacity: 1;
    }

    .overlay-title,
    .view-btn {
        transform: translateY(0);
        opacity: 1;
    }
}

/* IMAGE */
.project-card img {
    width: 110%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s ease;
    padding-bottom: 30px;
}

/* TITLE */
.overlay-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    justify-content: start;
    margin-bottom: 15px;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s ease;
}

/* VIEW BUTTON */
.view-btn {
    background: #fbbf24;
    color: #000;
    align-items: center;
    padding: 12px 36px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.project-card:hover .card-overlay {
    opacity: 1;
}

.project-card:hover .overlay-title,
.project-card:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 576px) {

    .filter-btn {
        padding: 10px 22px;
        font-size: 14px;
        margin: 6px;
    }

    .project-card {
        border-radius: 16px;
    }

    .overlay-title {
        font-size: 16px;
        text-align: center;
    }

    .view-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .filter-btn {
        padding: 11px 28px;
        font-size: 15px;
    }

    .overlay-title {
        font-size: 18px;
    }

    .view-btn {
        padding: 11px 30px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .overlay-title {
        font-size: 20px;
    }

    .view-btn {
        padding: 12px 34px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .overlay-title {
        font-size: 22px;
    }
}



/* ================= PROJECT DETAILS PAGE CSS ================= */
.project-details {
    background-color: #ffffff;
    justify-content: center;
    width: 100%;
}

.project-details-title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* DIVIDER */
.project-details-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-details-divider span {
    width: 120px;
    height: 4px;
    border-radius: 10px;
    background: #f5b400;
}

.project-details-divider img {
    width: 34px;
    margin: 0 14px;
    margin-bottom: 10px;
}

.project-details-subtitle {
    margin: auto;
    font-size: 24px;
    color: #777;
    max-width: 1500px;
}

/* IMAGE */
.project-details .carousel-item img {
    height: 650px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 40px;
    align-items: center;
}

/* ARROWS */
.project-details .carousel-control-prev,
.project-details .carousel-control-next {
    width: auto;
    opacity: 1;
}

.project-details .carousel-control-icon {
    width: 55px;
    height: 55px;
    background: #f6d27a;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.project-details .carousel-control-prev {
    left: 30px;
}

.project-details .carousel-control-next {
    right: 30px;
}

/* REMOVE DEFAULT ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

@media (max-width: 576px) {

    .project-details-title {
        font-size: 28px;
        padding: 0 15px;
    }

    .project-details-divider span {
        width: 60px;
    }

    .project-details-divider img {
        width: 26px;
    }

    .project-details-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .project-details .carousel-item img {
        height: 600px;
        border-radius: 14px;
    }

    .project-details .carousel-control-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .project-details .carousel-control-prev {
        left: 10px;
    }

    .project-details .carousel-control-next {
        right: 10px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .project-details-title {
        font-size: 34px;
    }

    .project-details-subtitle {
        font-size: 16px;
        padding: 0 30px;
    }

    .project-details .carousel-item img {
        height: 420px;
        border-radius: 16px;
    }

    .project-details .carousel-control-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .project-details-title {
        font-size: 40px;
    }

    .project-details-subtitle {
        font-size: 18px;
        max-width: 1000px;
    }

    .project-details .carousel-item img {
        height: 520px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .project-details-title {
        font-size: 44px;
    }

    .project-details-subtitle {
        font-size: 20px;
        max-width: 1200px;
    }

    .project-details .carousel-item img {
        height: 620px;
    }
}


.quote-section {
    background: #fff;
}

.quote-wrapper {
    background: #FDBE2E;
    border-radius: 25px;
    padding: 30px;
}

.details-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
}

.logo-divider {
    border: none;
    height: 1px;
    background: #000000;
    margin-bottom: 30px;
}

.quote-logo .logo {
    max-width: 250px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    font-size: 14px;
}

.icon {
    width: 50px;
    height: 50px;
    background: #FDBE2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.icon i {
    font-size: 30px;
}

.info-item:hover .icon {
    transform: scale(1.1);
    background: #004D1A;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.download-btn {
    background: #004D1A;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
}

.download-btn:hover {
    background: #003814;
    color: #fff;
}

.form-card {
    background: #FFF2D6;
    border-radius: 20px;
    padding: 35px;
}

.form-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    background: #FFD985;
    border: none;
    border-radius: 12px;
    padding: 14px 15px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.submit-btn {
    background: #FDBE2E;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #f5ae12;
}

@media (max-width: 576px) {

    .quote-wrapper {
        padding: 20px;
        border-radius: 18px;
    }

    .details-card,
    .form-card {
        padding: 20px;
        border-radius: 18px;
    }

    .quote-logo .logo {
        max-width: 180px;
        margin: 0 auto;
        display: block;
    }

    .info-item {
        gap: 12px;
        margin-bottom: 18px;
    }

    .icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .icon i {
        font-size: 22px;
    }

    .info-item h6 {
        font-size: 14px;
    }

    .info-item p {
        font-size: 13px;
    }

    .form-card h4 {
        font-size: 20px;
        text-align: center;
    }

    .form-card p {
        font-size: 14px;
        text-align: center;
    }

    .form-control,
    .form-select {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .quote-wrapper {
        padding: 25px;
    }

    .details-card,
    .form-card {
        padding: 25px;
    }

    .quote-logo .logo {
        max-width: 200px;
    }

    .icon {
        width: 46px;
        height: 46px;
    }

    .icon i {
        font-size: 26px;
    }

    .form-card h4 {
        font-size: 22px;
    }

    .form-control,
    .form-select {
        padding: 13px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .quote-wrapper {
        padding: 28px;
    }

    .details-card,
    .form-card {
        padding: 30px;
    }

    .quote-logo .logo {
        max-width: 220px;
    }

    .form-card h4 {
        font-size: 24px;
    }

    .icon {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .quote-wrapper {
        padding: 30px;
    }

    .details-card,
    .form-card {
        padding: 32px;
    }

    .quote-logo .logo {
        max-width: 240px;
    }
}

/* ================= CONTACT US PAGE CSS ================= */
/* SECTION BACKGROUND */
.contact-section {
    background: #fff;
}

/* OUTER YELLOW BOX */
.contact-wrapper {
    background: #FFC12C;
    border-radius: 28px;
}

/* INNER CARDS */
.contact-card {
    background: #FFF1CF;
    border-radius: 20px;
    padding: 30px;
}

/* INPUT STYLES */
.custom-input {
    background: #FFD985;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
}

.custom-input:focus {
    box-shadow: none;
    outline: none;
}

/* CONTACT LINKS */
.contact-link {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #d89c00;
    text-decoration: underline;
}

/* BUTTON */
.submit-btn {
    background: #FFC12C;
    border-radius: 12px;
    font-weight: 600;
    padding: 14px;
    border: none;
}

.submit-btn:hover {
    background: #f2b500;
}

@media (max-width: 576px) {

    .contact-wrapper {
        padding: 18px !important;
        border-radius: 20px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 16px;
    }

    .contact-card h4 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .custom-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }

    .contact-card h6 {
        font-size: 15px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .contact-wrapper {
        padding: 22px;
        border-radius: 24px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card h4 {
        font-size: 22px;
    }

    .custom-input {
        padding: 13px 15px;
    }

    .submit-btn {
        padding: 13px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .contact-wrapper {
        padding: 28px;
    }

    .contact-card {
        padding: 26px;
    }

    .contact-card h4 {
        font-size: 24px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .contact-wrapper {
        padding: 32px;
    }

    .contact-card {
        padding: 30px;
    }
}


/* ================= ABOUT US PAGE CSS ================= */
.about-us{
    background: #ffffff;
}

.about-us .about-title{
    font-size: 45px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.about-us p{
    font-weight: 600;
    font-size: 17px;
    line-height: 1.8;
    color: #8a8a8a;
    margin-bottom: 22px;
    text-align: left;
}

.about-us p strong {
    font-size: 20px;
    color: #000;
}

@media (max-width: 576px) {

    .about-us {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-us .about-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .about-us p {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }

    .about-us p strong {
        font-size: 16px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .about-us .about-title {
        font-size: 30px;
        line-height: 1.35;
    }

    .about-us p {
        font-size: 15px;
        line-height: 1.75;
        text-align: justify;
    }

    .about-us p strong {
        font-size: 17px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .about-us .about-title {
        font-size: 36px;
    }

    .about-us p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-us p strong {
        font-size: 18px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .about-us .about-title {
        font-size: 42px;
    }

    .about-us p {
        font-size: 17px;
    }

    .about-us p strong {
        font-size: 19px;
    }
}


.about-info{
    background: #F7F7F7;
}

/* MAIN TITLE */
.about-info .about-main-title{
    font-size: 38px;
    font-weight: 700;
    color:#000;
    line-height:1.3;
}

/* SUB HEADINGS */
.about-info .about-sub-title{
    font-size: 18px;
    font-weight: 600;
    color:#000;
    margin-bottom: 10px;
}

/* PARAGRAPHS */
.about-info p{
    font-size:16px;
    line-height:1.8;
    color:#8a8a8a;
    max-width: 95%;
}

/* IMAGE STYLING */
.about-info .about-image img{
    max-width: 100%;
    height: auto;
}

@media (max-width: 576px) {

    .about-info {
        padding-bottom: 40px;
    }

    .about-info .about-main-title {
        font-size: 24px;
        line-height: 1.4;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-info .about-sub-title {
        font-size: 16px;
    }

    .about-info p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        text-align: justify;
    }

    .about-info .about-image img {
        max-width: 85%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .about-info .about-main-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .about-info .about-sub-title {
        font-size: 17px;
    }

    .about-info p {
        font-size: 15px;
        line-height: 1.75;
        max-width: 100%;
    }

    .about-info .about-image img {
        max-width: 90%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .about-info .about-main-title {
        font-size: 32px;
    }

    .about-info .about-sub-title {
        font-size: 18px;
    }

    .about-info p {
        font-size: 16px;
        max-width: 100%;
    }

    .about-info .about-image img {
        max-width: 95%;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .about-info .about-main-title {
        font-size: 36px;
    }

    .about-info p {
        font-size: 16px;
        max-width: 95%;
    }

    .about-info .about-image img {
        max-width: 100%;
    }
}

/* ================= WHY CHOOSE US PAGE CSS ================= */
.chooseus-section{
    background:#ffffff;
}

/* TITLE */
.chooseus-section .chooseus-title{
    font-size:38px;
    font-weight:700;
    color:#000;
    max-width:900px;
    margin:0 auto;
}

.chooseus-section .chooseus-subtitle{
    font-size:16px;
    color:#8a8a8a;
    max-width:900px;
    margin:0 auto;
    line-height:1.7;
}

/* CARD */
.chooseus-card{
    background:#fff;
    border:1.5px solid #bfbfbf;
    border-radius:14px;
    align-items:flex-start;
    transition:all 0.3s ease;
}

.chooseus-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transform:translateY(-4px);
}

/* ICON */
.chooseus-icon{
    width:70px;
    height:70px;
    background:#fdbb2d;
    border-radius: 14px 16px 16px 0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-right:20px;
    flex-shrink:0;
}

/* ICON IMAGE */
.chooseus-icon img{
    width:38px;
    height:38px;
    object-fit:contain;
}

/* CONTENT */
.chooseus-content {
    padding: 20px 24px 20px;
}

.chooseus-content h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
    color:#000;
}

.chooseus-content p{
    font-size:15px;
    color:#666;
    line-height:1.6;
}

@media (max-width: 576px) {

    .chooseus-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .chooseus-section .chooseus-title {
        font-size: 24px;
        line-height: 1.35;
        padding: 0 10px;
    }

    .chooseus-section .chooseus-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .chooseus-card {
        flex-direction: column;
    }

    .chooseus-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .chooseus-content h5 {
        font-size: 16px;
    }

    .chooseus-content p {
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .chooseus-section .chooseus-title {
        font-size: 28px;
    }

    .chooseus-section .chooseus-subtitle {
        font-size: 15px;
    }

    .chooseus-card {
        flex-direction: row;
    }

    .chooseus-content h5 {
        font-size: 17px;
    }

    .chooseus-content p {
        font-size: 14.5px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .chooseus-section .chooseus-title {
        font-size: 32px;
    }

    .chooseus-section .chooseus-subtitle {
        font-size: 15.5px;
    }

    .chooseus-card {
        padding: 5px;
    }

    .chooseus-content h5 {
        font-size: 17.5px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .chooseus-section .chooseus-title {
        font-size: 36px;
    }

    .chooseus-section .chooseus-subtitle {
        font-size: 16px;
    }
}

/* GO TO TOP BUTTON */
#goTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fdb515;
    color: #000;
    border: none;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

#goTopBtn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}


/* ================= FOOTER PAGE CSS ================= */
.ag-footer {
    background: #fdb515;
    color: #fff;
    position: relative;
}

/* TOP SCALE IMAGE */
.footer-scale img {
    width: 100%;
    transform: rotate(180deg);
    margin-bottom: 20px;
    display: block;
}

/* LOGOS */
.footer-logo {
    max-width: 250px;
}

.footer-right-logo {
    max-width: 230px;
    margin-left: -30px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* TITLES */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a,
.footer-text a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-text a:hover {
    color: #000;
    text-decoration: underline;
}

/* FOOTER CONTACT LINKS */
.footer-contact-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Better spacing on small devices */
@media (max-width: 576px) {
    .footer-contact-link {
        display: inline-block;
        margin-top: 3px;
    }
}


/* BOTTOM BAR */
.footer-bottom {
    background: #fdb515;
    padding: 15px 0;
    border-top: 3px solid rgb(255, 255, 255);
}

.footer-copy {
    color: #ffffff;
    font-size: 14px;
}

/* SOCIAL ICONS */
.footer-social a {
    color: #ffffff;
    font-size: 25px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #000;
    transform: translateY(-3px);
}


@media (max-width: 576px) {

    .footer-logo,
    .footer-right-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-title,
    .footer-subtitle,
    .footer-text {
        text-align: left;
    }

    .footer-links {
        text-align: left;
    }

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

    .footer-social {
        margin-top: 10px;
    }

    .footer-social a {
        margin: 0 10px;
        font-size: 22px;
    }

    .footer-copy {
        font-size: 13px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .footer-title {
        font-size: 18px;
    }

    .footer-subtitle {
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-right-logo {
        margin-top: 30px;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .footer-title {
        font-size: 19px;
    }

    .footer-right-logo {
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .footer-title {
        font-size: 20px;
    }

    .footer-text {
        font-size: 14px;
    }
}


.property-section {
    background: #FFC233;
    padding: 25px;
    border-radius: 25px;
}

.property-menu {
    background: #004D1A;
    padding: 12px;
    border-radius: 40px;
    display: flex;
    /* gap: 12px; */
    margin-bottom: 15px;
    font-size:14px;
}

.tab-btn {
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
}

.tab-btn.active {
    background: #FFC233;
    color: #000;
}

.property-content {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.property-info {
    background: #FFF4D8;
    padding: 20px;
    border-radius: 20px;
}

.info-item {
    background: #FFD97A;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.info-item strong {
    background: #004D1A;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
}


.add-features-list {
    margin: 0;
    list-style-type: none;
}

.add-features-list li {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075);
}
