/* --- RESET & GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    font-family: "Exo", sans-serif;
    font-weight: 300;
    /* Regular */
}

/* Headings */
h1,
h2,
h3 {
    font-family: "Exo", sans-serif;
    font-weight: 400;
    /* Bold */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.section-title {
    color: #000;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* --- STICKY HEADER & NAVBAR --- */
header {
    position: absolute;
    width: 100%;
    top: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 2px solid rgb(74 74 74);
    border-bottom: 2px solid rgb(74 74 74);
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    animation: slideDown 0.6s ease;
    border: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 400px;
    padding: 13px 35px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.logo-wrapper {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.logo-line::before {
    content: "";
    position: absolute;
    top: -8px;
    right: -5px;
    width: 1px;
    height: 75px;
    background-color: #484848;
}

.logo img {
    width: 280px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #f08707;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

/* --- HERO BANNER CAROUSEL (3 SLIDES) --- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 450px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-caption {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-caption h1,
.hero-caption span {
    width: fit-content;
    padding: 0.625rem 1.25rem;
}

.hero-caption .heading {
    color: #f08707;
    font-size: 48px;
    background: #fff;
    padding: 0px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.hero-caption span {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    background: #fff;
    padding: 0px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Controls */
.carousel-btn svg {
    width: 30px;
    height: 30px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    border: none;
    background-color: transparent;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Laptop */
@media (max-width: 1199px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 18px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .carousel-btn svg {
        width: 25px;
        height: 25px;
    }

    .navbar {
        justify-content: space-between;
        gap: 100px;
        padding: 7px 10px;
    }

    .logo img {
        width: 230px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-caption .heading {
        font-size: 32px;
    }

    .hero-caption span {
        font-size: 22px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 25px;
        width: 100%;
    }

    .hero-carousel {
        height: 50vh;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

/* --- DESIGNEERING & ABOUT SECTION --- */
.about-section {
    padding: 70px 0;
    text-align: center;
}

.about-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-content .section-title {
    color: #000;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.about-content {
    width: 35%;
    text-align: start;
}

.about-image {
    width: 65%;
    padding: 20px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        width: 40%;
    }

    .about-image {
        width: 60%;
        padding: 15px;
    }

    .about-content .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-section p {
        font-size: 18px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .about-section {
        padding: 40px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-content,
    .about-image {
        width: 100%;
    }

    .about-content {
        text-align: center;
        order: 2;
    }

    .about-image {
        padding: 0;
        order: 1;
    }

    .about-content .section-title {
        font-size: 24px;
    }

    .about-section p {
        font-size: 18px;
        max-width: 100%;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .about-section {
        padding: 30px 0;
    }

    .about-wrapper {
        gap: 20px;
    }

    .about-content .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .about-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-image img {
        width: 100%;
        display: block;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .about-content .section-title {
        font-size: 20px;
    }

    .about-section p {
        font-size: 15px;
    }

    .about-wrapper {
        gap: 15px;
    }
}

/* --- WHY FABMODULA SECTION --- */
.why-section {
    padding: 70px 0;
}

.section-headings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    overflow: hidden;
}

.section-headings span {
    color: #000;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.b-logo {
    position: relative;
}

.b-logo img {
    width: 250px;
    height: auto;
    display: block;
}

.why-section-wrapper {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.why-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 50%;
    padding: 15px 25px;
    text-align: start;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.why-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card p {
    flex: 1;
    margin: 0;
    max-width: 800px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .why-section {
        padding: 60px 0;
    }

    .section-headings {
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-headings span {
        font-size: 28px;
    }

    .b-logo img {
        width: 220px;
    }

    .why-section-wrapper {
        max-width: 900px;
    }

    .why-card {
        gap: 15px;
        padding: 15px 20px;
    }

    .why-card-icon {
        width: 55px;
        height: 55px;
    }

    .why-card p {
        font-size: 18px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .why-section {
        padding: 50px 0;
    }

    .section-headings {
        gap: 12px;
        margin-bottom: 30px;
    }

    .section-headings span {
        font-size: 26px;
        margin-bottom: 0;
    }

    .b-logo img {
        width: 180px;
    }

    .why-card {
        width: 100%;
        padding: 15px 0;
        gap: 20px;
    }

    .why-card-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .why-card p {
        font-size: 18px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .why-section {
        padding: 40px 0;
    }

    .section-headings {
        gap: 10px;
        margin-bottom: 25px;
    }

    .section-headings span {
        font-size: 22px;
    }

    .b-logo img {
        width: 140px;
    }

    .why-card {
        width: 100%;
        align-items: flex-start;
        gap: 15px;
        padding: 12px 0;
    }

    .why-card-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .why-card p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .section-headings {
        gap: 8px;
    }

    .section-headings span {
        font-size: 18px;
    }

    .b-logo img {
        width: 110px;
    }

    .why-card {
        gap: 12px;
    }

    .why-card-icon {
        width: 40px;
        height: 40px;
    }

    .why-card p {
        font-size: 15px;
    }
}

/* --- ACCORDION 3-STAGE PROCESS --- */
.process-section {
    padding: 60px 0;
}

.process-section h2 {
    text-align: center;
}

.accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 150px;
    margin: 60px auto 0 auto;
}

.accordion-item {
    align-self: start;
}

.accordion-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    background-color: #e3e3e3df;
    padding: 10px 10px 10px 20px;
}

.accordion-header span {
    font-weight: 400;
    font-size: 32px;
    color: #000;
    padding-right: 20px;
}

.accordion-header svg {
    width: 25px;
    height: 25px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(270deg);
}

.accordion-content {
    display: none;
    padding: 1.25rem 0 0;
    background: #fff;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content h4 {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
}

.accordion-content p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
}

.accordion-list h4 {
    margin-left: 10px;
    margin-bottom: 20px;
}

.accordion-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.accordion-list ul li::marker {
    content: "- ";
}

.accordion-content li {
    color: #000;
    font-size: 20px;
    font-weight: 400;
}

li strong {
    font-weight: 600;
    /* or 700 for bold */
    color: #000;
    /* Change to your preferred color */
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .process-section {
        padding: 50px 0;
    }

    .accordion {
        gap: 50px;
        margin-top: 40px;
    }

    .accordion-header span {
        font-size: 28px;
        padding-right: 15px;
    }

    .accordion-header svg {
        width: 22px;
        height: 22px;
    }

    .accordion-content h4 {
        font-size: 18px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 18px;
    }

    .accordion-content p {
        margin-bottom: 35px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .process-section {
        padding: 40px 0;
    }

    .accordion {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 35px;
    }

    .accordion-header span {
        font-size: 26px;
    }

    .accordion-header svg {
        width: 22px;
        height: 22px;
    }

    .accordion-content {
        padding-top: 15px;
    }

    .accordion-content h4 {
        font-size: 18px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 17px;
    }

    .accordion-content p {
        margin-bottom: 25px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 768px) {
    .process-section {
        padding: 30px 0;
    }

    .accordion {
        gap: 20px;
        margin-top: 30px;
    }

    .accordion-header {
        padding: 15px;
    }

    .accordion-header span {
        font-size: 22px;
        padding-right: 10px;
    }

    .accordion-header svg {
        width: 18px;
        height: 18px;
    }

    .accordion-content h4 {
        font-size: 17px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 16px;
        line-height: 1.6;
    }

    .accordion-content p {
        margin-bottom: 20px;
    }

    .accordion-list h4 {
        margin-left: 0;
        margin-bottom: 12px;
    }

    .accordion-content ul {
        margin-left: 16px;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .accordion-header span {
        font-size: 20px;
    }

    .accordion-content h4 {
        font-size: 16px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 15px;
    }

    .accordion-header svg {
        width: 16px;
        height: 16px;
    }
}

/* --- EXPLORE OUR WORK (RESPONSIVE GRID) --- */
.work-section {
    padding: 4.375rem 0;
}

.work-section h2 {
    text-align: center;
}

.work-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.work-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    height: 300px;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.08);
}

.work-item {
    flex: 0 0 calc(33.333% - 1rem);
    width: 100%;
}

.work-title-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.work-card-title {
    width: 100%;
}


.work-card-title h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}

.work-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.work-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #f08707;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.work-btn a i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.work-btn a:hover i {
    transform: translateX(4px);
}

.work-btn a:hover {
    background-color: #000;
}


.work-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.work-overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    padding: 20px;
}

.work-overlay-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
}

.work-overlay-content span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card:hover .work-overlay {
    opacity: 1;
    visibility: visible;
}

.work-card:hover .work-overlay-content {
    transform: translateY(0);
}

/* =========================
   LIGHTBOX
========================= */
.work-lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 99999;
}

.work-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   LIGHTBOX CONTENT
========================= */
.work-lightbox-content {
    position: relative;
    width: min(100%, 1100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* =========================
   TITLE
========================= */
.work-lightbox-title {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* =========================
   CLOSE BUTTON
========================= */
.work-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    background: #f08707;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    cursor: pointer;
    z-index: 5;
}

/* =========================
   PREVIOUS / NEXT
========================= */
.work-lightbox-prev,
.work-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 60px;
    border: 0;
    background: #f08707;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 9999;
}

.work-lightbox-prev {
    left: 25px;
}

.work-lightbox-next {
    right: 25px;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .work-section {
        padding: 60px 0;
    }

    .work-grid-container {
        gap: 20px;
    }

    .work-card {
        flex: 0 0 calc(33.333% - 14px);
        height: 260px;
    }

    .work-card img {
        height: 260px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .work-section {
        padding: 50px 0;
    }

    .work-grid-container {
        gap: 20px;
    }

    .work-card {
        flex: 0 0 calc(50% - 10px);
        height: 280px;
    }

    .work-item {
        flex: 0 0 calc(50% - 10px);
    }

    .work-card img {
        height: 280px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 768px) {
    .work-section {
        padding: 40px 0;
    }

    .work-grid-container {
        gap: 15px;
    }

    .work-card {
        flex: 0 0 100%;
        height: 260px;
    }

    .work-item {
        flex: 0 0 100%;
    }

    .work-card img {
        height: 260px;
    }

    .work-title-btn-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .work-card-title {
        flex: 1;
    }

    .work-card-title h3 {
        text-align: left;
    }

    .work-btn {
        width: auto;
        flex: 0 0 auto;
    }

    .work-btn a {
        width: 40px;
        height: 40px;
        font-size: 13px;
        white-space: nowrap;
    }

    .work-btn a i {
        font-size: 13px;
    }

    .work-lightbox {
        padding: 20px;
    }

    .work-lightbox-content img {
        max-height: 70vh;
    }

    .work-lightbox-prev,
    .work-lightbox-next {
        width: 40px;
        height: 50px;
        font-size: 24px;
    }

    .work-lightbox-prev {
        left: 10px;
    }

    .work-lightbox-next {
        right: 10px;
    }

    .work-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        width: 35px;
        height: 37px;
    }

    .work-lightbox-title {
        font-size: 16px;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .work-section {
        padding: 30px 0;
    }

    .work-card {
        height: 220px;
    }

    .work-card img {
        height: 220px;
    }

    .work-lightbox-content img {
        max-height: 65vh;
    }

    .work-lightbox-prev,
    .work-lightbox-next {
        width: 30px;
        height: 40px;
        font-size: 20px;
    }
}

/* --- TESTIMONIAL CAROUSEL --- */
.testimonial-section {
    padding: 70px 0;
}

.testimonial-section .section-title {
    text-align: center;
    margin-bottom: 0px;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial-card {
    padding: 40px;
    border-radius: 8px;
    text-align: start;
    margin: 30px;
}

.testimonial-card p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    text-align: center;
}

.testimonial-author span {
    color: #000;
    font-size: 20px;
    font-weight: 400;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-carousel-container {
        max-width: 700px;
    }

    .testimonial-card {
        padding: 35px;
        margin: 35px;
    }

    .testimonial-card p,
    .testimonial-author,
    .testimonial-author span {
        font-size: 18px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-carousel-container {
        max-width: 100%;
    }

    .testimonial-slide {
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 30px;
        margin: 20px 40px;
    }

    .testimonial-card p,
    .testimonial-author,
    .testimonial-author span {
        font-size: 17px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-slide {
        padding: 0;
    }

    .testimonial-card {
        padding: 20px;
        margin: 20px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-author,
    .testimonial-author span {
        font-size: 16px;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .testimonial-card {
        padding: 35px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .testimonial-author,
    .testimonial-author span {
        font-size: 15px;
    }
}

/* --- CATEGORY SHOWCASE --- */
.categories-section {
    padding: 0px 0px 70px 0px;
}

.categories-section h2 {
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-card:hover img {
    transform: scale(1.08);
}

/* --- CONTACT --- */
.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.contact-details {
    width: calc(30% - 20px);
    padding: 10px;
}

.contact-details .section-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 45px;
    text-transform: none;
    letter-spacing: 1px;
    text-align: start;
}

.contact-info-wrapper {
    margin-bottom: 25px;
}

.contact-info-wrapper .contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
    font-size: 32px;
    font-weight: 400;
    color: #000;
}

.contact-card img {
    width: 50px;
    max-width: unset;
}

.contact-image-wrap {
    width: calc(70% - 20px);
}

.contact-image-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.contact-image-card {
    width: 50%;
}

.contact-image-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.contact-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-bottom h2 {
    font-size: 2rem;
    color: #000;
    margin-top: 50px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-align: start;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .categories-section {
        padding: 0px 0px 60px 0px;
    }

    .categories-grid {
        gap: 18px;
    }

    .category-card {
        height: 240px;
    }

    /* Contact */
    .contact-section {
        padding: 50px 0;
    }

    .contact-details {
        width: calc(40% - 15px);
    }

    .contact-image-wrap {
        width: calc(60% - 15px);
    }

    .contact-details .section-title,
    .contact-bottom h2 {
        font-size: 30px;
    }

    .contact-info-wrapper .contact-card {
        font-size: 24px;
    }

    .contact-card img {
        width: 45px;
    }

    .contact-image-card img {
        height: 300px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .categories-section {
        padding: 0px 0px 50px 0px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        height: 220px;
    }

    /* Contact */
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-details,
    .contact-image-wrap {
        width: 100%;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details .section-title {
        text-align: center;
        font-size: 28px;
    }

    .contact-info-wrapper .contact-card {
        justify-content: center;
        font-size: 20px;
    }

    .contact-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .contact-bottom h2 {
        margin-top: 30px;
        text-align: center;
        font-size: 28px;
    }

    .contact-image-card img {
        height: 280px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .categories-section {
        padding: 0px 0px 40px 0px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        height: 240px;
    }

    /* Contact */
    .contact-section {
        padding: 40px 0;
    }

    .contact-details .section-title,
    .contact-bottom h2 {
        font-size: 24px;
    }

    .contact-info-wrapper .contact-card {
        font-size: 18px;
        gap: 12px;
        justify-content: flex-start;
    }

    .contact-card img {
        width: 35px;
    }

    .contact-image-box {
        flex-direction: column;
    }

    .contact-image-card {
        width: 100%;
        padding: 5px 0;
    }

    .contact-image-card img {
        height: 220px;
    }

    .contact-bottom {
        gap: 15px;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .category-card {
        height: 200px;
    }

    .contact-details .section-title,
    .contact-bottom h2 {
        font-size: 22px;
    }

    .contact-info-wrapper .contact-card {
        font-size: 16px;
    }

    .contact-card img {
        width: 30px;
    }

    .contact-image-card img {
        height: 180px;
    }
}

/* MAP SECTION  */
.map-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.place-basic-info--truncation-preferred span.address {
    white-space: nowrap;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .map-container {
        height: 320px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .map-container {
        height: 300px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .map-container {
        height: 250px;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .map-container {
        height: 220px;
    }
}

/* --- MODERN FOOTER --- */
footer {
    border-top: 2px solid rgb(74 74 74);
    border-bottom: 2px solid rgb(74 74 74);
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding-right: 20px;
    overflow: hidden;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0px;
    width: 100%;
    margin: 0 auto;
}

.footer-middle .section-title {
    color: #f08707;
    font-size: 34px;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-item {
    position: relative;
}

.footer-link {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-link:hover {
    color: #f08707;
}

/* =========================
   Laptop (992px - 1199px)
========================= */
@media (max-width: 1199px) {
    .footer-bar {
        gap: 40px;
        padding: 12px 25px;
    }

    .footer-middle .section-title {
        font-size: 28px;
    }

    .footer-menu {
        gap: 30px;
    }

    .footer-link {
        font-size: 18px;
    }
}

/* =========================
   Tablet (768px - 991px)
========================= */
@media (max-width: 991px) {
    .footer-bar {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
    }

    .footer-middle .section-title {
        font-size: 24px;
    }

    .footer-menu {
        gap: 25px;
        justify-content: center;
    }

    .footer-link {
        font-size: 18px;
    }
}

/* =========================
   Mobile (767px and below)
========================= */
@media (max-width: 767px) {
    .footer-bar {
        gap: 18px;
        padding: 20px 15px;
    }

    .footer-middle .section-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        font-size: 16px;
        justify-content: center;
        padding: 5px 0;
    }
}

/* =========================
   Small Mobile (575px and below)
========================= */
@media (max-width: 575px) {
    .footer-bar {
        padding: 15px;
    }

    .footer-middle .section-title {
        font-size: 18px;
    }

    .footer-link {
        font-size: 15px;
    }
}

/* @media (max-width: 991px) {
     .footer-bar {
         flex-direction: column;
         gap: 15px;
     }
 }
 @media (max-width: 767px) {
     .footer-bar {
         padding: 13px 15px;
     }
     .footer-middle .section-title {
         text-align: center;
     }
 } */