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

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

.img-fluid {
    max-width: 100%;
    height: auto;
    margin-top: -193px;
}

.about-bann {
    perspective: 1000px;
}

.about-image {
    transition: transform 0.2s ease-out;
}


/* CUSTOM CURSOR */

.cursor-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cursor-outline {
    width: 26px;
    height: 26px;
    border: 2px solid rgba(255, 196, 0, 0.904);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}


/* Header */

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.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 container */

.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;
}


/* Hero Section */

.hero {
    display: flex;
    height: calc(100vh - 80px);
}

.hero-left {
    width: 45%;
    background: #000000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0vh;
}

.hero-left h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: 800;
}

.service-btn {
    display: inline-block;
    padding: 14px 22px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    /* transition: 0.3s; */
    font-size: 22px;
}

.service-btn:hover {
    background: #f1c95b;
}

.service-btn span {
    margin-left: 8px;
}

.hero-right {
    width: 55%;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 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%;
}

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


/* LEFT PANEL */

.left-panel {
    /* background: #0f1720; */
    color: white;
    padding: 60px 40px;
    width: 380px;
}


/* EXPERIENCE CIRCLE */

.experience-circle {
    position: relative;
    width: 150px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}


/* ROTATING TEXT SVG */

.circle-text {
    position: absolute;
    width: 140%;
    height: 140%;
    animation: rotateText 18s linear infinite;
}

.circle-text text {
    fill: #cbd5e1;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 700;
}


/* CENTER NUMBER */

.center-number {
    font-size: 58px;
    font-weight: 900;
    color: #ffd96f;
}


/* ROTATE ANIMATION */

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


/* STATS */

.stats h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
}

.supply-text {
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.stat-icon {
    width: 40px;
}


/* .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff5a1f;
  border-radius: 50%;
  margin-top: 10px;
} */

.years {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.text {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
}

.exp-outer {
    display: flex;
    gap: 20px;
}

.supply-text {
    font-size: 14px;
    color: #9aa4ad;
    margin-bottom: 30px;
}


/* Stats */

.stats {
    display: block;
    align-items: center;
    gap: 15px;
    margin-left: 35px;
}

.fw-bold {
    font-weight: 746 !important;
    color: white;
    border: 1px solid white;
}

.stats h2 {
    font-size: 48px;
}

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


/* Right Panel */

.right-panel {
    width: 60%;
}

.right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Contact Bar */

.contact-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 20px;
    background: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
}

.contact-item .icon {
    font-size: 28px;
    color: #a87b00;
}

.contact-item small {
    font-size: 20px;
    color: #777;
}


/* Scroll Text */

.scroll-text {
    background: #f5f5f5;
    padding: 12px 0;
    font-weight: bold;
    font-size: 14px;
}

.gold-dot {
    font-size: 18px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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


/* Top Scrolling Text */

.top-scroll-text {
    background: #fff;
    border-bottom: 1px solid #d6c1c1;
    padding: 47px 0;
    font-size: 20px;
    font-weight: normal;
    color: #222;
}


/* About Section */

.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 100px;
}


/* Left Image */

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}


/* Right Content */

.about-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #a87b00;
    margin-bottom: 15px;
    position: relative;
    padding-left: 16px;
}

.section-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #a87b00;
    position: absolute;
    left: 0;
    top: 6px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #aaa;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
}


/* Scroll To Top */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: #a87b00;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

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


/* Orange block */

.quote-btn {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: black;
    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: black;
    display: block;
}

.about-company {
    background: #ffffff;
}


/* IMAGE */

.about-image img {
    width: 100%;
    border-radius: 6px;
}


/* SMALL TAG */

.about-tag {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-tag .dot {
    width: 8px;
    height: 8px;
    background: #ff5a1f;
    display: inline-block;
    margin-right: 10px;
}


/* TITLE */

.about-title {
    font-size: 46px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* TEXT */

.about-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* BUTTON */

.btn.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #dbb64f !important;
    color: #000 !important;
    padding: 14px 26px !important;
    border-radius: 6px !important;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}


/* Arrow */

.btn.about-btn span {
    transition: transform 0.3s ease;
}


/* Hover */

.btn.about-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* Arrow move */

.btn.about-btn:hover span {
    transform: translate(5px, -5px);
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Orange round icon */

.logo-icon {
    width: 48px;
    height: 48px;
    background: #ff5a1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}


/* Text block */

.brand-text h4 {
    margin: 0;
    font-weight: 800;
    color: #fff;
    font-size: 22px;
}

.brand-text span {
    font-size: 13px;
    color: #cfcfcf;
}

.stat-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stat-icon img {
    width: 125%;
    height: 125%;
    object-fit: contain;
    margin-top: 10px;
}

.stat-icon h2 {
    gap: 10px;
}

.stat-icon span {
    display: flex;
}

.d-flex {
    display: flex !important;
    gap: 28px;
}

.stat-icon2 {
    animation: iconShake 3s ease-in-out infinite;
    transform-origin: center;
    width: 142px;
    height: 60px;
    margin-bottom: 40px;
}


/* Contact Bar */

.contact-bar {
    position: absolute;
    right: 0px;
    bottom: -59px;
    display: flex;
    background: #f8f9fa;
    padding: 40px 45px;
    gap: 60px;
    border-radius: 2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-bottom: none;
}


/* Section Tag */

.section-tag {
    color: #ff5a1f;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}


/* Title */

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}


/* Text */

.about-text {
    font-size: 16px;
    color: #666;
    max-width: 520px;
}


/* Button */

.btn-orange {
    background-color: #ff5a1f;
    color: #fff;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e64a13;
    color: #fff;
}

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


/* Scroll To Top */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff5a1f;
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

#scrollTopBtn:hover {
    background-color: #e64a13;
}


/* Responsive */

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

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


/* SECTION */

.mission-section {
    background: #fff;
}


/* LEFT */

.mission-left {
    position: relative;
}

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


/* CEO */

.ceo-box {
    position: absolute;
    bottom: 230px;
    left: 70px;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ceo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.ceo-sign {
    font-family: cursive;
    color: #b98801;
    font-size: 22px;
}

.ceo-title {
    font-size: 14px;
    color: #777;
}


/* RIGHT */

.mission-right {
    background: linear-gradient(180deg, #1e2226, #15181b);
    color: #fff;
    padding: 20px 30px;
    margin-left: -49px;
}


/* TABS */

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

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

.mission-tabs .tab.active {
    color: #c4a34a;
}


/* CONTENT */

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

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


/* STATS */

.stats-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

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


/* SCROLL */

#scrollTopBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #ff5a1f;
    color: #fff;
    border: none;
    padding: 12px 16px;
    display: none;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .mission-right {
        padding: 50px 30px;
    }
    .ceo-box {
        left: 20px;
    }
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #fff;
}


/* SECTION */

.services-hero {
    position: relative;
    background: #f6f4ec;
    padding: 90px 0 110px;
    overflow: hidden;
}


/* LABEL */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    background: #ff5a1f;
    display: inline-block;
}


/* TITLE */

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    max-width: 780px;
    margin-bottom: 40px;
}


/* BUTTON */

.btn-services {
    background: #ff5a1f;
    color: #fff;
    padding: 16px 28px;
    font-weight: 600;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s ease;
}

.btn-services:hover {
    background: #e94e16;
    color: #fff;
}

.btn-services .arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #a77d0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
}

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


/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    gap: 5px;
    background: #f5f5f5;
}


/* CARD */

.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 8px;
}


/* OVERLAY */

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


/* CONTENT */

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ICON */


/* .icon-box {
  width: 60px;
  height: 60px;
  background: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
} */


/* Card base */

.service-card {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}


/* Create animated background layer */

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}


/* Expand image on hover */

.service-card:hover::before {
    transform: scale(1.15);
}


/* Overlay stays above image */

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


/* Content above overlay */

.service-content {
    position: absolute;
    bottom: 0;
    padding: 28px;
    color: #fff;
    z-index: 2;
    transform: translateY(18px);
    transition: transform 0.35s ease;
}


/* Slide content up on hover */

.service-card:hover .service-content {
    transform: translateY(0);
}


/* Icon Box Base */

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.25s ease;
}


/* Inner icon/image smooth scaling */

.icon-box img,
.icon-box i,
.icon-box svg,
.icon-box span {
    transition: transform 0.25s ease;
}


/* Hover Effects */

.icon-box:hover {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    animation: shake 0.5s;
    transform: scale(1.12);
    /* expand box */
}


/* Expand icon/image on hover */

.icon-box:hover img,
.icon-box:hover i,
.icon-box:hover svg,
.icon-box:hover span {
    transform: scale(1.2);
}


/* Shake Animation */

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


/* TEXT */

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #eaeaea;
}


/* ARROW */

.arrow-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.service-card:hover .arrow-btn {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
}


/* SCROLL BUTTON */

#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #ff5a1f;
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    font-size: 20px;
    display: none;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
}


/* SECTION */

.impacts-section {
    padding: 90px 0 70px;
}


/* LABEL */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 25px;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    background: #a57f16;
}


/* TITLE */

.impacts-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .impacts-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .impacts-title {
        font-size: 32px;
    }
}

a.btn.btn-orange.mt-4 {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: black;
    border-radius: 6px;
    height: 50px;
    font-size: 20px;
}

.about-bann {
    display: block;
    margin-top: -23vh;
    margin-left: -61px;
}

a.btn.btn-services {
    display: flex;
    background: #ff5a1f;
    width: fit-content;
    color: white;
}

.shape-container.mt-5 {
    position: absolute;
    top: 89vh;
    right: 0;
    z-index: -1;
}

.feature-section .top-shape {
    position: absolute;
    top: 50px;
    right: 110px;
}


/* Float X Swing Animation */

.float-bob-x {
    animation: floatBobX 3s linear infinite;
}


/* Keyframes */

@keyframes floatBobX {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(25px);
    }
    100% {
        transform: translateX(0px);
    }
}

a.btn.btn-services {
    display: flex;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: black;
    height: fit-content;
    margin-top: 60px;
}

.mission-right {
    background: linear-gradient(180deg, #1e2226, #15181b);
    color: #fff;
    padding: 20px 30px;
    margin-left: -49px;
    margin-right: -96px;
}

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


/* SECTION */

.equipment-section {
    padding: 90px 0;
}


/* LEFT IMAGE */

.image-box {
    background: #fff;
    padding: 20px;
}

.img-main {
    width: 100%;
    border-radius: 4px;
}

.img-main {
    animation: imgFloat 6s ease-in-out infinite;
}

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

.impact-card {
    animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}


/* SECTION WRAPPER (recommended to add) */

.equipment-section {
    padding: 80px 0;
}


/* TITLE */

.equipment-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 23px;
    margin-top: -30vh;
}


/* TEXT */

.equipment-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    /* balanced spacing */
    margin-top: 0;
    /* removed incorrect push-down */
}


/* IMAGE + LIST WRAPPER */

.image-list-wrap {
    display: flex;
    align-items: flex-start;
    /* top aligned */
    gap: 40px;
}


/* MINI IMAGE */

.mini-image img {
    width: 240px;
    border-radius: 4px;
    display: block;
}


/* LIST */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* LIST ITEM */

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
}


/* CHECK ICON */

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    /* perfect visual alignment */
    color: #be972c;
    font-weight: bold;
    font-size: 16px;
}


/* TEXT */

.customer-text {
    font-size: 19px;
    font-weight: 700;
    padding-left: 6px;
    text-wrap-mode: nowrap;
}

.customer-text span {
    color: #c9a84a;
}


/* CTA ROW */

.cta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: max-content;
}


/* BUTTON */

.about-btn {
    background: #ff5a1f;
    color: #fff;
    padding: 20px 26px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    gap: 90px;
}

.about-btn span {
    margin-left: 8px;
}


/* AVATARS */

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.count {
    width: 42px;
    height: 42px;
    background: #0f2a1d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-left: -10px;
}

.client-logos {
    padding: 60px 0;
    background: #ffffff;
}

.client-logos img {
    max-width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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


/* Video Section */

.video-section {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url("https://wowtheme7.com/tf/buildnow/assets/img/home-1/video.jpg");
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* Dark Overlay */

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


/* Content */

.video-content {
    position: relative;
    z-index: 2;
}


/* Play Button */

.play-btn {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #be9932;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.play-btn:hover {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #fff;
    transform: scale(1.1);
}


/* Scroll To Top */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: #ff6a00;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    background: #000;
}

.client-logos {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}


/* Slider container */

.logo-slider {
    width: 100%;
    overflow: hidden;
}


/* Track (Swiper wrapper equivalent) */

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: slide 25s linear infinite;
}


/* Logo item (Swiper slide equivalent) */

.logo-item {
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 140px;
    opacity: 0.6;
    transition: 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* Animation */

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* SECTION */

.who-we-are-section {
    padding: 0px 80px;
    background: #fff;
}


/* LEFT PANEL */

.who-left {
    background: #f7661e;
    color: #fff;
    padding: 90px 70px;
    position: relative;
    min-height: 100%;
}

.tag {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.who-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
}

.read-more {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.read-more i {
    background: #fff;
    color: #f7661e;
    padding: 10px;
}


/* IMAGE CORNER */

.corner-image {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 55%;
}

.corner-image img {
    width: 100%;
    display: block;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


/* RIGHT PANEL */

.who-right {
    padding: 110px 80px;
}

.who-right h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 600px;
}


/* SERVICES */

.service-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}


/* STATS */

.stat-box h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 34px;
    font-weight: 700;
}

.stat-icon {
    width: 36px;
    height: 36px;
}


/* SCROLL TOP */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #f7661e;
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    display: none;
}


/* ICON BASE */

.stat-box i {
    font-size: 38px;
    color: #f7661e;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* HOVER SHAKE */

.stat-box i:hover {
    animation: iconShake 0.6s ease-in-out;
}


/* SHAKE KEYFRAMES */

@keyframes iconShake {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-4px);
    }
    30% {
        transform: translateX(4px);
    }
    45% {
        transform: translateX(-4px);
    }
    60% {
        transform: translateX(4px);
    }
    75% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}

.icon-animate {
    animation: iconShake 0.6s ease-in-out;
}


/* RESET */

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


/* 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: #ff5b1f;
    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: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
}

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

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


/* INDICATORS */

.carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: #ff5a1f;
    opacity: 0.3;
}

.carousel-indicators .active {
    opacity: 1;
}

.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));
}


/* SCROLL TOP */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #ff5a1f;
    color: #fff;
    border: none;
    display: none;
}

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


/* SECTION */

.stats-section {
    padding: 80px 0;
    background: #fff;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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


/* icon image */

.stat-icon {
    width: 93px;
    height: 40px;
    margin-bottom: -10px;
    transition: transform 0.3s;
}


/* shake on hover */

.stat-box:hover .stat-icon {
    animation: iconShake 0.6s ease-in-out;
}

.stat-icon1 {
    animation: iconShake 3s ease-in-out infinite;
    transform-origin: center;
    margin-top: 35px;
    width: 47px;
    height: 44px;
}

.stat-icon {
    animation: iconShake 3s ease-in-out infinite;
    transform-origin: center;
    margin-top: 20px;
}


/* keyframes */

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


/* number */

.stat-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}


/* text */


/* .stat-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
} */


/* TEXT */

.stat-box p {
    font-size: 24px;
    color: #6c7aa1;
    margin-right: 62px;
}


/* SHAKE ANIMATION */

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

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

.team-section {
    position: relative;
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
}


/* ===== Shape Image ===== */

.left-shape {
    position: absolute;
    top: -48px;
    left: 17px;
    z-index: 0;
    opacity: 1.15;
    animation: floatShape 6s ease-in-out infinite;
}

.left-shape img {
    width: 80px;
}


/* Floating animation */

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* base animation */

.team-card {
    opacity: 0;
    animation: teamUnfold 0.9s ease forwards;
}


/* left side cards */

.team-card:nth-child(1),
.team-card:nth-child(2) {
    transform: translateX(-80px) scale(0.7);
}


/* right side cards */

.team-card:nth-child(3),
.team-card:nth-child(4) {
    transform: translateX(80px) scale(0.7);
}


/* stagger delay */

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.25s;
}

.team-card:nth-child(3) {
    animation-delay: 0.4s;
}

.team-card:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes teamUnfold {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.stat-icon {
    animation: iconShake 3s ease-in-out infinite;
    transform-origin: center;
    width: auto;
    height: 60px;
}

.stat-icon-money {
    animation: iconShake 3s ease-in-out infinite;
    transform-origin: center;
    width: 80px;
    height: 68px;
    margin-top: 20px;
}

@keyframes iconShake {
    0% {
        transform: rotate(0);
    }
    5% {
        transform: rotate(-8deg);
    }
    10% {
        transform: rotate(8deg);
    }
    15% {
        transform: rotate(-6deg);
    }
    20% {
        transform: rotate(6deg);
    }
    25% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

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

.team-label .dot {
    width: 8px;
    height: 8px;
    background-color: #c9a84a;
    display: inline-block;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

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

.team-section {
    background: #fdfaf3;
    padding: 80px 0;
}

.team-card {
    text-align: left;
}

.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}


/* Social Icons */

.social-icons {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.social-icons a {
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff5a1f;
    color: #fff;
}

.team-card h5 {
    margin-top: 15px;
    font-weight: 600;
}

.team-card p {
    color: #777;
    font-size: 14px;
}


/* Default hide social icons */

.img-box {
    position: relative;
    overflow: hidden;
}

.social-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: all 0.35s ease;
}


/* Social icon animation */

.social-icons a {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.3s ease;
}


/* Hover on arrow → show social icons */

.arrow-icon:hover~.social-icons,
.img-box:hover .social-icons {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* Animate icons on hover */

.img-box:hover .social-icons a {
    transform: translateY(0);
    opacity: 1;
}

.img-box:hover .social-icons a:nth-child(1) {
    transition-delay: .05s;
}

.img-box:hover .social-icons a:nth-child(2) {
    transition-delay: .1s;
}

.img-box:hover .social-icons a:nth-child(3) {
    transition-delay: .15s;
}

.img-box:hover .social-icons a:nth-child(4) {
    transition-delay: .2s;
}


/* Section */

.testimonial-section {
    padding: 100px 0;
    background: #fff;
}


/* Image */

.testimonial-img img {
    width: 100%;
    border-radius: 6px;
    margin-top: 60px;
}

.testimonial-img img {
    animation: testFloat 6s ease-in-out infinite;
}

@keyframes testFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}


/* Text Slider */

.text-slider {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.slide-text {
    height: 150px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}


/* Tag */

.tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff5a1f;
    display: inline-block;
    margin-bottom: 15px;
}


/* Right Content */

.testimonial-section h3 {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 800;
    margin-bottom: 25px;
}


/* Client */

.client-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-box img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.client-box h5 {
    margin: 0;
    font-weight: 700;
}

.client-box span {
    font-size: 14px;
    color: #777;
}

.tag {
    color: #cfa634;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.client-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client-box img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}


/* .carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: #ff5e14 !important;
  top: auto;
  bottom: -60px;
  opacity: 1;
} */

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 50px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5c84c !important;
    opacity: 1;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    margin-right: -67vh;
    margin-left: 100vh;
}


/* .carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 50px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
} */

.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-right: 69px;
}


/* Scroll Top */

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff5a1f;
    border: none;
    width: 45px;
    height: 45px;
    color: #fff;
    display: none;
}

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

.outline-heading-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.scrolling-wrap {
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.outline-heading-section {
    padding: 40px 0;
    background: #fff;
}

.scroll-track {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.outline-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* Icon Circle */

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.icon-circle i {
    font-size: 42px;
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .outline-heading {
        font-size: 44px;
    }
    .icon-circle {
        width: 55px;
        height: 55px;
    }
    .icon-circle img {
        width: 24px;
    }
}


/* Scroll Top */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #ff5a1f;
    color: #fff;
    border: none;
    display: none;
}

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

.blog-section {
    padding: 90px 0;
    text-align: center;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ad8004;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 25px;
}

.blog-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}


/* 🔥 SHAKE ANIMATION */

.blog-card:hover img {
    animation: shake 0.6s;
}

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

.date-badge {
    position: absolute;
    top: 30px;
    left: -15px;
    background: #fff;
    padding: 12px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    font-weight: 700;
    text-align: left;
    z-index: 10;
}

.date-badge h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
}

.date-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    display: block;
}

@media (max-width: 991px) {
    .blog-card img {
        height: 300px;
    }
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #fff;
    margin: 0;
}

.blog-info {
    padding: 80px 0 50px;
}

.meta {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.meta i {
    color: #999;
    margin-right: 6px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    margin-right: 73px;
}

.learn-more {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: 0.3s;
    margin-right: 517px;
}

.learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #facb48;
    transition: 0.3s;
}

.learn-more:hover {
    color: #facb48;
}

.learn-more:hover::after {
    width: 100%;
}

.learn-more i {
    transition: 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.instagram-title {
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: -21px;
    color: #000000;
}

.instagram-title span {
    color: #000000;
}

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

body {
    margin: 0;
    background: #fff;
    font-family: "Segoe UI", sans-serif;
}

.gallery-section {
    padding: 40px 10px 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Scroll to top */

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff5a1f;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 4px;
    display: none;
}

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

.contact-section {
    background: url("https://wowtheme7.com/tf/buildnow/assets/img/home-1/contact-bg.jpg") center/cover no-repeat;
    padding: 100px 0 120px;
    position: relative;
    gap: 90px;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

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

.contact-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0 50px;
}

.form-box {
    background: #fff;
    border-radius: 6px;
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

.form-control {
    height: 55px;
    border-radius: 4px;
    background: #f7f7f7;
    border: 1px solid #eee;
}

textarea.form-control {
    height: 140px;
    resize: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ff5a1f;
}

.submit-btn {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 4px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #111;
    color: #fff;
}


/* Scroll to top */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #ff5a1f;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .contact-content h1 {
        font-size: 32px;
    }
}

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

.social-footer {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    padding: 45px 0;
}

.social-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.social-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.social-links i {
    font-size: 18px;
}

.social-links a:hover {
    opacity: 0.75;
    transform: translateY(-3px);
}


/* Scroll to top */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #ff5a1f;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #fffefe;
}

.footer {
    background: linear-gradient(135deg, #020202, #000000);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-logo h4 {
    margin: 0;
    font-weight: 700;
}

.footer p {
    color: #aaa;
    margin-top: 0px;
    line-height: 1.7;
}

.footer-contact {
    margin-top: 25px;
}

.footer-contact h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-contact span {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.newsletter h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 40px;
}

.newsletter-form input {
    flex: 1;
    height: 52px;
    border: none;
    padding: 0 15px;
}

.newsletter-form button {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    border: none;
    color: #000;
    padding: 0 28px;
    font-weight: 600;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 18px;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #facb4a;
}

.map iframe {
    width: 100%;
    height: 230px;
    border-radius: 6px;
}


/* Scroll top */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #ff5a1f;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        height: 50px;
    }
    .newsletter-form button {
        margin-top: 10px;
    }
}


/* Bottom Bar */

.bottom-bar {
    background: linear-gradient(135deg, #FBE7A1, #f1c95b, #C9A84A);
    padding: 18px 0;
    color: #000;
    font-size: 14px;
}

.scroll-gallery {
    background: #f3eded;
    padding: 40px 0;
    overflow: hidden;
}

.outline-heading-section {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.scrolling-wrap {
    width: 100%;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLeft 18s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.outline-heading {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 25px;
    color: transparent;
    -webkit-text-stroke: 1.5px #0f0f0f;
    text-transform: capitalize;
    white-space: nowrap;
}

.row-scroll {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
}

.scroll-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.scroll-track img {
    width: 110px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}


/* Left to Right */

.left-scroll .scroll-track {
    animation: scrollLeft 25s linear infinite;
}


/* Right to Left */

.right-scroll .scroll-track {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.project-slider {
    overflow: hidden;
    width: 100%;
}

.project-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.project-slide {
    min-width: 100%;
    position: relative;
}

.project-slide img {
    width: 100%;
    height: 500px;
    object-fit: scale-down;
}


/* FLOAT CARD */

.project-info-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 22px 26px;
    width: 360px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: 0.4s;
}

.project-slide.active .project-info-card {
    opacity: 1;
    bottom: 50px;
}

.project-info-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.project-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.orange-panel {
    background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a);
    padding: 70px 50px;
    color: #000;
    position: relative;
    overflow: hidden;
}

.orange-panel h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0 30px;
    margin-left: 25px;
}

.badge-text {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-left: 25px;
    color: #000;
}


/* .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 25px;
} */


/* .read-more-btn:hover {
  background: #000;
  color: #fff;
} */

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    margin-left: 25px;
}


/* square arrow box */

.read-more-btn .arrow-box {
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #d6a829;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}


/* hover effect */

.read-more-btn:hover .arrow-box {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.building-img {
    width: 64%;
    position: absolute;
    bottom: 0;
    right: -45px;
}


/* RIGHT SIDE */

.right-content {
    background: #faf7f1;
    padding: 70px 70px;
    position: relative;
}

.top-text {
    max-width: 500px;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 20px;
}

.crane-img {
    position: absolute;
    right: 80px;
    top: 147px;
    opacity: 0;
    animation: craneEnter 1.2s ease-out forwards, craneFloat 6s ease-in-out 1.2s infinite;
}

@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);
    }
}

.stats-row {
    display: flex;
    gap: 60px;
    margin-top: 120px;
    margin-left: 24px;
    width: -webkit-fill-available;
}

.stat-box span {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 20px;
    margin-bottom: 20px;
    max-width: 302px;
    width: 100%;
    color: #000;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-box i {
    color: #ff5a1f;
}

.col-lg-5.orange-panel {
    height: 85vh;
    background-color: #ebb520;
    margin-top: -3vh;
}

.feature-impact-content-style-1 .counter-items .cont-item h6 {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 20px;
    margin-bottom: 20px;
    max-width: 302px;
    width: 100%;
    color: #5c6672;
}

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

.contact-icon {
    width: 60px;
}


/* Overlay stats card */

.impact-card {
    position: relative;
    left: -63px;
    top: -50vh;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 35px 45px;
    width: 212px;
    z-index: 2;
}

.impact-card h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}

.impact-card p {
    margin-top: 10px;
    letter-spacing: 1px;
    font-size: 14px;
}

span.dual-box {
    display: flex;
    gap: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: #ffcb3b;
    font-size: 16px;
    margin-top: 6px;
}

.contact-item span {
    line-height: 1.6;
    color: #fff;
}


/* ==================== 
   HOME PAGE - COMPLETE RESPONSIVE MEDIA QUERIES
   ==================== */


/* Large Desktop (max-width: 1400px) */

@media screen and (max-width: 1400px) {
    /* Header */
    .header {
        padding: 15px 30px;
    }
    /* Hero Section */
    .hero-left h2 {
        font-size: 40px;
    }
    /* About Section */
    .about-title {
        font-size: 42px;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 72px;
    }
    /* Who We Are Section */
    .orange-panel h1 {
        font-size: 42px;
    }
}


/* Desktop (max-width: 1200px) */

@media screen and (max-width: 1200px) {
    /* Hero Section */
    .hero-left {
        padding: 60px 40px;
    }
    .hero-left h2 {
        font-size: 36px;
    }
    /* About Section */
    .about-section {
        padding: 60px 40px;
    }
    .about-title {
        font-size: 38px;
    }
    .mission-right {
        margin-left: 0;
        margin-right: 0;
    }
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Equipment Section */
    .equipment-title {
        font-size: 32px;
        margin-top: 0;
    }
    /* Who We Are Section */
    .orange-panel {
        padding: 50px 30px;
    }
    .orange-panel h1 {
        font-size: 36px;
    }
    .right-content {
        padding: 50px 40px;
    }
    .stats-row {
        gap: 30px;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 60px;
    }
}


/* Tablet View (max-width: 1024px) */

@media screen and (max-width: 1024px) {
    /* Header */
    .header {
        padding: 15px 30px;
    }
    .nav {
        gap: 15px;
    }
    .nav a {
        font-size: 13px;
        margin: 0 8px;
    }
    .logo-icon1 {
        width: 120px;
    }
    .quote-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
    .menu-icon {
        padding: 14px 16px;
    }
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 600px;
    }
    .hero-left {
        width: 45%;
        padding: 50px 30px;
    }
    .hero-left h2 {
        font-size: 34px;
    }
    .service-btn {
        font-size: 18px;
        padding: 12px 20px;
    }
    .exp-outer {
        gap: 15px;
    }
    .experience-circle {
        width: 130px;
        height: 110px;
    }
    .center-number {
        font-size: 48px;
    }
    .stats h2 {
        font-size: 36px;
    }
    /* Contact Bar */
    .contact-bar {
        padding: 30px 35px;
        gap: 40px;
    }
    .contact-item small {
        font-size: 16px;
    }
    .contact-item strong {
        font-size: 16px;
    }
    /* About Section */
    .about-section {
        padding: 50px 30px;
    }
    .about-bann {
        margin-top: 0;
        margin-left: 0;
    }
    .about-title {
        font-size: 36px;
    }
    .mission-right {
        padding: 30px;
    }
    .stats-box {
        gap: 15px;
    }
    .stat-number {
        font-size: 42px;
    }
    /* Services Hero */
    .services-hero {
        padding: 70px 0 90px;
    }
    .hero-title {
        font-size: 42px;
    }
    .service-card {
        height: 380px;
    }
    .service-content h3 {
        font-size: 22px;
    }
    /* Impacts Section */
    .impacts-title {
        font-size: 42px;
    }
    .top-shape {
        right: 50px;
    }
    /* Equipment Section */
    .equipment-section {
        padding: 60px 0;
    }
    .equipment-title {
        font-size: 30px;
    }
    .image-list-wrap {
        gap: 30px;
    }
    .mini-image img {
        width: 200px;
    }
    .cta-row {
        flex-wrap: wrap;
    }
    .customer-text {
        font-size: 16px;
    }
    /* Who We Are Section */
    .who-we-are-section {
        padding: 0 40px;
    }
    .orange-panel h1 {
        font-size: 34px;
        margin-left: 15px;
    }
    .badge-text {
        margin-left: 15px;
    }
    .read-more-btn {
        margin-left: 15px;
    }
    .building-img {
        width: 55%;
        right: -30px;
    }
    .right-content {
        padding: 50px 30px;
    }
    .top-text {
        font-size: 26px;
        margin-left: 0;
    }
    .crane-img {
        right: 40px;
        top: 120px;
        width: 120px;
    }
    .stats-row {
        margin-top: 80px;
    }
    .stat-box h2 {
        font-size: 36px;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 56px;
    }
    .project-3d-slider {
        padding: 80px 0;
    }
    .project-card {
        width: 260px;
        height: 380px;
    }
    .project-card img {
        height: 260px;
    }
    /* Stats Section */
    .stats-section {
        padding: 60px 0;
    }
    .stat-box p {
        font-size: 20px;
    }
    /* Team Section */
    .team-section {
        padding: 70px 0;
    }
    .team-title {
        font-size: 36px;
    }
    .team-card .img-box img {
        height: 320px;
    }
    /* Testimonial Section */
    .testimonial-section {
        padding: 70px 0;
    }
    .carousel-control-next,
    .carousel-control-prev {
        margin-right: -40vh;
        margin-left: 60vh;
    }
    /* Outline Heading */
    .outline-heading {
        font-size: 64px;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    .icon-circle i {
        font-size: 32px;
    }
    /* Blog Section */
    .blog-section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 42px;
    }
    .blog-card img {
        height: 350px;
    }
    .blog-title {
        font-size: 20px;
        margin-right: 0;
    }
    .learn-more {
        margin-right: 0;
    }
    .instagram-title {
        font-size: 56px;
    }
    /* Contact Section */
    .contact-section {
        padding: 80px 0 100px;
    }
    .contact-content h1 {
        font-size: 42px;
    }
    .form-box {
        padding: 30px;
    }
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    .footer-logo img {
        width: 200px;
    }
    .newsletter-form {
        flex-wrap: wrap;
    }
    .newsletter-form input,
    .newsletter-form button {
        height: 48px;
    }
    .map iframe {
        height: 200px;
    }
}


/* Tablet Portrait (max-width: 992px) */

@media screen and (max-width: 992px) {
    /* Hero Section */
    .hero {
        flex-direction: column;
    }
    .hero-left,
    .hero-right {
        width: 100%;
    }
    .hero-left {
        padding: 60px 30px;
        text-align: center;
    }
    .hero-left h2 {
        font-size: 38px;
        text-align: center;
    }
    .service-btn {
        margin: 0 auto;
    }
    .exp-outer {
        justify-content: center;
    }
    .hero-right {
        height: 450px;
    }
    /* Contact Bar */
    .contact-bar {
        position: relative;
        bottom: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* About Section */
    .about-section .col-lg-6 {
        width: 100%;
    }
    .about-bann {
        text-align: center;
    }
    .about-bann img {
        max-width: 80%;
        margin: 0 auto;
    }
    .about-details {
        text-align: center;
        padding: 40px 20px;
    }
    .section-tag {
        display: inline-block;
    }
    .about-text {
        margin: 0 auto;
    }
    .mission-right {
        text-align: center;
    }
    .mission-tabs {
        justify-content: center;
    }
    .stats-box {
        justify-content: center;
    }
    .stat-title {
        margin-left: 0;
    }
    /* Mission Section */
    .mission-section .col-lg-6 {
        width: 100%;
        margin-top: -300px;
    }
    .mission-left {
        height: 450px;
    }
    .ceo-box {
        bottom: 30px;
        left: 30px;
    }
    /* Services Hero */
    .services-hero .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-title {
        font-size: 36px;
        margin: 20px 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Impacts Section */
    .impacts-section .d-flex {
        flex-direction: column;
    }
    .impacts-title {
        font-size: 36px;
    }
    .top-shape {
        position: relative;
        top: -56px;
        right: 0;
        margin-top: 20px;
    }
    /* Equipment Section */
    .equipment-section .col-lg-6 {
        width: 100%;
    }
    .equipment-title {
        text-align: center;
        margin-top: 30px;
    }
    .equipment-text {
        text-align: center;
    }
    .image-list-wrap {
        justify-content: center;
    }
    .cta-row {
        justify-content: center;
        width: 100%;
    }
    /* Who We Are Section */
    .who-we-are-section .col-lg-5,
    .who-we-are-section .col-lg-7 {
        width: 100%;
    }
    .orange-panel {
        height: auto;
        text-align: center;
    }
    .orange-panel h1 {
        margin-left: 0;
    }
    .badge-text {
        margin-left: 0;
    }
    .read-more-btn {
        margin-left: 0;
        justify-content: center;
    }
    .building-img {
        position: relative;
        width: 85%;
        right: -25px;
        margin: 31px auto 0;
        top: 237px;
    }
    .right-content {
        text-align: center;
    }
    .top-text {
        margin-left: 0;
        max-width: 100%;
    }
    .crane-img {
        display: none;
    }
    .stats-row {
        justify-content: center;
        margin-left: 0;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 48px;
    }
    /* Team Section */
    .team-section .col-lg-3 {
        width: 50%;
    }
    /* Testimonial Section */
    .testimonial-section .col-lg-4 {
        width: 100%;
        margin-right: 0;
    }
    .testimonial-img {
        margin-bottom: 30px;
        text-align: center;
    }
    .carousel-control-next,
    .carousel-control-prev {
        margin: 0;
        position: relative;
        display: inline-block;
    }
    #testimonialSlider {
        text-align: center;
    }
    /* Blog Section */
    .blog-section .col-lg-6 {
        width: 100%;
    }
    .blog-card {
        max-width: 600px;
        margin: 0 auto;
    }
    /* Footer */
    .footer .col-lg-4,
    .footer .col-lg-7 {
        width: 100%;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer p {
        text-align: center;
    }
    .footer-contact {
        align-items: center;
    }
    .newsletter {
        text-align: center;
    }
}


/* Tablet (max-width: 768px) */

@media screen and (max-width: 768px) {
    /* Header */
    .header {
        flex-direction: column;
        padding: 15px 20px;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        margin: 10px 0;
    }
    .header-icons {
        justify-content: center;
    }
    /* Hero Section */
    .hero-left {
        padding: 40px 20px;
    }
    .hero-left h2 {
        font-size: 32px;
    }
    .exp-outer {
        flex-direction: column;
        align-items: center;
    }
    .experience-circle {
        width: 150px;
        height: 150px;
    }
    .stats {
        margin-left: 0;
        text-align: center;
    }
    /* Contact Bar */
    .contact-bar {
        flex-direction: column;
        align-items: center;
        padding: 25px 20px;
    }
    /* About Section */
    .about-bann img {
        max-width: 100%;
    }
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        max-width: 450px;
        margin: 0 auto;
    }
    .service-content {
        padding: 15px;
    }
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .service-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    /* Impacts Section */
    .impacts-title {
        font-size: 32px;
    }
    /* Equipment Section */
    .image-list-wrap {
        flex-direction: column;
        align-items: center;
    }
    .mini-image img {
        width: 250px;
    }
    .feature-list {
        text-align: center;
    }
    .feature-list li {
        padding-left: 0;
    }
    .feature-list li::before {
        display: none;
    }
    .cta-row {
        flex-direction: column;
    }
    .avatars {
        justify-content: center;
    }
    .customer-text {
        white-space: normal;
        text-align: center;
    }
    /* Who We Are Section */
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .stat-box {
        text-align: center;
    }
    .stat-box span {
        margin: 0 auto;
    }
    .dual-box {
        justify-content: center;
    }
    /* Recent Projects */
    .recent-title {
        font-size: 42px;
    }
    /* Project 3D Slider */
    .project-3d-slider {
        padding: 50px 0;
    }
    .construction-swiper {
        padding: 30px 0;
    }
    .project-card {
        width: 240px;
        height: 340px;
    }
    .project-card img {
        height: 240px;
    }
    .project-card h4 {
        font-size: 16px;
    }
    .project-card p {
        font-size: 13px;
    }
    /* Stats Section */
    .stats-section .col-md-3 {
        width: 50%;
    }
    /* Team Section */
    .team-section .col-lg-3 {
        width: 100%;
    }
    .team-card {
        max-width: 350px;
        margin: 0 auto;
    }
    /* Outline Heading */
    .outline-heading {
        font-size: 48px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    .icon-circle i {
        font-size: 28px;
    }
    /* Blog Section */
    .blog-card img {
        height: 300px;
    }
    .instagram-title {
        font-size: 42px;
    }
    /* Contact Section */
    .contact-content h1 {
        font-size: 36px;
    }
    .form-box {
        padding: 25px;
    }
    /* Social Footer */
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    /* Footer */
    .footer .col-md-4 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .bottom-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* Mobile View (max-width: 480px) */

@media screen and (max-width: 480px) {
    /* Header */
    .header {
        padding: 10px 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: 10px 0;
    }
    .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: -140px;
        left: auto;
        top: -86px;
        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: -90px;
        right: -150px;
    }
    .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: -180px;
        /* 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 Section */
    .hero-left {
        padding: 30px 15px;
    }
    .hero-left h2 {
        font-size: 28px;
    }
    .service-btn {
        font-size: 15px;
        padding: 10px 18px;
    }
    .hero-right {
        height: 300px;
    }
    .experience-circle {
        width: 120px;
        height: 96px;
    }
    .center-number {
        font-size: 36px;
    }
    .circle-text text {
        font-size: 17px;
    }
    .stats h2 {
        font-size: 40px;
        margin-left: 10px;
        margin-bottom: 82px;
    }
    .supply-text {
        font-size: 14px;
        margin-top: 40px;
    }
    .stat-icon {
        width: 85px;
        margin-bottom: 90px;
    }
    /* Contact Bar Container */
    .contact-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 25px 15px;
        gap: 25px;
        /* Increased gap between contact items for better separation */
        width: 100%;
        background: #f8f9fa;
    }
    /* Contact Item */
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 280px;
        /* Limit width for better appearance */
        margin: 0 auto;
        padding: 10px 0;
        gap: 8px;
        /* Gap between icon and text */
    }
    /* Contact Icon */
    .contact-icon {
        width: 45px;
        /* Slightly larger for better visibility */
        height: auto;
        margin: 0 auto 8px;
        /* Center horizontally with proper bottom margin */
        display: block;
    }
    /* Contact Text Container */
    .contact-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 2px;
        /* Minimal gap between small and strong text */
    }
    /* Small Text (label) */
    .contact-item small {
        font-size: 13px;
        color: #777;
        display: block;
        margin-bottom: 0;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }
    /* Strong Text (value) */
    .contact-item strong {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        display: block;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }
    /* Optional: Add subtle separator between items */
    .contact-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }
    /* Top Scrolling Text */
    .top-scroll-text {
        padding: 30px 0;
        font-size: 16px;
    }
    /* About Section */
    .about-section {
        padding: 30px 15px;
    }
    .about-title {
        font-size: 28px;
    }
    .about-text {
        font-size: 14px;
    }
    /* Button Container */
    a.btn.btn-orange.mt-4 {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        /* Space between text and arrow */
        font-size: 15px !important;
        height: 44px !important;
        padding: 0 22px !important;
        /* Removed vertical padding, added horizontal */
        line-height: 44px !important;
        /* Match height for vertical centering */
        white-space: nowrap !important;
        /* Prevent text wrapping */
        text-decoration: none !important;
        border-radius: 6px !important;
        background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a) !important;
        color: #000 !important;
        font-weight: 600 !important;
        width: auto !important;
        min-width: 200px !important;
        max-width: 280px !important;
        margin: 15px auto 20px !important;
        /* Center the button */
    }
    /* Arrow Styling */
    a.btn.btn-orange.mt-4 .arrow {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        line-height: 1 !important;
        margin-left: 0 !important;
        /* Remove any left margin */
        transform: translateY(0) !important;
        /* Reset any transform */
        transition: transform 0.3s ease !important;
    }
    /* Hover effect - subtle arrow movement */
    a.btn.btn-orange.mt-4:hover .arrow {
        transform: translate(3px, -2px) !important;
    }
    .mission-right {
        padding: 20px 15px;
        margin: 20px 10px 0;
    }
    .mission-tabs {
        gap: 20px;
    }
    .mission-tabs .tab {
        font-size: 14px;
    }
    .tab-content {
        font-size: 14px;
    }
    .stat-title {
        font-size: 12px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-icon2 {
        width: 83px;
        margin-bottom: 31px;
        height: 56px;
    }
    /* Mission Section - Fixed spacing */
    .mission-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .mission-left {
        height: 350px !important;
        /* Reduced height */
        margin-bottom: 0 !important;
        position: relative !important;
    }
    .ceo-box {
        width: 240px;
        padding: 8px 15px;
        left: 50% !important;
        /* Center the box */
        transform: translateX(-50%) !important;
        /* Center horizontally */
        bottom: 20px !important;
        /* Position from bottom */
        margin-bottom: 45px;
        /* Remove bottom margin */
        top: auto !important;
        /* Reset top positioning */
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .ceo-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .ceo-sign {
        font-size: 18px;
        font-family: cursive;
        color: #b98801;
        line-height: 1.2;
        white-space: nowrap;
    }
    .ceo-title {
        font-size: 12px;
        color: #777;
        line-height: 1.2;
        white-space: nowrap;
    }
    /* Services Hero Section */
    .services-hero {
        padding: 40px 15px 30px !important;
        margin: 0 !important;
        background: #f6f4ec;
        width: 100%;
        display: block !important;
        visibility: visible !important;
    }
    /* Services Hero Flex Container */
    .services-hero .d-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    /* Section Label */
    .section-label {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #111 !important;
        letter-spacing: 1px !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    .section-label .dot {
        width: 6px !important;
        height: 6px !important;
        background: #ff5a1f !important;
        display: inline-block !important;
        border-radius: 50% !important;
    }
    /* Hero Title */
    .hero-title {
        font-size: 24px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #111 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto 5px !important;
        padding: 0 10px !important;
        display: block !important;
        visibility: visible !important;
    }
    /* Services Button */
    a.btn.btn-services {
        font-size: 14px !important;
        padding: 12px 24px !important;
        margin: 5px 0 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a) !important;
        color: #000 !important;
        border-radius: 4px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border: none !important;
        cursor: pointer !important;
        width: auto !important;
        min-width: 180px !important;
    }
    a.btn.btn-services .arrow {
        font-size: 16px !important;
        line-height: 1 !important;
    }
    /* Services Section Container */
    .services-section {
        padding: 30px 15px 40px !important;
        background: #fff !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }
    /* Services Grid */
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: transparent !important;
    }
    /* Service Card */
    .service-card {
        position: relative !important;
        height: 340px !important;
        min-height: 340px !important;
        background-size: cover !important;
        background-position: center !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        cursor: pointer !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }
    /* Service Card Background Layer */
    .service-card::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background-image: inherit !important;
        background-size: cover !important;
        background-position: center !important;
        transition: transform 0.6s ease !important;
        z-index: 0 !important;
    }
    /* Overlay */
    .service-card .overlay {
        position: absolute !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.55) !important;
        z-index: 1 !important;
    }
    /* Service Content */
    .service-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 25px 20px !important;
        color: #fff !important;
        z-index: 2 !important;
        transform: translateY(0) !important;
        transition: transform 0.35s ease !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    /* Icon Box */
    .icon-box {
        width: 55px !important;
        height: 55px !important;
        background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 15px !important;
        font-size: 26px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
    }
    /* Service Title */
    .service-content h3 {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin: 0 0 10px !important;
        color: #fff !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100% !important;
    }
    /* Service Description */
    .service-content p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #eaeaea !important;
        margin: 0 0 15px !important;
        text-align: center !important;
        width: 100% !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    /* Arrow Button */
    .arrow-btn {
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.25) !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 22px !important;
        color: #fff !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }
    /* Hover effect for cards */
    .service-card:hover .service-content {
        transform: translateY(0) !important;
    }
    .service-card:hover .arrow-btn {
        background: linear-gradient(135deg, #fbe7a1, #f1c95b, #c9a84a) !important;
        color: #000 !important;
    }
    /* Impacts Section */
    .impacts-section {
        padding: 50px 0 40px;
    }
    .impacts-title {
        font-size: 26px;
    }
    /* Equipment Section */
    .equipment-title {
        font-size: 24px;
    }
    .equipment-text {
        font-size: 14px;
    }
    .mini-image img {
        width: 200px;
    }
    .feature-list li {
        font-size: 13px;
    }
    .customer-text {
        font-size: 15px;
    }
    .about-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
    .impact-card {
        left: -23px;
        top: 2vh;
        padding: 21px 36px;
        width: 180px;
    }
    .impact-card h2 {
        font-size: 36px;
    }
    .impact-card p {
        font-size: 12px;
    }
    /* Client Logos */
    .logo-item {
        min-width: 160px;
    }
    .logo-item img {
        max-width: 100px;
    }
    /* Video Section */
    .video-section {
        height: 300px;
    }
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    /* Who We Are Section */
    .orange-panel h1 {
        font-size: 28px;
    }
    .badge-text {
        font-size: 12px;
    }
    .read-more-btn {
        font-size: 13px;
    }
    .read-more-btn .arrow-box {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    /* Top Text */
    .top-text {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        margin: 0 0 30px !important;
        color: #000 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    /* Stats Row */
    .stats-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        margin: 20px 0 0 !important;
        width: 100% !important;
    }
    /* Stat Box */
    .stat-box {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    /* Stat Box Span (title) */
    .stat-box span:first-child {
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        color: #666 !important;
        text-transform: uppercase !important;
        display: block !important;
        margin-bottom: 15px !important;
        border-bottom: 1px solid #d8d8d8 !important;
        padding-bottom: 10px !important;
        width: 100% !important;
        text-align: center !important;
    }
    /* Dual Box Container - FIXED */
    .dual-box {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    /* Stat Icons - FIXED CENTERING */
    .stat-icon1,
    .stat-icon-money {
        width: 45px !important;
        height: 45px !important;
        display: block !important;
        margin: 0 !important;
        animation: iconShake 3s ease-in-out infinite !important;
        transform-origin: center !important;
        flex-shrink: 0 !important;
    }
    .stat-icon1 img,
    .stat-icon-money img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
    /* Stat Number - FIXED */
    .stat-box h2 {
        font-size: 32px !important;
        font-weight: 800 !important;
        color: #000 !important;
        margin: 0 !important;
        line-height: 1 !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }
    /* Hide Crane Image on Mobile */
    .crane-img {
        display: none !important;
    }
    /* Animation for Icons */
    @keyframes iconShake {
        0% {
            transform: rotate(0);
        }
        5% {
            transform: rotate(-8deg);
        }
        10% {
            transform: rotate(8deg);
        }
        15% {
            transform: rotate(-6deg);
        }
        20% {
            transform: rotate(6deg);
        }
        25% {
            transform: rotate(0);
        }
        100% {
            transform: rotate(0);
        }
    }
    /* Stats Section Container */
    .stats-section {
        padding: 40px 15px 30px !important;
        background: #fff;
        width: 100%;
    }
    /* Row Container */
    .stats-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        width: 100%;
        margin: 0 !important;
    }
    /* Column - Full width */
    .stats-section .col-md-3 {
        width: 100% !important;
        max-width: 320px !important;
        padding: 0 !important;
        margin: 0 auto !important;
        flex: 0 0 auto !important;
    }
    /* Stat Box */
    .stat-box {
        background: #fff !important;
        padding: 25px 15px !important;
        border-radius: 12px !important;
        text-align: center !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
        transition: transform 0.3s ease !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
    }
    /* Stat Box Hover */
    .stat-box:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1) !important;
    }
    /* Stat Icon - FIXED SIZING */
    .stat-box .stat-icon {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        animation: iconShake 3s ease-in-out infinite !important;
        transform-origin: center !important;
    }
    .stat-box .stat-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
    /* Stat Number */
    .stat-box h2 {
        font-size: 32px !important;
        font-weight: 800 !important;
        margin: 0 0 8px !important;
        color: #222 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    /* Stat Description */
    .stat-box p {
        font-size: 16px !important;
        color: #666 !important;
        margin: 0 !important;
        text-align: center !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        letter-spacing: 0.3px !important;
    }
    /* Hide Left Shape on mobile */
    .left-shape {
        display: none !important;
    }
    /* Animation for icons */
    @keyframes iconShake {
        0% {
            transform: rotate(0);
        }
        5% {
            transform: rotate(-8deg);
        }
        10% {
            transform: rotate(8deg);
        }
        15% {
            transform: rotate(-6deg);
        }
        20% {
            transform: rotate(6deg);
        }
        25% {
            transform: rotate(0);
        }
        100% {
            transform: rotate(0);
        }
    }
    /* Team Section */
    .team-title {
        font-size: 28px;
    }
    .team-card .img-box img {
        height: 300px;
    }
    .arrow-icon {
        width: 40px;
        height: 40px;
    }
    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    /* Testimonial Section Container */
    .testimonial-section {
        padding: 40px 15px 50px !important;
        background: #fff;
        overflow: hidden;
    }
    /* Testimonial Image */
    .testimonial-img {
        margin-bottom: 30px !important;
        text-align: center;
        width: 100%;
    }
    .testimonial-img img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 8px;
        margin: 0 auto;
        display: block;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    /* Testimonial Content Container */
    .testimonial-section .col-lg-4 {
        width: 100% !important;
        margin-right: 0 !important;
        padding: 0 10px;
    }
    /* Carousel Container */
    #testimonialSlider {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
    /* Carousel Inner */
    .carousel-inner {
        text-align: center;
        padding: 0 5px;
    }
    /* Tag */
    .tag {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #cfa634;
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    /* Testimonial Heading */
    .testimonial-section h3 {
        font-size: 18px;
        line-height: 1.5;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        color: #333;
    }
    /* Client Box */
    .client-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        margin-top: 20px;
        padding: 15px 10px;
        background: #f9f9f9;
        border-radius: 8px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Client Image */
    .client-box img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0 auto 5px;
        object-fit: cover;
        border: 3px solid #f5c84c;
    }
    /* Client Info */
    .client-box div {
        text-align: center;
        width: 100%;
    }
    .client-box h5 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 5px;
        color: #222;
    }
    .client-box span {
        font-size: 13px;
        color: #666;
        display: block;
    }
    /* Controls Container */
    .carousel-control-prev,
    .carousel-control-next {
        position: absolute !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        background: #f5c84c !important;
        border-radius: 50% !important;
        top: 50% !important;
        /* Position vertically centered */
        transform: translateY(-50%) !important;
        /* Center vertically */
        opacity: 0.9 !important;
        border: none !important;
        z-index: 10 !important;
        transition: all 0.3s ease !important;
    }
    /* Previous Button - Left Side */
    .carousel-control-prev {
        left: -10px !important;
        /* Position on left side */
        right: auto !important;
    }
    /* Next Button - Right Side */
    .carousel-control-next {
        right: -10px !important;
        /* Position on right side */
        left: auto !important;
    }
    /* Hover Effect */
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: #000 !important;
        opacity: 1 !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    /* Control Icons */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: brightness(0) invert(1) !important;
        width: 20px !important;
        height: 20px !important;
        background-size: 100% !important;
    }
    /* Carousel Indicators */
    .carousel-indicators {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 25px 0 5px !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 5 !important;
    }
    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background-color: #ddd !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }
    .carousel-indicators button.active {
        background-color: #cfa634 !important;
        transform: scale(1.2) !important;
        width: 12px !important;
        height: 12px !important;
    }
    /* Ensure the carousel has relative positioning for absolute children */
    #testimonialSlider {
        position: relative !important;
        padding: 0 20px !important;
        /* Add padding to prevent content from touching edges */
    }
    /* Carousel inner padding to prevent content overlap with arrows */
    .carousel-inner {
        padding: 0 10px !important;
    }
    /* Outline Heading */
    .outline-heading {
        font-size: 32px;
        gap: 10px;
    }
    .icon-circle {
        width: 40px;
        height: 40px;
    }
    .icon-circle i {
        font-size: 22px;
    }
    .scroll-track {
        gap: 30px;
    }
    /* Blog Section */
    .section-title {
        font-size: 28px;
    }
    .blog-card img {
        height: 250px;
    }
    .date-badge {
        padding: 8px 15px;
    }
    .date-badge h2 {
        font-size: 24px;
    }
    .blog-title {
        font-size: 18px;
    }
    .meta {
        font-size: 12px;
        gap: 15px;
    }
    .instagram-title {
        font-size: 32px;
        margin-top: 0;
    }
    /* Scroll Gallery */
    .scroll-track img {
        width: 80px;
    }
    /* Contact Section */
    .contact-section {
        padding: 60px 0 80px;
    }
    .contact-content h1 {
        font-size: 28px;
    }
    .contact-content small {
        font-size: 12px;
    }
    .form-box {
        padding: 20px 15px;
    }
    .form-control {
        height: 45px;
        font-size: 13px;
    }
    textarea.form-control {
        height: 100px;
    }
    .submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    /* Social Footer */
    .social-footer {
        padding: 30px 0;
    }
    .social-links a {
        font-size: 14px;
    }
    .social-links i {
        font-size: 16px;
    }
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    .footer-logo img {
        width: 160px;
    }
    .footer p {
        font-size: 13px;
        padding: 0 15px;
    }
    .footer-contact span {
        font-size: 13px;
    }
    .newsletter h4 {
        font-size: 18px;
    }
    .newsletter-form input,
    .newsletter-form button {
        height: 45px;
        font-size: 13px;
    }
    .footer h5 {
        font-size: 16px;
    }
    .footer ul li a {
        font-size: 13px;
    }
    .map iframe {
        height: 180px;
    }
    /* Bottom Bar */
    .bottom-bar {
        padding: 12px 0;
        font-size: 12px;
    }
    /* Scroll Top */
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}


/* Small Mobile (max-width: 360px) */

@media screen and (max-width: 360px) {
    /* Header */
    .nav a {
        font-size: 10px;
    }
    /* Hero Section */
    .hero-left h2 {
        font-size: 24px;
    }
    /* About Section */
    .about-title {
        font-size: 24px;
    }
    /* Services Hero */
    .hero-title {
        font-size: 24px;
    }
    /* Impacts Section */
    .impacts-title {
        font-size: 22px;
    }
    /* Equipment Section */
    .equipment-title {
        font-size: 22px;
    }
    /* Experience Circle */
    .experience-circle {
        width: 120px;
        height: 120px;
    }
    .center-number {
        font-size: 38px;
    }
    .circle-text text {
        font-size: 11px;
    }
    .stats h2 {
        font-size: 28px;
    }
    .stat-number {
        font-size: 32px;
    }
    /* Mission Section */
    .ceo-box {
        width: 200px;
    }
    .ceo-sign {
        font-size: 16px;
    }
    /* Project Cards */
    .project-card {
        width: 220px;
        height: 320px;
    }
    .project-card img {
        height: 200px;
    }
    /* Outline Heading */
    .outline-heading {
        font-size: 26px;
    }
    .icon-circle {
        width: 35px;
        height: 35px;
    }
    .icon-circle i {
        font-size: 18px;
    }
    /* Instagram Title */
    .instagram-title {
        font-size: 28px;
    }
    /* Footer */
    .footer-logo img {
        width: 140px;
    }
}


/* Fix for counter animation */

.counter {
    display: inline-block;
}

.counter {
    display: inline-block;
}

* Fix for counter animation */ .counter {
    display: inline-block;
}

.counter {
    display: inline-block;
}

.shape-image {
    animation: microFloat 6s ease-in-out infinite;
}

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