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

/* ================= HERO WRAPPER ================= */
.hero-slide {
    overflow: hidden;
}

/* ================= HERO SLIDE ================= */
.hero-slide {
    height: 490px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: heroZoom 14s ease-in-out infinite;
}

/* ================= BACKGROUNDS ================= */
.hero-bg-1 {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35)),
        url("../images/home/bannner 1_compressed.webp");
}
.hero-bg-2 {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35)),
        url("../images/home/banner 2_compressed.webp");
}
.hero-bg-3 {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35)),
        url("../images/home/IMG_2770_compressed.webp");
}

/* ================= DEPTH OVERLAY ================= */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 30%,
        rgba(0, 0, 0, 0.5)
    );
    z-index: 1;
}
.hero-overlay h1 {
    letter-spacing: -0.02em;
}

/* ================= HERO TEXT ================= */
.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    animation: heroReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay h1 {
    font-size: clamp(30px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.hero-overlay h1 span {
    color: #ff7a2f;
}

/* ================= BUTTON ================= */
.hero-btn {
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 40px;
    background: #fff;
    color: #ff7a2f;
    font-weight: 700;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* ================= ARROWS ================= */
.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a2f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ================= INDICATORS ================= */
.carousel-indicators [data-bs-target] {
    width: 26px;
    height: 4px;
    border-radius: 6px;
    background: #fff;
    opacity: 0.4;
}
.carousel-indicators .active {
    background: #ff7a2f;
    opacity: 1;
}
.carousel-inner {
    height: 490px;
}
.carousel-item.hero-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
}
.hero-overlay {
    transform: translateY(-10px);
}

/* ================= ANIMATIONS ================= */
@keyframes heroZoom {
    from {
        background-size: 100%;
    }
    to {
        background-size: 112%;
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-slide {
        height: 420px !important;
    }
    #heroCarousel .carousel-indicators {
        top: 370px !important;
    }
}
@media (max-width: 768px) {
    .hero-slide {
        height: 360px !important;
    }
    #heroCarousel .carousel-indicators {
        top: 310px !important;
    }
}
@media (max-width: 480px) {
    .hero-slide {
        height: 300px !important;
    }
    #heroCarousel .carousel-indicators {
        top: 250px !important;
    }
}
/* ================= CAROUSEL INDICATORS FIX ================= */
#heroCarousel {
    position: relative;
}

/* INDICATORS */
#heroCarousel .carousel-indicators {
    position: absolute;
    top: 440px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
}

/* DOTS */
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 44px;
    height: 6px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    transition: all 0.4s ease;
}

/* ACTIVE */
#heroCarousel .carousel-indicators .active {
    width: 64px;
    background: linear-gradient(90deg, #ff7a2f, #ffb347);
    box-shadow: 0 0 10px rgba(255, 122, 47, 0.8);
}

/* MOBILE */
@media (max-width: 768px) {
    #heroCarousel .carousel-indicators {
        bottom: 16px;
    }

    #heroCarousel .carousel-indicators [data-bs-target] {
        width: 28px;
        height: 5px;
    }

    #heroCarousel .carousel-indicators .active {
        width: 40px;
    }
}

/* About CSS */

.about-section {
    background-color: #ffffff;
    margin: 30px 0;
}

.about-label {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8b5e3c;
    position: relative;
    padding-bottom: 8px;
}

.about-label::after {
    content: "";
    width: 60px;
    height: 2.5px;
    background: #8b5e3c;
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-title {
    font-size: 35px;
    font-weight: 700;
    color: #ff6a2b;
    line-height: 1.3;
}

.about-text {
    color: #434343;
    word-spacing: 0.1em;
    line-height: 1.6;
    font-size: 17px;
    text-align: justify;
    max-width: 540px;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid #ff6a2b;
    color: #ff6a2b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.about-btn:hover {
    background: #ff6a2b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.about-image-box {
    border: 2px solid #ff6a2b;
    border-radius: 16px;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    max-width: 88%;
}

.about-image-box img {
    border-radius: 12px;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-title {
        font-size: 32px;
    }
    .about-image-box {
        margin-right: 100px !important;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 26px;
    }
    .about-text {
        font-size: 15px;
    }
}

/* FOCUS CSS */

.focus-section {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.focus-label {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 690;
    color: #8b5e3c;
}

.focus-underline {
    display: block;
    width: 80px;
    height: 2.5px;
    background: #8b5e3c;
    margin: 10px auto 25px;
}

.focus-title {
    font-size: 32px;
    font-weight: 600;
    color: #ff6a2b;
    line-height: 1.4;
    margin-bottom: 60px !important;
    width: 90%;
    margin: 0 auto;
}

.focus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.focus-card {
    text-align: left;
    position: relative;
}

.focus-img {
    border-radius: 10px;
    overflow: hidden;
}

.focus-img img {
    width: 94%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.focus-card h3 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
    color: #7a4a1e;
}

.focus-card p {
    margin-top: 12px;
    padding-right: 40px;
    color: #434343;
    line-height: 1.6;
    font-size: 17px;
    text-align: justify;
    margin-bottom: 30px;
}
.focus-card a {
    transition: all 0.7 ease;
}
.focus-card a:hover {
    transform: translateY(-2px) !important;
}
.con-foc {
    margin-left: 45px;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .focus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .focus-cards {
        grid-template-columns: 1fr;
    }

    .focus-img img {
        height: 260px;
    }
}

/* OUR IMPACT */
.impact-section {
    padding: 50px 0 230px;
    color: #fff;
    overflow: hidden;
    background-color: #f97f8f;
}

.impact-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700px;
}

.impact-underline {
    width: 80px;
    height: 2.5px;
    background: #fff;
    display: block;
    margin: 6px auto 20px;
}

.impact-heading {
    font-size: 34px;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.impact-area {
    margin-top: 150px;
    position: relative;
}

.impact-circle {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ffb347, #ff7f6a);
    border-radius: 50%;
    z-index: 1;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.impact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.impact-box {
    width: 210px;
    height: 100px; /* image-like height */
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    overflow: hidden; /* marquee clip */
    position: relative;
    border-radius: 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.highlight {
    width: 280px;
    height: 100px;
    position: relative;
}

.marquee span {
    font-size: 32px;
    opacity: 0.9;
    color: #fff;
    display: block;
}

.marquee strong {
    font-size: 28px;
    font-weight: 700;
    color: #d726a7;
    display: block;
}
.corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
}
.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}
.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}
.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
}
.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

@media (max-width: 992px) {
    .impact-row {
        justify-content: center;
    }

}
@media (max-width:1290px){
    .impact-box {
       width: 200px;
    }
    .highlight{
        width:250px;
    }
}

/* viewport */
.marquee-inner {
    width: 100%;
    overflow: hidden;
}

/* moving content */
.marquee-track {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    white-space: nowrap;
    padding-left: 100%;
    animation: text-marquee 14s linear infinite;
}

/* speeds */
.speed-2 .marquee-track {
    animation-duration: 18s;
}
.speed-3 .marquee-track {
    animation-duration: 12s;
}
.speed-4 .marquee-track {
    animation-duration: 20s;
}
.speed-5 .marquee-track {
    animation-duration: 16s;
}

/* animation */
@keyframes text-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* BE A PART CSS */
.beapart-section {
    padding: 70px 0px 50px;
}
/* Subtitle */
.beapart-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    color: #b55b2c;
    font-weight: 600;
}

.beapart-underline {
    width: 70px;
    height: 2.5px;
    background-color: #b55b2c;
    margin: 10px 0 20px;
}

/* Title */
.beapart-title {
    font-size: 38px;
    font-weight: 600;
    color: #ff6a2b;
}

/* Cards */
.beapart-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.beapart-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #7a4a1e;
}

.beapart-card p {
    font-size: 16px;
    color: #434343;
    margin: 0;
    text-align: justify;
}

/* Active Card */
.beapart-card:hover {
    background-color: #f97f8f;
    color: #434343;
    transform: translateY(-8px) !important;
}
.beapart-card:hover a {
    color: #f97f8f;
    background-color: #fff;
}
.beapart-card:hover p {
    color: #fff;
}
/* Arrow */
.beapart-card a {
    min-width: 45px;
    height: 45px;
    background-color: #f97f8f;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

/* Image */
.beapart-image-wrapper {
    border: 2px solid #ff6a2b;
    border-radius: 20px;
    padding: 10px 0px;
    margin-top: 140px;
    border: 2px solid #ff6a2b;
    border-radius: 16px;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    animation: float1 4s ease-in-out infinite;
    max-width: 100%;
}

.beapart-image-wrapper img {
    border-radius: 15px;
    height: 380px;
}

@keyframes float1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
    }
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .beapart-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .beapart-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .beapart-card a {
        align-self: flex-end;
    }
}

/* OUR PROJECTS CSS */

.project-section {
    padding: 60px 0px 100px !important;
    overflow: hidden;
}
.projects-section {
    padding: 60px 0px 0px !important;
    overflow: hidden;
}
/* Subtitle */
.projects-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #7a4a1e;
}

.projects-underline {
    width: 100px;
    height: 2.5px;
    background: #7a4a1e;
    margin-top: 10px;
}

/* Title */
.projects-title {
    font-size: 40px;
    max-width: 1000px;
    margin: auto;
    font-weight: 600;
    color: #ff7a2f;
}

/* View All */
.view-all-btn {
    border: 1px solid #ff7a2f;
    padding: 10px 20px 8px 33px !important;
    border-radius: 30px;
    color: #ff7a2f;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    width: 150px !important;
    margin-top: 70px !important;
}

.view-all-btn:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-5px);
}

/* Cards */
.project-card {
    margin-top: 20px;
    border-radius: 25px;
    text-align: left;
    height: 100%;
    position: relative;
    padding: 30px 25px 50px 25px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
        rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
        rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    transition: transform 0.3s ease;
    border: 2px solid #ff7a2b;
}
.project-card:hover {
    transform: translateY(-10px);
}

.project-logo {
    margin-bottom: 20px;
    border-radius: 20px;
    width: 100%;
    height: 200px !important;
    object-fit: contain;
    margin-bottom: 28px;
    border-radius: 8px;
    border: 1px solid #ff7a2b;
    background: #fff;
}

.project-card h4 {
    font-size: 28px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
    color: #ff7a2f;
}

.project-card small {
    display: block;
    margin-bottom: 18px;
    font-size: 16px;
    opacity: 0.9;
    text-align: center;
}

.project-card p {
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
    color: #434343;
}

/* Arrow */
.project-arrow {
    position: absolute;
    bottom: 25px;
    left: 32%;
    width: 150px;
    height: 40px;
    border: 1px solid #ff7a2f;
    display: grid;
    border-radius: 30px;
    place-items: center;
    color: #ff7a2f;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.project-arrow:hover {
    background: #ff7a2b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Responsive */
@media (max-width: 991px) {
    .projects-title {
        font-size: 32px;
    }
}

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