* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #111;
    color: #fff;
}


/* ================= TOP BAR ================= */

.topbar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.info-item {
    opacity: 0.95;
}

.topbar-left {
    position: relative;
    padding-left: 18px;
    /* space for dot */
    display: flex;
}

p.orange-txt {
    margin-bottom: 0px;
    margin-left: 0px;
}

.topbar-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #a87b00;
}


/* Header */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 15px 40px;
}

.logo-icon1 {
    transform-origin: center;
    margin-top: 0px;
    width: 20vh;
}

.logo h1 {
    font-size: 22px;
}

.logo p {
    font-size: 12px;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    /* 🔥 controls space between links */
}

.nav a {
    margin: 0 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    color: #a87b00;
}

.dropdown {
    position: relative;
}


/* Dropdown content */

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    min-width: 200px;
    z-index: 999;
}


/* Dropdown links */

.dropdown-content a {
    color: #111;
    padding: 12px 15px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    /* /background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);/ */
    color: #ffc21c;
}


/* Show dropdown on hover */

.dropdown:hover .dropdown-content {
    display: block;
}

.quote-btn {
    background: #a87b00;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: bold;
}

.quote-menu {
    display: flex;
    align-items: center;
}


/* Orange block */

.quote-btn {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #000;
    border: none;
    padding: 18px 26px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}


/* Three line icon block */

.menu-icon {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
}


/* Lines */

.menu-icon span {
    width: 22px;
    height: 2px;
    background: #000;
    display: block;
}


/* Header Icons */

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Search */

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 30px 8px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


/* Cart */

.cart {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #a87b00;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}


/* Hero Section */

.about-hero {
    display: block;
    /* height: calc(131vh - 80px); */
}

img.abt-banner {
    display: block;
    height: 40vh;
    width: -webkit-fill-available;
}

.hero-banner {
    width: 100%;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.page-heading {
    padding: 150px 0 75px;
    position: relative;
}

.page-heading .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.page-heading .breadcrumb-list li {
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 20px;
}

.page-heading .breadcrumb-list li a {
    color: white;
    margin-left: -10px;
    position: relative;
}

.page-heading .breadcrumb-title {
    font-size: 66px;
    font-weight: 700;
    color: white;
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
}

.overlay1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}


/* ===== Progress ===== */

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.progress-header span {
    font-weight: 600;
    font-size: 18px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f1d7cc;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    border-radius: 6px;
}


/* ===== Feature List ===== */

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 40px;
    margin-top: 15px;
}

.feature-item {
    font-size: 18px;
    color: #666;
    position: relative;
    padding-left: 26px;
}


/* Orange check icon */

.feature-item::before {
    position: absolute;
    left: 0;
    top: 0;
    color: orangered;
    font-weight: bold;
}

.icon img {
    transition: transform 0.2s;
}

.icon:hover img {
    animation: shake 0.6s ease-in-out;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-4px);
    }
    40% {
        transform: translateX(4px);
    }
    60% {
        transform: translateX(-4px);
    }
    80% {
        transform: translateX(4px);
    }
    100% {
        transform: translateX(0);
    }
}


/* Subscribe Now */

button.btn.btn-orange.w-100 {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #000;
    font-weight: 600;
    border: none;
    font-size: smaller;
}

button.btn.btn-orange.w-100:hover {
    background: #c9a84a;
    color: #000;
}

.btn-orange .arrow {
    margin-left: 10px;
    font-size: 18px;
}


/* ===== SECTION LAYOUT ===== */

.impact-section {
    display: block;
    min-height: 420px;
}


/* ===== LEFT RIBBON ===== */

.impact-left {
    width: 260px;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #000;
    text-align: center;
    padding: 60px 25px;
    position: relative;
}

.impact-left::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 130px solid transparent;
    border-right: 130px solid transparent;
    border-top: 40px solid #f4511e;
}

.impact-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.impact-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.impact-text {
    font-weight: 600;
    line-height: 1.6;
}


/* ===== RIGHT SIDE ===== */

.impact-right {
    flex: 1;
    background: linear-gradient(90deg, #15181d, #1b1f26);
    color: #fff;
    padding: 80px 90px;
    position: relative;
}

.impact-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ddd;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-sub .dot {
    width: 8px;
    height: 8px;
    background: #d6a10d;
    display: inline-block;
}


/* ===== TITLE ===== */

.impact-right h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #e9e9e9;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .impact-section {
        flex-direction: column;
        margin-top: -20vh;
    }
    .impact-left {
        width: 100%;
    }
    .impact-left::after {
        display: none;
    }
    .impact-right {
        padding: 50px 30px;
    }
    .impact-right h1 {
        font-size: 32px;
    }
}


/* ===== HERO BACKGROUND ===== */

.about-hero {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.hero-bg {
    position: relative;
    inset: 0;
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/home-3/feature-bg.jpg") center/cover no-repeat;
    height: 80vh;
}


/* ===== DARK OVERLAY BOX ===== */

.about-overlay-box {
    position: absolute;
    bottom: 0px;
    left: 20%;
    right: 0;
    background: #12161c;
    color: #fff;
    padding: 10px 15px;
}


/* ===== GRID ===== */

.overlay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.overlay-left p,
.overlay-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6e6;
}

.content {
    color: white;
}

.impact-icon-item-style-3 .icon {
    width: 108px;
    height: 108px;
    text-align: center;
    border-radius: 100px;
    line-height: 108px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto;
}

.impact-icon-item-style-3 {
    text-align: center;
}


/* ===== CHECK LIST ===== */

.check-list {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    font-weight: 600;
}

.check-list div {
    position: relative;
    padding-left: 26px;
}


/* RECENT PROJECTS SECTION */

.recent-projects-section {
    padding: 80px 0;
    background: #ffffff;
}


/* TITLE */

.recent-title {
    font-size: 88px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1e1e1e;
    text-transform: uppercase;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .recent-title {
        font-size: 36px;
    }
}

body {
    font-family: "Segoe UI", sans-serif;
}


/* SECTION */

.project-slider-section {
    position: relative;
    padding-bottom: 120px;
}


/* SLIDER IMAGE */

.carousel-inner img {
    height: 520px;
    object-fit: cover;
}


/* CARD */

.project-info-card {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 28px 32px;
    width: 360px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    margin-bottom: -40px;
}

.project-info-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 6px;
    margin-right: 109px;
}


/* ORANGE ARROW */

.project-arrow {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.project-arrow:hover {
    background: #c9a84a;
}

.project-arrow .arrow {
    transition: transform 0.3s ease;
}

.project-arrow:hover .arrow {
    transform: translate(3px, -3px);
}


/* ===== Section ===== */

.stats-section {
    padding: 80px 60px;
    background: #efefef;
}


/* ===== Top Area ===== */

.top-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.text-block {
    max-width: 720px;
    position: relative;
    margin-left: 30vh;
    margin-top: 28vh;
}

.text-block p {
    color: #666;
    font-size: 20px;
    line-height: 1.8;
}


/* Orange dot */


/* .dot {
  width: 14px;
  height: 14px;
  background: #ff5a1f;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -30px;
} */


/* ===== Circle Badge ===== */

.circle-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin-top: 20vh;
    margin-right: 30vh;
}


/* Circular text */

.circle-text {
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

.circle-text text {
    font-size: 14px;
    letter-spacing: 2px;
    fill: #333;
}


/* Center arrow circle */

.center-arrow {
    width: 44px;
    height: 44px;
    background: #c9a84a;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}


/* rotation animation */

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ===== Stats Row ===== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat {
    width: 27%;
    font-size: xxx-large;
}

.stat h2 {
    font-size: 77px;
    margin: 0;
    font-weight: 500;
    color: #222;
}

.stat-hr {
    border: none;
    /* height: 1px; */
    background: #9a9a9a;
    margin: 18px 0 14px;
    width: 65vh;
    height: 1vh;
}

.stat p {
    margin-top: 18px;
    color: #777;
    font-size: 20px;
}


/* divider line */

.line {
    height: 1px;
    background: #cfcfcf;
    margin-top: 20px;
    width: 100%;
}


/* ===== Responsive ===== */

@media (max-width: 900px) {
    .top-area {
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .stat h2 {
        font-size: 72px;
    }
    @keyframes craneEnter {
        from {
            transform: translateY(-50%) translateY(-60px);
            opacity: 0;
        }
        to {
            transform: translateY(-50%) translateY(0);
            opacity: 1;
        }
    }
    @keyframes craneFloat {
        0% {
            transform: translateY(-50%) translateY(0);
        }
        50% {
            transform: translateY(-50%) translateY(-12px);
        }
        100% {
            transform: translateY(-50%) translateY(0);
        }
    }
}


/* Section background */

.testimonial-hero {
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/home-6/testimonial-bg.jpg") center/cover no-repeat !important;
    position: relative !important;
    padding: 120px 80px !important;
    color: #fff !important;
}


/* dark overlay */

.testimonial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 35, 0.75);
}

.testimonial-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}


/* LEFT CARD */

.testimonial-card {
    background: #fff;
    color: #222;
    padding: 50px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.google-logo {
    height: 40px;
    width: auto;
    display: block;
}

.stars {
    color: #ff5a1f;
    letter-spacing: 4px;
    font-size: 20px;
}

.review-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 36px;
}


/* user row */

.user-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-row img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.user-row span {
    display: block;
    font-size: 14px;
    color: #777;
}


/* quote icon circle */

.quote-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 64px;
    height: 64px;
    /* background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon img {
    width: 66px;
    height: 66px;
    /* filter: brightness(0) invert(1); makes svg white */
}


/* RIGHT CONTENT */

.testimonial-content small {
    color: #c9a84a;
    letter-spacing: 1px;
    font-weight: 600;
}

.testimonial-content h2 {
    font-size: 64px;
    margin: 16px 0;
    line-height: 1.1;
}

.testimonial-content p {
    max-width: 520px;
    color: #d0d4e0;
    line-height: 1.7;
}


/* Responsive */

@media (max-width: 1000px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }
    .testimonial-content h2 {
        font-size: 40px;
    }
}

.bg-1 {
    position: absolute;
    left: 10px;
    right: 0;
    bottom: -8px;
    width: 100%;
    height: 8px;
    background: #956653;
    width: calc(100% - 20px);
}

.bg-2 {
    position: absolute;
    left: 20px;
    right: 0;
    bottom: -15px;
    width: 100%;
    height: 8px;
    background: #c9a84a;
    width: calc(100% - 40px);
}


/* review area */

.reviwe-area {
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgb(71 7 7 / 6%);
    padding: 11vh 76vh;
    border-radius: 12px;
    backdrop-filter: opacity(0.5);
    margin-left: 5vh;
}


/* images */

.reviwe-1 img,
.reviwe-2 img {
    height: 64px;
    width: auto;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease;
}

.reviwe-1 img:hover,
.reviwe-2 img:hover {
    transform: scale(1.05);
}

.blog-intro-one {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
    max-width: 750px;
    margin: 80px auto;
}


/* Label */

.blog-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: #f15a24;
    border-radius: 50%;
}


/* Title */

.blog-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 21px;
    color: #111;
    margin-right: -41px;
}


/* Description */

.blog-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* SECTION */

.blog-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}


/* CARD */

.blog-card {
    background: #f6efe6;
    width: 380px;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* META ROWS */

.post-meta,
.poster-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.label {
    font-weight: 600;
}


/* CATEGORY */

.category {
    color: #f15a24;
    font-weight: bold;
    margin: 14px 0 8px;
}


/* DATE + COMMENTS */

.date-comments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}


/* .dot {
  width: 4px;
  height: 4px;
  background: #aaa;
  border-radius: 50%;
} */


/* TITLE */

.post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}


/* DESCRIPTION */

.post-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.section-padding {
    padding: 120px 0;
}

.fix {
    overflow: hidden;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

.section-title .sub-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    font-family: "Barlow", sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.news-section-7 .section-title p {
    max-width: 808px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 18px;
}

.news-card-item-style-7 {
    margin-top: 30px;
}

.news-card-item-style-7 .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-item-style-7 .news-image .hover-img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-card-item-style-7 .news-image .user-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    box-shadow: 8px 6px 51.3px 18px rgba(10, 3, 46, 0.03);
    padding: 10px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    z-index: 9999;
}

.news-card-item-style-7 .news-image .user-box .user-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-card-item-style-7 .news-image .user-box .user-item .user-image img {
    width: initial;
    height: initial;
}

.news-card-item-style-7 .news-image .user-box .user-item .content span {
    color: rgba(102, 102, 102, 0.74);
}

.news-card-item-style-7 .news-image .user-box .arrow-icon {
    color: white;
    background-color: #c9a84a;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.news-card-item-style-7 .news-image .user-box .arrow-icon i {
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}


/* 
.content {
  color: #69605c;
} */

.news-card-item-style-7 .news-content {
    background: white;
    box-shadow: 8px 6px 51.3px 95px rgba(10, 3, 46, 0.03);
    padding: 50px 35px 35px;
    margin-top: -20px;
    position: relative;
    z-index: 999;
    border-bottom: 2px solid #a87b00;
}

.news-card-item-style-7 .news-content span {
    color: #b28b1e;
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 40px;
    width: 316px;
}

.news-card-item-style-7 .news-content .news-list {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 10px;
    margin-left: -30px;
}

.news-card-item-style-7 .news-content .news-list li {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    list-style-type: none;
}

.news-card-item-style-7 .news-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 155%;
}

.news-card-item-style-7 .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    text-decoration: none;
    color: #000;
}

.news-card-item-style-7 .news-content p {
    font-size: 18px;
    font-weight: 700;
    max-width: 316px;
}

.news-card-item-style-7 .news-content .news-list li.style-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 5px;
    height: 5px;
    top: 10px;
    left: -20px;
    background-color: #767676;
}


/* HERO SECTION */

.hero-section {
    position: relative;
    min-height: 0%;
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/home-5/cta/cta-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(251, 231, 161, 0.95), rgba(227, 196, 109, 0.9), rgba(201, 168, 74, 0.85));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


/* LEFT TEXT */

.top-label {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-left: 150px;
    color: #000;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0 30px;
    margin-left: 142px;
    color: #000;
}


/* BUTTON */

.btn.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-left: 20vh;
}


/* arrow style */

.contact-btn .arrow {
    background: #fff;
    color: #000;
    padding: 6px 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}


/* hover effect */

.btn.contact-btn:hover {
    background: #000;
}


/* arrow move on hover */

.btn.contact-btn:hover .arrow {
    transform: translate(4px, -4px);
}


/* RIGHT SIDE */

.worker-img {
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 3;
    margin-top: 60px;
    margin-left: -87px;
}


/* CONTACT BOX */

.contact-box {
    position: absolute;
    background: #fff;
    padding: 6px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-box i {
    background: #b28b1e;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
}

.contact-box small {
    font-size: 12px;
    color: #000;
}

.contact-box p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}


/* POSITIONS */

.contact-box.call {
    top: 25%;
    right: 140px;
}

.contact-box.mail {
    top: 48%;
    right: 70px;
}

.footer1-section {
    position: relative;
    background: url("	https://wowtheme7.com/tf/buildnow/assets/img/home-5/footer-bg.jpg") center/cover no-repeat;
    color: #fff;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.footer-logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff5a1f;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-text {
    font-size: 17px;
    color: #ccc;
}

.footer-social span {
    display: block;
    margin-bottom: 8px;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

.footer-title {
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #b28b1e;
}

.newsletter-box {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 4px;
    margin-left: -32px;
    margin-top: -49px;
}

.newsletter-box i {
    font-size: 30px;
    color: #b28b1e;
    margin-bottom: 10px;
}

.newsletter-box h5 {
    font-weight: 600;
}

.newsletter-box p {
    font-size: 14px;
    color: #555;
}

.btn-orange {
    background: #ff5a1f;
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: smaller;
}

.btn-orange:hover {
    background: #e64a19;
}

.footer-bottom {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    padding: 15px 0;
    font-size: 14px;
}

.payment-icons img {
    height: 22px;
    margin-left: 10px;
    background: #fff;
    padding: 3px;
    border-radius: 3px;
}

.footer-logo2 img {
    width: 240px;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 21%;
}


/* left image */

.left-img {
    position: absolute;
    left: -761px;
    top: 0;
    width: 219px;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    margin-left: 0px;
}

.mb-0 {
    margin-bottom: 0 !important;
    color: black;
}

.project-3d-slider {
    background: linear-gradient( 135deg, #fbe7a1, #f1c95b, #c9a84a, #e7b94f, #fbe7a1);
    background-size: 300% 300%;
    padding: 120px 0;
    animation: goldGradient 8s ease infinite;
}


/* Gradient Animation */

@keyframes goldGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.construction-swiper {
    width: 100%;
    padding: 60px 0;
}

.project-card {
    width: 300px;
    height: 420px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: 0.4s;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 5px;
    color: #fff;
}

.project-card p {
    font-size: 14px;
    color: #fff;
}


/* 3D DEPTH SHADOW */

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient( to left, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

a.btn-main {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: black;
    border-radius: 5px;
    height: 30px;
    font-size: 30px;
    text-decoration: none;
    width: max-content;
}

.overlay-right {
    display: inline-grid;
}


/* Base Button */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


/* Gold Theme */

.btn-gold {
    background: linear-gradient(135deg, #9a7100, #c99700);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(154, 113, 0, 0.3);
}


/* Hover Effect */

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(154, 113, 0, 0.5);
}


/* Shine Effect */

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 125%;
}


/* Margin Top */

.mt-4 {
    margin-top: 1.5rem;
}


/* SECTION */

.about-section-wrapper {
    background: #fff;
}


/* LEFT */

.about-left-box {
    position: relative;
}

.about-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* RIGHT */

.about-panel {
    background: linear-gradient(180deg, #1e2226, #15181b);
    color: #fff;
    padding: 20px 30px;
    margin-left: -21vh;
}


/* TABS */

.about-tabs-wrapper {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.about-tabs-wrapper .about-tab-item {
    cursor: pointer;
    font-weight: 600;
    color: #888;
}

.about-tabs-wrapper .about-tab-item.active {
    color: #9a7100;
}


/* CONTENT */

.about-content-box {
    display: none;
    margin-top: 30px;
    color: #ccc;
    font-size: 19px;
    max-width: 520px;
}

.about-content-box.active {
    display: block;
}


/* STATS */

.about-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-stat-icon {
    font-size: 40px;
    color: #ff5a1f;
    margin-bottom: 0px;
}

.about-stat-title {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
    margin-left: -10vh;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .about-panel {
        padding: 50px 30px;
    }
    .about-ceo-card {
        left: 20px;
    }
}


/* SECTION */

.leadership-section {
    position: relative;
    padding: 120px 0;
    margin-top: -100vh;
    margin-left: 70px;
}


/* LEFT SIDE */

.leadership-left {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}


/* CEO CARD */

.leader-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 15px 28px;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}


/* Hover Effect */

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


/* Image */

.leader-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9a7100;
}


/* Name */

.leader-name {
    font-family: cursive;
    font-size: 22px;
    color: #9a7100;
    font-weight: 600;
}


/* Position */

.leader-position {
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .leadership-left {
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
    }
    .leader-card {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
}


/* Wrapper */

.about-bann {
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-left: 100px;
    width: 75%;
    margin-bottom: 35vh;
}


/* Image */

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}


/* Hover Zoom Effect */

.about-bann:hover .about-image {
    transform: scale(1.08);
    filter: brightness(0.85);
}


/* Optional Overlay */

.about-bann::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-bann:hover::after {
    opacity: 1;
}


/* Responsive Height */

@media (min-width: 992px) {
    .about-bann {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .about-bann {
        min-height: 350px;
    }
}


/* Wrapper */

.company-intro {
    padding: 40px 0;
}


/* Small Label */

.intro-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #9a7100;
    text-transform: uppercase;
    padding-left: 30px;
    position: relative;
}


/* Gold Dot */

.intro-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: #9a7100;
    border-radius: 50%;
    transform: translateY(-50%);
}


/* Main Heading */

.intro-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e2226;
    margin-top: 20px;
    letter-spacing: -1px;
}


/* Optional Gold Highlight */

.intro-heading span {
    color: #9a7100;
}


/* Responsive */

@media (max-width: 992px) {
    .intro-heading {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .intro-heading {
        font-size: 28px;
    }
}


/* ================= RESPONSIVE MEDIA QUERIES ================= */


/* Extra large devices (large desktops, 1400px and up) */

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .about-panel {
        padding: 40px 50px;
    }
}


/* Large devices (desktops, 1200px to 1399px) */

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    .about-panel {
        margin-left: -15vh;
        padding: 35px 40px;
    }
    .about-stat-number {
        font-size: 42px;
    }
    .intro-heading {
        font-size: 42px;
    }
    .recent-title {
        font-size: 72px;
    }
    .testimonial-content h2 {
        font-size: 54px;
    }
}


/* Large devices (desktops, 992px to 1199px) */

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    /* Header */
    .header {
        padding: 15px 20px;
    }
    .nav {
        gap: 15px;
    }
    .nav a {
        margin: 0 8px;
        font-size: 13px;
    }
    .quote-btn {
        padding: 14px 20px;
    }
    .menu-icon {
        padding: 14px 16px;
    }
    /* Hero */
    .page-heading .breadcrumb-title {
        font-size: 54px;
    }
    .page-heading {
        padding: 120px 0 60px;
    }
    /* About Section */
    .about-panel {
        margin-left: -10vh;
        padding: 30px;
    }
    .about-stats-wrapper {
        gap: 40px;
    }
    .about-stat-number {
        font-size: 36px;
    }
    .about-stat-title {
        margin-left: -5vh;
    }
    .about-content-box {
        font-size: 17px;
        max-width: 450px;
    }
    .about-bann {
        width: 85%;
        margin-left: 50px;
    }
    /* Impact Section */
    .impact-right {
        padding: 60px 50px;
    }
    .impact-right h1 {
        font-size: 42px;
    }
    .impact-number {
        font-size: 48px;
    }
    /* Stats Section */
    .text-block {
        margin-left: 15vh;
        margin-top: 20vh;
    }
    .circle-container {
        margin-right: 15vh;
    }
    .stat h2 {
        font-size: 64px;
    }
    .stat-hr {
        width: 50vh;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 60px;
    }
    /* Testimonial */
    .testimonial-wrapper {
        gap: 40px;
    }
    .testimonial-content h2 {
        font-size: 44px;
    }
    /* Blog */
    .news-card-item-style-7 .news-content {
        padding: 40px 25px 30px;
    }
    .news-card-item-style-7 .news-content h3 {
        font-size: 20px;
    }
    .blog-title {
        font-size: 46px;
    }
    /* Hero Section */
    .hero-text h1 {
        font-size: 44px;
        margin-left: 100px;
    }
    .top-label {
        margin-left: 100px;
    }
    .btn.contact-btn {
        margin-left: 15vh;
    }
    .worker-img {
        max-width: 280px;
        margin-left: -40px;
    }
    .contact-box.call {
        right: 100px;
    }
    .contact-box.mail {
        right: 50px;
    }
    /* Leadership */
    .leadership-section {
        margin-left: 30px;
    }
}


/* Medium devices (tablets, 768px to 991px) */

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    /* Top Bar */
    .topbar {
        padding: 10px 20px;
        flex-direction: column;
        text-align: center;
    }
    .topbar-right {
        justify-content: center;
    }
    /* Header */
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    .logo-icon1 {
        width: 15vh;
    }
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    .header-icons {
        gap: 15px;
    }
    .search-box input {
        width: 150px;
    }
    /* Hero */
    .page-heading .breadcrumb-title {
        font-size: 42px;
    }
    .page-heading {
        padding: 100px 0 50px;
    }
    .page-heading .breadcrumb-list li {
        font-size: 18px;
    }
    .about-overlay-box {
        left: 10%;
        right: 10%;
        width: 80%;
    }
    .overlay-grid {
        gap: 30px;
    }
    .overlay-left p,
    .overlay-right p {
        font-size: 16px;
    }
    /* About Section */
    .about-bann {
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
        min-height: 400px;
    }
    .about-panel {
        margin-left: 0;
        padding: 40px;
    }
    .about-stats-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
    .about-stat-item {
        flex: 1 1 calc(50% - 30px);
    }
    .about-stat-title {
        margin-left: 0;
    }
    .about-content-box {
        max-width: 100%;
    }
    .about-tabs-wrapper {
        gap: 20px;
    }
    /* Leadership */
    .leadership-section {
        margin-top: 0;
        margin-left: 0;
        padding: 80px 0;
    }
    .leadership-left {
        min-height: 300px;
        padding: 30px;
        justify-content: center;
    }
    .leader-card {
        padding: 12px 20px;
    }
    /* Company Intro */
    .intro-heading {
        font-size: 36px;
    }
    /* Impact Section */
    .impact-section {
        /* margin-top: 30px; */
    }
    .impact-left {
        width: 100%;
        padding: 50px 20px;
    }
    .impact-right {
        padding: 50px 30px;
    }
    .impact-right h1 {
        font-size: 36px;
    }
    .impact-number {
        font-size: 42px;
    }
    /* Stats Section */
    .stats-section {
        padding: 60px 30px;
    }
    .top-area {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .text-block {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }
    .circle-container {
        margin-right: 0;
        margin-top: 0;
        align-self: center;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat {
        width: 100%;
    }
    .stat h2 {
        font-size: 56px;
    }
    .stat-hr {
        width: 100%;
    }
    /* Recent Projects */
    .recent-projects-section {
        padding: 60px 0;
    }
    .recent-title {
        font-size: 48px;
    }
    .project-slider-section {
        padding-bottom: 100px;
    }
    .carousel-inner img {
        height: 400px;
    }
    .project-info-card {
        width: 300px;
        padding: 20px 25px;
    }
    .project-info-card h4 {
        font-size: 24px;
    }
    .info-row {
        margin-right: 50px;
    }
    /* 3D Slider */
    .project-3d-slider {
        padding: 80px 0;
    }
    .project-card {
        width: 260px;
        height: 380px;
    }
    /* Testimonial */
    .testimonial-hero {
        padding: 80px 30px !important;
    }
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .testimonial-card {
        padding: 40px;
    }
    .review-text {
        font-size: 20px;
    }
    .testimonial-content h2 {
        font-size: 38px;
    }
    .reviwe-area {
        padding: 8vh 30vh;
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    /* Blog */
    .blog-intro-one {
        padding: 70px 20px;
        margin: 50px auto;
    }
    .blog-title {
        font-size: 38px;
    }
    .blog-section {
        flex-wrap: wrap;
        gap: 30px;
    }
    .blog-card {
        width: 340px;
    }
    .news-card-item-style-7 .news-content {
        padding: 40px 25px 30px;
    }
    .news-card-item-style-7 .news-content span {
        width: 100%;
    }
    .news-card-item-style-7 .news-content p {
        max-width: 100%;
    }
    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }
    .hero-text h1 {
        font-size: 38px;
        margin-left: 50px;
    }
    .top-label {
        margin-left: 50px;
    }
    .btn.contact-btn {
        margin-left: 8vh;
    }
    .worker-img {
        max-width: 240px;
        margin-left: 0;
        margin-top: 30px;
    }
    .contact-box.call {
        right: 30px;
        top: 20%;
    }
    .contact-box.mail {
        right: 0;
        top: 45%;
    }
    /* Footer */
    .footer1-section .row {
        gap: 30px 0;
    }
    .newsletter-box {
        margin-left: 0;
        margin-top: 0;
    }
    .col-lg-3 {
        width: 50%;
    }
    .left-img {
        left: -500px;
        width: 180px;
    }
}


/* Small devices (landscape phones, 576px to 767px) */

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    /* Top Bar */
    .topbar {
        padding: 10px 15px;
    }
    .topbar-right {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    /* Header */
    .header {
        flex-direction: column;
        gap: 15px;
    }
    .logo {
        justify-content: flex-start;
        width: 100%;
    }
    .logo-icon1 {
        width: 100px;
        margin: 0;
    }
    /* Navigation - Align left */
    .nav {
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin: 5px 0;
        margin-top: -40px;
    }
    .nav a {
        font-size: 11px;
        margin: 0 5px 0 0;
    }
    .dropdown-content {
        left: 0;
        right: auto;
        min-width: 150px;
    }
    /* Header Icons - Center and Top */
    .header-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 15px;
        margin: 0;
        position: relative;
        margin-top: 0px;
    }
    /* Search Box - Centered */
    .search-box {
        margin: 0;
        position: relative;
        display: inline-block;
    }
    .search-box input {
        width: 120px;
        padding: 8px 30px 8px 12px;
        font-size: 12px;
        border-radius: 20px;
        text-align: left;
    }
    .search-icon {
        position: absolute;
        right: -125px;
        left: auto;
        top: -65px;
        transform: translateY(-50%);
        cursor: pointer;
        pointer-events: none;
    }
    /* Cart - Centered */
    .cart {
        font-size: 20px;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -70px;
        right: -130px;
    }
    .cart-count {
        position: absolute;
        font-size: 10px;
        padding: 2px 5px;
        top: 0px;
        right: -10px;
        left: auto;
        background: #a87b00;
        color: #fff;
        border-radius: 50%;
        min-width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Quote Menu - Align Right */
    .quote-menu {
        width: auto;
        justify-content: flex-end;
        margin: 0;
        margin-left: auto;
        margin-top: -140px;
        /* Pushes to the right */
    }
    .quote-btn {
        padding: 10px 12px;
        font-size: 12px;
        margin: 0;
    }
    .menu-icon {
        padding: 10px 12px;
        gap: 6px;
        margin: 0;
    }
    .menu-icon span {
        width: 16px;
        height: 1.5px;
    }
    /* Hero */
    .page-heading .breadcrumb-title {
        font-size: 32px;
    }
    .page-heading {
        padding: 80px 0 40px;
    }
    .page-heading .breadcrumb-list li {
        font-size: 16px;
    }
    .about-hero {
        height: 300px;
    }
    .about-overlay-box {
        left: 5%;
        right: 5%;
        width: 90%;
        padding: 15px;
    }
    .overlay-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* About Section */
    .about-panel {
        padding: 30px 20px;
    }
    .about-tabs-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }
    .about-stats-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .about-stat-item {
        width: 100%;
    }
    .about-stat-number {
        font-size: 40px;
    }
    .about-content-box {
        font-size: 16px;
    }
    .about-bann {
        min-height: 300px;
    }
    /* Leadership */
    .leader-card {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }
    .leader-img {
        width: 80px;
        height: 80px;
    }
    .leader-name {
        font-size: 20px;
    }
    /* Company Intro */
    .intro-heading {
        font-size: 28px;
    }
    .intro-label {
        font-size: 13px;
        padding-left: 25px;
    }
    /* Impact Section */
    .impact-right {
        padding: 40px 20px;
    }
    .impact-right h1 {
        font-size: 28px;
    }
    .impact-number {
        font-size: 36px;
    }
    .impact-text {
        font-size: 14px;
    }
    .impact-sub {
        font-size: 12px;
    }
    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-item {
        font-size: 16px;
    }
    /* Stats Section */
    .stats-section {
        padding: 40px 20px;
    }
    .text-block p {
        font-size: 18px;
    }
    .circle-container {
        width: 180px;
        height: 180px;
    }
    .center-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .stat h2 {
        font-size: 48px;
    }
    .stat p {
        font-size: 18px;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 36px;
    }
    .project-slider-section {
        padding-bottom: 80px;
    }
    .carousel-inner img {
        height: 300px;
    }
    .project-info-card {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 90%;
        margin: -40px auto 0;
    }
    .info-row {
        margin-right: 0;
    }
    /* 3D Slider */
    .project-3d-slider {
        padding: 60px 0;
    }
    .project-card {
        width: 240px;
        height: 350px;
    }
    .project-card img {
        height: 250px;
    }
    /* Testimonial */
    .testimonial-hero {
        padding: 60px 20px !important;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .rating-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .google-logo {
        height: 30px;
    }
    .stars {
        font-size: 18px;
    }
    .review-text {
        font-size: 18px;
    }
    .user-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .quote-icon {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }
    .testimonial-content h2 {
        font-size: 32px;
    }
    .reviwe-area {
        padding: 5vh 20px;
        flex-direction: column;
    }
    .reviwe-1 img,
    .reviwe-2 img {
        height: 50px;
    }
    /* Blog */
    .blog-intro-one {
        padding: 50px 15px;
        margin: 30px auto;
    }
    .blog-title {
        font-size: 32px;
        margin-right: 0;
    }
    .blog-desc {
        font-size: 15px;
    }
    .blog-card {
        width: 100%;
        max-width: 380px;
        padding: 25px;
    }
    .post-title {
        font-size: 22px;
    }
    .news-card-item-style-7 .news-image .user-box {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .news-card-item-style-7 .news-content .news-list {
        flex-wrap: wrap;
        gap: 20px;
        margin-left: 0;
    }
    .news-card-item-style-7 .news-content h3 {
        font-size: 18px;
    }
    /* Hero Section */
    .hero-section {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 32px;
        margin-left: 0;
    }
    .top-label {
        margin-left: 0;
    }
    .btn.contact-btn {
        margin-left: 0;
    }
    .worker-img {
        display: none;
    }
    .contact-box {
        position: relative;
        top: 0 !important;
        right: 0 !important;
        margin: 10px auto;
        width: fit-content;
    }
    .contact-box.call,
    .contact-box.mail {
        top: 0;
        right: 0;
    }
    /* Footer */
    .footer1-section {
        text-align: center;
    }
    .col-lg-3 {
        width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .newsletter-box {
        text-align: center;
    }
    .footer-bottom .row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .payment-icons {
        justify-content: center;
    }
    .left-img {
        display: none;
    }
    .footer-logo2 img {
        width: 180px;
        margin: 0 auto;
    }
    /* Progress */
    .progress-header h3 {
        font-size: 18px;
    }
    .progress-header span {
        font-size: 16px;
    }
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .btn-gold {
        box-shadow: 0 5px 15px rgba(154, 113, 0, 0.3);
    }
}


/* Extra small devices (phones, 575px and down) */

@media (max-width: 575px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    /* Hero */
    .page-heading .breadcrumb-title {
        font-size: 28px;
    }
    .page-heading {
        padding: 60px 0 30px;
    }
    .page-heading .breadcrumb-list li {
        font-size: 14px;
    }
    .about-overlay-box {
        left: 10px;
        right: 10px;
        width: auto;
    }
    /* About Section */
    .about-panel {
        padding: 25px 15px;
    }
    .about-tabs-wrapper {
        gap: 10px;
    }
    .about-tab-item {
        font-size: 14px;
    }
    .about-stat-number {
        font-size: 32px;
    }
    .about-stat-icon {
        font-size: 32px;
    }
    .about-bann {
        min-height: 250px;
    }
    /* Company Intro */
    .intro-heading {
        font-size: 24px;
    }
    .intro-label {
        font-size: 12px;
        padding-left: 22px;
    }
    .intro-label::before {
        width: 8px;
        height: 8px;
    }
    /* Leadership */
    .leadership-section {
        padding: 60px 0;
    }
    .leader-card {
        padding: 0px 52px;
        margin-top: -40vh;
    }
    .leader-img {
        width: 60px;
        height: 60px;
    }
    .leader-name {
        font-size: 18px;
    }
    .leader-position {
        font-size: 12px;
    }
    /* Impact Section */
    .impact-left {
        padding: 40px 15px;
    }
    .impact-number {
        font-size: 32px;
    }
    .impact-icon {
        font-size: 32px;
    }
    .impact-right h1 {
        font-size: 24px;
    }
    .impact-sub {
        font-size: 11px;
    }
    /* Stats Section */
    .stat h2 {
        font-size: 42px;
    }
    .stat p {
        font-size: 16px;
    }
    .stat-hr {
        margin: 12px 0 10px;
    }
    .text-block p {
        font-size: 16px;
    }
    .circle-container {
        width: 150px;
        height: 150px;
    }
    .center-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 28px;
    }
    .carousel-inner img {
        height: 250px;
    }
    .project-info-card {
        padding: 15px 20px;
    }
    .project-info-card h4 {
        font-size: 20px;
    }
    .info-row {
        font-size: 12px;
        flex-wrap: wrap;
    }
    .project-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    /* 3D Slider */
    .project-3d-slider {
        padding: 40px 0;
    }
    .construction-swiper {
        padding: 30px 0;
    }
    .project-card {
        width: 220px;
        height: 320px;
    }
    .project-card img {
        height: 220px;
    }
    .project-card h4 {
        font-size: 16px;
    }
    .project-card p {
        font-size: 12px;
    }
    /* Testimonial */
    .testimonial-hero {
        padding: 40px 15px !important;
    }
    .testimonial-card {
        padding: 25px 15px;
    }
    .review-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .testimonial-content h2 {
        font-size: 26px;
    }
    .testimonial-content p {
        font-size: 14px;
    }
    .quote-icon img {
        width: 50px;
        height: 50px;
    }
    /* Blog */
    .blog-intro-one {
        padding: 40px 15px;
    }
    .blog-title {
        font-size: 26px;
    }
    .blog-label {
        font-size: 12px;
    }
    .blog-card {
        padding: 20px;
    }
    .post-title {
        font-size: 20px;
    }
    .post-desc {
        font-size: 13px;
    }
    .news-card-item-style-7 .news-content {
        padding: 30px 20px 25px;
    }
    .news-card-item-style-7 .news-content h3 {
        font-size: 16px;
    }
    .news-card-item-style-7 .news-content p {
        font-size: 15px;
    }
    .news-card-item-style-7 .news-content .news-list li {
        font-size: 14px;
    }
    /* Hero Section */
    .hero-text h1 {
        font-size: 26px;
    }
    .top-label {
        font-size: 14px;
    }
    .btn.contact-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    /* Footer */
    .footer1-section {
        padding: 40px 0 0;
    }
    .footer-text {
        font-size: 15px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .newsletter-box {
        padding: 20px;
    }
    .newsletter-box h5 {
        font-size: 18px;
    }
    .newsletter-box p {
        font-size: 13px;
    }
    .btn-orange {
        padding: 8px 16px;
        font-size: 13px;
    }
    .footer-bottom {
        font-size: 12px;
    }
    .payment-icons img {
        height: 18px;
    }
    /* Progress */
    .progress-header h3 {
        font-size: 16px;
    }
    .progress-header span {
        font-size: 14px;
    }
    /* Feature List */
    .feature-item {
        font-size: 14px;
        padding-left: 22px;
    }
    .check-list {
        flex-direction: column;
        gap: 15px;
    }
}


/* Height-based media queries for better mobile landscape experience */

@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 30px 0;
    }
    .page-heading {
        padding: 40px 0 20px;
    }
    .about-hero {
        height: 250px;
    }
    .about-bann {
        min-height: 200px;
    }
    .leadership-left {
        min-height: 250px;
    }
    .testimonial-hero {
        padding: 40px 20px !important;
    }
    .worker-img {
        max-width: 200px;
    }
}


/* Print styles */

@media print {
    .topbar,
    .header,
    .quote-btn,
    .menu-icon,
    .search-box,
    .cart,
    .footer1-section,
    .btn,
    .project-arrow,
    .contact-box,
    .reviwe-area,
    .newsletter-box {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
    .about-panel,
    .impact-left,
    .impact-right,
    .testimonial-card,
    .blog-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* ========================================
   COMPLETE ANIMATIONS - ADD AT THE END OF YOUR CSS FILE
   ======================================== */


/* Keyframe Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0% {
        border-color: rgba(201, 168, 74, 0.2);
    }
    50% {
        border-color: rgba(201, 168, 74, 1);
    }
    100% {
        border-color: rgba(201, 168, 74, 0.2);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(201, 168, 74, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 168, 74, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(201, 168, 74, 0.2);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0.3);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}


/* Animation Classes */

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease forwards;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-scale-up {
    animation: scaleUp 0.5s ease forwards;
}

.animate-border-pulse {
    animation: borderPulse 2s infinite;
}

.animate-glow {
    animation: glow 2s infinite;
}

.animate-spin {
    animation: spin 2s linear infinite;
}

.animate-shake {
    animation: shake 0.5s ease;
}

.animate-wiggle {
    animation: wiggle 0.5s ease;
}

.animate-flip-in {
    animation: flipIn 0.6s ease forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease forwards;
}

.animate-rotate-in {
    animation: rotateIn 0.6s ease forwards;
}


/* Animation Delays */

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}


/* Animation Durations */

.duration-300 {
    animation-duration: 0.3s;
}

.duration-500 {
    animation-duration: 0.5s;
}

.duration-800 {
    animation-duration: 0.8s;
}

.duration-1000 {
    animation-duration: 1s;
}

.duration-1500 {
    animation-duration: 1.5s;
}

.duration-2000 {
    animation-duration: 2s;
}

.duration-3000 {
    animation-duration: 3s;
}


/* Hover Animations */

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(201, 168, 74, 0.5);
}

.hover-border {
    position: relative;
    overflow: hidden;
}

.hover-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    transition: width 0.3s ease;
}

.hover-border:hover::after {
    width: 100%;
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hover-shine:hover::before {
    left: 100%;
}

.hover-bounce {
    transition: transform 0.3s ease;
}

.hover-bounce:hover {
    animation: bounce 0.5s ease;
}

.hover-pulse {
    transition: transform 0.3s ease;
}

.hover-pulse:hover {
    animation: pulse 0.5s ease;
}

.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}


/* Element Specific Animations */


/* Header Animations */

.logo-icon1 {
    animation: fadeIn 1s ease;
}

.logo-icon1:hover {
    animation: pulse 1s ease;
}

.nav a {
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* Topbar Animation */

.topbar {
    animation: fadeInDown 0.8s ease;
}

.topbar-left::before {
    animation: pulse 2s ease-in-out infinite;
}


/* Hero Section Animations */

.page-heading {
    animation: fadeInUp 1s ease;
}

.breadcrumb-list li {
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
}

.breadcrumb-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.breadcrumb-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.breadcrumb-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.breadcrumb-title {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.overlay1 {
    animation: fadeIn 1s ease;
}


/* About Section Animations */

.about-bann {
    animation: fadeInLeft 1s ease;
    overflow: hidden;
}

.about-bann img {
    transition: transform 0.8s ease;
}

.about-bann:hover img {
    transform: scale(1.08);
}

.company-intro {
    animation: fadeInRight 1s ease;
}

.intro-label {
    animation: fadeIn 1s ease;
}

.intro-label::before {
    animation: pulse 2s ease-in-out infinite;
}

.intro-heading {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}


/* Progress Bar Animation */

.progress-fill {
    animation: slideInUp 1.5s ease forwards;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}


/* Feature Items Animation */

.feature-item {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:hover {
    transform: translateX(10px);
    color: #c9a84a;
}


/* Tabs Animation */

.about-tab-item {
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.about-tab-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9a7100;
    transition: width 0.3s ease;
}

.about-tab-item.active::after {
    width: 100%;
}


/* Stats Animation */

.about-stats-wrapper {
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.about-stat-icon {
    animation: float 3s ease-in-out infinite;
}

.about-stat-number {
    animation: fadeIn 1s ease;
    transition: transform 0.3s ease;
}

.about-stat-number:hover {
    transform: scale(1.1);
}


/* Leadership Card Animation */

.leader-card {
    animation: fadeInUp 1s ease;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.leader-img {
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.leader-card:hover .leader-img {
    transform: scale(1.1) rotate(5deg);
}


/* Impact Section Animations */

.impact-left {
    animation: fadeInLeft 1s ease;
    position: relative;
    overflow: hidden;
}

.impact-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.impact-icon {
    animation: bounce 2s ease-in-out infinite;
}

.impact-number {
    animation: fadeIn 1s ease;
    transition: transform 0.3s ease;
}

.impact-number:hover {
    transform: scale(1.1);
}

.impact-right {
    animation: fadeInRight 1s ease;
}

.impact-sub .dot {
    animation: pulse 2s ease-in-out infinite;
}


/* Stats Section Animations */

.text-block {
    animation: fadeInLeft 1s ease;
}

.circle-container {
    animation: fadeInRight 1s ease;
}

.circle-text {
    animation: rotate 12s linear infinite;
}

.center-arrow {
    animation: pulse 2s ease-in-out infinite;
}

.stat {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease;
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.4s;
}

.stat:nth-child(3) {
    animation-delay: 0.6s;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h2 {
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat:hover h2 {
    transform: scale(1.05);
    color: #c9a84a;
}

.stat-hr {
    transition: width 0.3s ease, background 0.3s ease;
}

.stat:hover .stat-hr {
    background: #c9a84a;
}


/* Recent Projects Section */

.recent-title {
    animation: fadeInDown 1s ease;
    position: relative;
    display: inline-block;
}

.recent-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    animation: slideInUp 1s ease 0.5s forwards;
}


/* 3D Slider Cards Animation */


/* .project-card {
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.project-card img {
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card h4 {
  transition: color 0.3s ease;
}

.project-card:hover h4 {
  color: #c9a84a;
} */


/* Testimonial Section Animations */

.testimonial-hero {
    animation: fadeIn 1s ease;
}

.testimonial-card {
    animation: fadeInUp 1s ease;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.rating-row {
    animation: fadeIn 1s ease;
}

.stars {
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.user-row img {
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.user-row:hover img {
    transform: scale(1.1) rotate(5deg);
}

.quote-icon {
    animation: float 3s ease-in-out infinite;
}

.testimonial-content {
    animation: fadeInRight 1s ease;
}

.testimonial-content h2 {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.reviwe-area {
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.reviwe-1 img,
.reviwe-2 img {
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.reviwe-1 img:hover,
.reviwe-2 img:hover {
    transform: scale(1.2) rotate(5deg);
}

.reviwe-2 img {
    animation-delay: 1s;
}


/* Blog Section Animations */

.news-section-7 .section-title {
    animation: fadeInDown 1s ease;
}

.news-section-7 .sub-title {
    animation: fadeIn 1s ease;
    position: relative;
    display: inline-block;
}

.news-section-7 .sub-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 30px;
    height: 2px;
    background: #c9a84a;
    animation: slideInUp 1s ease 0.3s forwards;
    width: 0;
}

.news-card-item-style-7 {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-card-item-style-7:nth-child(1) {
    animation-delay: 0.2s;
}

.news-card-item-style-7:nth-child(2) {
    animation-delay: 0.4s;
}

.news-card-item-style-7:nth-child(3) {
    animation-delay: 0.6s;
}

.news-card-item-style-7:hover {
    transform: translateY(-10px);
}

.news-image {
    overflow: hidden;
}

.news-image img {
    transition: transform 0.5s ease;
}

.news-card-item-style-7:hover .news-image img {
    transform: scale(1.1);
}

.user-box {
    animation: fadeInUp 0.5s ease;
    transition: all 0.3s ease;
}

.user-box:hover {
    transform: translateY(-5px);
}

.arrow-icon {
    transition: all 0.3s ease;
}

.arrow-icon:hover {
    transform: rotate(45deg);
    background: #000 !important;
}

.arrow-icon i {
    transition: transform 0.3s ease;
}

.arrow-icon:hover i {
    transform: rotate(0deg);
}

.news-content {
    transition: all 0.3s ease;
}

.news-card-item-style-7:hover .news-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-content h3 a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.news-content h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84a;
    transition: width 0.3s ease;
}

.news-content h3 a:hover {
    color: #c9a84a;
}

.news-content h3 a:hover::after {
    width: 100%;
}

.news-content .news-list li {
    transition: transform 0.3s ease;
}

.news-content .news-list li:hover {
    transform: translateX(5px);
}


/* Hero Section (Bottom) Animations */

.hero-section {
    overflow: hidden;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.top-label {
    animation: fadeIn 1s ease;
    position: relative;
    display: inline-block;
}

.top-label::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #c9a84a;
    animation: slideInUp 1s ease 0.3s forwards;
    width: 0;
}

.hero-text h1 {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.btn.contact-btn {
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.btn.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.worker-img {
    animation: fadeInRight 1s ease, float 3s ease-in-out infinite;
}

.contact-box {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-box.call {
    animation-delay: 0.6s;
}

.contact-box.mail {
    animation-delay: 0.8s;
}

.contact-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-box i {
    transition: transform 0.3s ease;
}

.contact-box:hover i {
    transform: rotate(360deg);
}

.left-img {
    animation: float 4s ease-in-out infinite;
}


/* Impact Icon Items Animation */

.impact-icon-item-style-3 {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.impact-icon-item-style-3:nth-child(1) {
    animation-delay: 0.1s;
}

.impact-icon-item-style-3:nth-child(2) {
    animation-delay: 0.2s;
}

.impact-icon-item-style-3:nth-child(3) {
    animation-delay: 0.3s;
}

.impact-icon-item-style-3:nth-child(4) {
    animation-delay: 0.4s;
}

.impact-icon-item-style-3:hover {
    transform: translateY(-5px);
}

.impact-icon-item-style-3 .icon {
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.impact-icon-item-style-3:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
}

.impact-icon-item-style-3 .content h5 {
    transition: color 0.3s ease;
}

.impact-icon-item-style-3:hover .content h5 {
    color: #c9a84a;
}


/* Footer Animations */

.footer1-section {
    animation: fadeIn 1s ease;
}

.footer-logo2 {
    animation: fadeIn 1s ease;
    transition: transform 0.3s ease;
}

.footer-logo2:hover {
    transform: scale(1.05);
}

.footer-logo2 img {
    transition: transform 0.3s ease;
}

.footer-logo2:hover img {
    transform: scale(1.05);
}

.footer-text {
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.footer-social {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.footer-social a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.2);
    color: #c9a84a !important;
}

.footer-title {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84a;
    transition: width 0.3s ease;
}

.footer-title:hover::after {
    width: 50px;
}

.footer-links li {
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease;
}

.footer-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-links li:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-links li:nth-child(5) {
    animation-delay: 0.5s;
}

.footer-links li:hover {
    transform: translateX(10px);
}

.footer-links a {
    transition: color 0.3s ease;
}

.newsletter-box {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-box i {
    animation: bounce 2s ease-in-out infinite;
}

.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(201, 168, 74, 0.3);
}

.btn-orange {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-orange::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-orange:hover::before {
    width: 300px;
    height: 300px;
}

.footer-bottom {
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

.payment-icons img {
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.payment-icons img:nth-child(1) {
    animation-delay: 0s;
}

.payment-icons img:nth-child(2) {
    animation-delay: 0.2s;
}

.payment-icons img:nth-child(3) {
    animation-delay: 0.4s;
}

.payment-icons img:nth-child(4) {
    animation-delay: 0.6s;
}

.payment-icons img:hover {
    transform: scale(1.2) translateY(-5px);
}


/* Scroll to Top Animation */

.scroll-top {
    animation: fadeIn 1s ease;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: #000 !important;
}


/* Button Animations */

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gold {
    background: linear-gradient(135deg, #9a7100, #c99700);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-gold:hover {
    animation: pulse 1s ease;
}


/* Image Hover Animations */

img {
    transition: all 0.3s ease;
}


/* Check List Animation */

.check-list {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.check-list div {
    transition: transform 0.3s ease, color 0.3s ease;
}

.check-list div:hover {
    transform: translateX(10px);
    color: #c9a84a;
}


/* Overlay Box Animation */

.about-overlay-box {
    animation: fadeInUp 1s ease;
    animation: slideInUp 1s ease;
}

.overlay-grid {
    animation: fadeIn 1.5s ease;
}


/* Page Load Animation */

body {
    animation: fadeIn 0.5s ease;
}


/* Stagger Children Animation */

.stagger-children>* {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.stagger-children>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-children>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-children>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-children>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-children>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-children>*:nth-child(6) {
    animation-delay: 0.6s;
}

.stagger-children>*:nth-child(7) {
    animation-delay: 0.7s;
}

.stagger-children>*:nth-child(8) {
    animation-delay: 0.8s;
}

.stagger-children>*:nth-child(9) {
    animation-delay: 0.9s;
}

.stagger-children>*:nth-child(10) {
    animation-delay: 1s;
}


/* Responsive Animation Adjustments */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Mobile Animation Optimizations */

@media (max-width: 768px) {
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-fade-in-up,
    .animate-fade-in-down {
        animation-duration: 0.6s;
    }
    .stat,
    .news-card-item-style-7,
    .impact-icon-item-style-3 {
        animation-duration: 0.5s;
    }
    .project-card,
    .testimonial-card,
    .leader-card {
        animation-duration: 0.5s;
    }
}


/* Loading Animation for Page Transition */

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    animation: pageLoad 0.6s ease;
}


/* Pulse Animation for Important Elements */

.pulse-element {
    animation: pulse 2s ease-in-out infinite;
}


/* Floating Animation for Icons */

.float-element {
    animation: float 3s ease-in-out infinite;
}


/* Rotate Animation for Loading */

.rotate-element {
    animation: rotate 2s linear infinite;
}


/* Shake Animation for Alerts */

.shake-element {
    animation: shake 0.5s ease;
}


/* Bounce Animation for Call to Action */

.bounce-element {
    animation: bounce 2s ease-in-out infinite;
}


/* Glow Animation for Highlights */

.glow-element {
    animation: glow 2s ease-in-out infinite;
}