@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {

    --bs-primary: #E8D7BA;
    --bs-primary-rgb: 232, 215, 186;

    --bs-secondary: #2B2B2B;
    --bs-secondary-rgb: 43, 43, 43;

    --bs-dark-alt: #181818;
    --bs-dark-alt-rgb: 24, 24, 24;

    --bs-success: #178F6B;
    --bs-success-rgb: 23, 143, 107;

    --bs-white: #FFFFFF;
    --bs-white-rgb: 255, 255, 255;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 16px;
}


/* Navbar start */


/* =========================================
   TOP HEADER
========================================= */

.top-header {
    background: var(--bs-secondary);
    border-bottom: 1px solid var(--bs-primary);
}

.top-header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.logo img {
    width: 120px;
    height: auto;
    display: block;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}


.contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s ease;
}


.contact-info a i {
    color: var(--navbar-gold);
    font-size: 18px;
}


.contact-info a:hover {
    color: var(--navbar-gold);
}


/* =========================================
   HEADER BUTTONS
========================================= */

.header-buttons {
    display: flex;
    gap: 10px;
}

/* .header-btn {
    min-width: 157px;

    padding: 10px 20px;

    border: 2px solid var(--bs-primary);
    border-radius: 7px;

    color: var(--bs-primary);
    text-decoration: none;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
} */

/* .header-btn:hover {
    background: #b8965b;
    color: #111111;
} */


/* =========================================
   MAIN NAVBAR
========================================= */

.main-navbar {
    background: var(--bs-secondary);
    padding: 0;
    min-height: 43px;
}


/* =========================================
   NAV LINKS
========================================= */

.main-navbar .navbar-nav {
    gap: 30px;
}


.main-navbar .nav-link {
    color: var(--bs-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}


.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--bs-primary);
}


/* =========================================
   DROPDOWN
========================================= */

.main-navbar .dropdown-menu {
    background: var(--bs-secondary);

    border: 1px solid var(--bs-primary);
    border-radius: 0;

    margin-top: 0;
}

.main-navbar .dropdown-item {
    color: #ffffff;

    padding: 10px 18px;

    font-size: 15px;
}

.main-navbar .dropdown-item:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}


/* =========================================
   DROPDOWN ARROW
========================================= */

.main-navbar .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: middle;
}


/* =========================================
   MOBILE LOGO
========================================= */

.mobile-logo {
    display: none;
}

.mobile-logo img {
    width: 100px;
}


/* =========================================
   MOBILE BUTTONS
========================================= */

.mobile-buttons {
    display: none;
}


/* =========================================
   NAVBAR TOGGLER
========================================= */

.navbar-toggler {
    border: 1px solid var(--bs-primary);
    padding: 7px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 18px;
    position: relative;
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.navbar-toggler-icon::after {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 24px;
    height: 2px;

    background: var(--bs-primary);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .top-header-inner {
        gap: 20px;
    }

    .logo img {
        width: 190px;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-info a {
        font-size: 13px;
    }

    /* .header-btn {
        min-width: 135px;
        padding: 9px 12px;
        font-size: 13px;
    } */

    .main-navbar .navbar-nav {
        gap: 20px;
    }

    .main-navbar .nav-link {
        font-size: 15px;
    }
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991.98px) {

    /* Hide desktop top section */
    .top-header {
        display: none;
    }


    /* Navbar */
    .main-navbar {
        padding: 10px 0;
    }


    /* Show mobile logo */
    .mobile-logo {
        display: block;
    }


    /* Navbar menu */
    .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 10px;
    }


    .main-navbar .navbar-nav {
        gap: 0;
        align-items: stretch !important;
    }


    .main-navbar .nav-link {
        padding: 12px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    /* Dropdown */
    .main-navbar .dropdown-menu {
        border: none;
        border-left: 2px solid var(--bs-primary);

        margin-left: 10px;

        padding: 0;
    }


    .main-navbar .dropdown-item {
        padding: 10px 15px;
    }


    /* Mobile buttons */
    .mobile-buttons {
        display: flex;

        flex-direction: column;

        gap: 10px;

        margin-top: 15px;
    }


    .mobile-buttons .header-btn {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .main-navbar {
        padding: 8px 0;
    }

    .mobile-logo img {
        width: 100px;
    }

    .navbar-toggler {
        padding: 6px 8px;
    }

    .main-navbar .nav-link {
        font-size: 16px;
    }
}


/* Navbar end */

/* Hero start */

.hero-content {
    position: relative;
    height: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content .hero-heading {
    font-family: "Montserrat", sans-serif;
    z-index: 4;
}

.hero-content .hero-subheading {
    font-family: "Open Sans", sans-serif;
    z-index: 4;
}

.hero-btn a {
    background-color: var(--bs-primary);
    color: var(--bs-secondary);
    border: 2px solid var(--bs-white);
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 16px;
    font-family: "Open Sans", sans-serif;
}

.hero-btn a:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-primary);
}

/* Hero end */

/* Intro start */

.intro-left-content,
.intro-right-content {
    color: var(--bs-white);
}

.intro-right-content img {
    width: 100%;
    max-width: 520px;
    height: 420px;
    object-fit: cover;

    border-radius: 20px;
    border: 2px solid var(--bs-primary);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);

    transition: all 0.4s ease;
}

.intro-right-content img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
}

.intro-left-content .intro-heading {
    font-family: "Montserrat", sans-serif;
}

.intro-left-content .intro-content {
    font-family: "Open Sans", sans-serif;
}

.intro-left-content .intro-left-btn {
    background-color: var(--bs-primary);
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.intro-left-content .intro-left-btn:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.intro-card-content h2,
.intro-card-content p {
    color: var(--bs-primary);
}

.introSwiper {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.introSwiper .swiper-wrapper {
    width: 100%;
}

.introSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.intro-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.introSwiper .swiper-pagination-bullet {
    background: var(--bs-white);
    opacity: 0.6;
}

.introSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .introSwiper {
        max-width: 550px;
    }
}

@media (max-width: 991.98px) {
    .introSwiper {
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .introSwiper {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0;
    }

    .hero-section {
        height: 320px;
    }

    .intro-image {
        width: 100%;
        border-radius: 10px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .introSwiper {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .intro-image {
        width: 100%;
        border-radius: 8px;
    }
}

.our-specialities .card {
    height: 100px;
    border: 2px solid var(--bs-primary);
    border-radius: 15px;
    background-color: var(--bs-dark-alt);
}

.our-specialities .card .intro-card-content h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.our-specialities .card .intro-card-content p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}


/* Intro end */


/* =========================================
   OUR WORK SECTION
========================================= */

/* our work start */


/* =========================================
   HEADING
========================================= */

.our-work-heading {
    margin-bottom: 60px;
}

.our-work-heading h2 {
    position: relative;

    display: inline-block;

    margin: 0;

    font-weight: 700;

    letter-spacing: -2px;

    line-height: 1.1;
    font-family: "Montserrat", sans-serif;

}

/* ========================================
   OUR WORK
======================================== */

.our-work {
    position: relative;
    padding: 100px 0;
    background: #f7f7f5;
    overflow: hidden;
}


/* Heading */

.our-work-heading {
    max-width: 700px;
    margin: 0 auto 45px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
    background: #fff;
}

.our-work-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #171717;
}

.our-work-heading h2 span {
    color: #a07b45;
}

.our-work-heading p {
    max-width: 600px;
    margin: 18px auto 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* ========================================
   TABS
======================================== */

.our-work-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.work-tab {
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-tab:hover {
    border-color: #222;
    color: #222;
    transform: translateY(-2px);
}

.work-tab.active {
    background: #222;
    color: #fff;
    border-color: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ========================================
   CONTENT
======================================== */

.our-work-content {
    min-height: 300px;
}


/* ========================================
   IMAGE CARD
======================================== */

.work-card {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}


/* Image zoom */

.work-card:hover img {
    transform: scale(1.08);
}


/* ========================================
   OVERLAY
======================================== */

.work-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 22px;

    color: #fff;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0));

    transform: translateY(15px);
    opacity: 0;

    transition: all 0.4s ease;
}

.work-card:hover .work-overlay {
    transform: translateY(0);
    opacity: 1;
}

.work-overlay span {
    font-size: 15px;
    font-weight: 600;
}

.work-overlay i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #222;

    transition: transform 0.3s ease;
}

.work-card:hover .work-overlay i {
    transform: rotate(45deg);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .our-work {
        padding: 70px 0;
    }

    .our-work-heading {
        margin-bottom: 30px;
    }

    .our-work-heading h2 {
        font-size: 42px;
    }

    .our-work-heading p {
        font-size: 14px;
    }

    .our-work-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 5px 15px;
        margin-bottom: 25px;

        scrollbar-width: none;
    }

    .our-work-tabs::-webkit-scrollbar {
        display: none;
    }

    .work-tab {
        flex: 0 0 auto;
        padding: 10px 17px;
        font-size: 13px;
    }

    .work-card {
        height: 270px;
        border-radius: 14px;
    }

    .work-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 18px;
    }

}

.our-work-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.work-tab {
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-tab:hover,
.work-tab.active {
    background: #222;
    color: #fff;
    border-color: #222;
}

.our-work-content {
    width: 100%;
}

.work-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.work-panel.active {
    display: block;
    animation: workTabIn 0.35s ease forwards;
}

@keyframes workTabIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.work-item {
    min-width: 0;
}

.work-card {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background: #eee;
    cursor: pointer;
}

.work-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.06);
}

.work-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0));
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.work-card:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay span {
    font-size: 16px;
    font-weight: 600;
}

.work-overlay i {
    font-size: 15px;
}

/* Tablet */
@media (max-width: 991px) {
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .our-work-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .our-work-tabs::-webkit-scrollbar {
        display: none;
    }

    .work-tab {
        flex: 0 0 auto;
        padding: 10px 17px;
        font-size: 14px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .work-card {
        height: 280px;
    }

    .work-overlay {
        transform: translateY(0);
    }
}

/* Our work end */

/* Full Spectrum start */

.resource-overview .heading h2 {
    font-family: "Montserrat", sans-serif;
    color: var(--bs-primary);
}

.resource-overview .content p {
    color: var(--bs-white);
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}

.spectrum-img .card {
    border-right: 1px solid var(--bs-primary) !important;
    border-bottom: 1px solid var(--bs-primary) !important;
}

.spectrum-img .card:hover {
    box-shadow: 0px 5px 10px 0px rgba(232, 215, 186, 0.5);
}

.exhibition-stand-card-one {
    height: 200px;
    background-image: url("https://res.cloudinary.com/puz20nap/image/upload/v1788774040/WhatsApp_Image_2025-08-21_at_11.28.10_AM.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exhibition-stand-card-two {
    height: 200px;
    background-image: url("https://res.cloudinary.com/puz20nap/image/upload/v1788774032/20220715_175623.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exhibition-stand-card-three {
    height: 415px;
    background-image: url("https://res.cloudinary.com/puz20nap/image/upload/v1788774038/WhatsApp_Image_2024-01-17_at_9.09.56_AM_7.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exhibition-stand-card-four {
    height: 200px;
    background-image: url("https://res.cloudinary.com/puz20nap/image/upload/v1788774037/20240214_102136.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exhibition-stand-card-five {
    height: 200px;
    background-image: url("https://res.cloudinary.com/puz20nap/image/upload/v1788774037/20240828_081503.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exhibition-stand-card .card-body {
    min-height: 300px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0));
}

.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    min-height: 100%;
    transition: all 0.4s ease;
    isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -25px;
    right: 10px;
    font-size: 130px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    z-index: -1;
    transition: all 0.4s ease;
}

.col-lg-4:nth-child(1) .service-card::before {
    content: "01";
}

.col-lg-4:nth-child(2) .service-card::before {
    content: "02";
}

.col-lg-4:nth-child(3) .service-card::before {
    content: "03";
}

.col-lg-4:nth-child(4) .service-card::before {
    content: "04";
}

.col-lg-4:nth-child(5) .service-card::before {
    content: "05";
}

.col-lg-4:nth-child(6) .service-card::before {
    content: "06";
}

.col-lg-4:nth-child(7) .service-card::before {
    content: "07";
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 215, 186, 0.10);
    border: 1px solid rgba(232, 215, 186, 0.30);
    border-radius: 18px;
    color: #E8D7BA;
    font-size: 25px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(232, 215, 186, 0.04);

    transition: all 0.4s ease;
}

.service-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(232, 215, 186, 0.75);

    padding: 7px 12px;
    border: 1px solid rgba(232, 215, 186, 0.18);
    border-radius: 50px;
    background: rgba(232, 215, 186, 0.05);
}

.service-content {
    position: relative;
}


/* Small accent line before title */

.service-content::before {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 18px;

    background: #E8D7BA;
    border-radius: 10px;
}

.service-title {
    font-size: 22px;
    font-weight: 650;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #ffffff;
}

.service-description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.8;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 215, 186, 0.35);

    background: linear-gradient(145deg,
            rgba(232, 215, 186, 0.12),
            rgba(255, 255, 255, 0.045));

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(232, 215, 186, 0.06);
}

.service-card:hover .service-icon {
    transform: translateY(-3px) rotate(-4deg);

    background: #E8D7BA;
    color: #2B2B2B;

    border-color: #E8D7BA;

    box-shadow:
        0 10px 30px rgba(232, 215, 186, 0.25);
}

.service-card:hover::before {
    color: rgba(232, 215, 186, 0.07);
    transform: scale(1.08);
}

.service-card:hover .service-number {
    color: #E8D7BA;
    border-color: rgba(232, 215, 186, 0.4);
}

@media (max-width: 767px) {

    .service-card {
        border-radius: 20px;
    }

    .service-card-top {
        margin-bottom: 35px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
        border-radius: 16px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

}

/* Full Spectrum end */


/* clients feedback start */

.feedback-section {
    background: #101010;
    overflow: hidden;
}

.feedback-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.feedbackSwiper {
    width: 100%;
    padding: 30px 0 40px;
    overflow: visible;
}

.feedbackSwiper .swiper-slide {
    width: 555px;
    opacity: 0.15;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.feedbackSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.feedback-card {
    min-height: 270px;
    background: #242424;
    border-radius: 4px;
    padding: 25px 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.feedback-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.feedback-logo {
    width: 175px;
    height: 55px;
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
}

.feedback-person {
    flex: 1;
    text-align: center;
}

.feedback-person h4 {
    color: #c29a5b;
    font-size: 17px;
    margin: 0 0 5px;
    font-weight: 500;
}

.feedback-person span {
    color: #999;
    font-size: 16px;
}

.feedback-text {
    color: #999;
    font-size: 17px;
    line-height: 1.45;
    margin: 10px auto 0;
    max-width: 480px;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feedback-company {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--bs-primary);
}

.feedback-person span {
    font-size: 13px;
    line-height: 1.5;
}

.read-more {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 38px;
}

.quote-icon {
    color: #ffffff;
    font-size: 65px;
    line-height: 45px;
    font-family: Georgia, serif;
    font-weight: bold;
    margin-top: 8px;
}

.safety-controls {
    margin-top: 25px;
}


/* =========================================
   SAFETY CARD
========================================= */

.safety-card {
    position: relative;

    height: 100%;
    min-height: 190px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5e9e7;
    border-radius: 16px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Gold line on top */

.safety-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e8a33d;
    transition: width 0.35s ease;
}


/* Hover */

.safety-card:hover {
    transform: translateY(-7px);

    border-color: #e8a33d;

    box-shadow:
        0 18px 40px rgba(16, 35, 31, 0.10);
}

.safety-card:hover::before {
    width: 100%;
}


/* =========================================
   TOP
========================================= */

.safety-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}


/* =========================================
   NUMBER
========================================= */

.safety-number {
    font-size: 13px;
    font-weight: 700;
    color: #9ba6a2;
    letter-spacing: 1px;
}


/* =========================================
   ICON
========================================= */

.safety-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f7ead5;
    color: #c28120;

    font-size: 21px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.safety-card:hover .safety-card-icon {
    background: #e8a33d;
    color: #ffffff;

    transform: rotate(-4deg) scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

.safety-card-content {
    flex: 1;

    display: flex;
    align-items: flex-start;
}

.safety-card-content span {
    color: #263732;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.65;
}


/* =========================================
   ARROW
========================================= */

.safety-card-arrow {
    position: absolute;

    right: 22px;
    bottom: 20px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #b7bfbc;

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.safety-card:hover .safety-card-arrow {
    background: #10231f;
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .safety-card {
        min-height: 170px;

        padding: 22px;
    }

    .safety-card-top {
        margin-bottom: 20px;
    }

    .safety-card-icon {
        width: 46px;
        height: 46px;

        font-size: 19px;
    }

    .safety-card-content span {
        font-size: 14px;
    }
}

.content>p {
    color: #5f6b67;
    line-height: 1.8;
}

@media (max-width: 767px) {

    .safety-card {
        padding: 16px;
    }

    .safety-card-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .safety-card span {
        font-size: 14px;
    }
}


/* Navigation */

.feedbackSwiper .swiper-button-prev,
.feedbackSwiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.feedbackSwiper .swiper-button-prev {
    left: -30px;
}

.feedbackSwiper .swiper-button-next {
    right: -30px;
}

.feedbackSwiper .swiper-button-prev::after,
.feedbackSwiper .swiper-button-next::after {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
}

.feedback-video {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.feedback-video video {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: contain;
}

.feedback-person h5 {
    margin-bottom: 5px;
}

.feedback-person span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #777;
}


/* Tablet */

@media (max-width: 991px) {

    .feedbackSwiper .swiper-slide {
        width: 500px;
    }

    .feedback-card {
        padding: 25px 30px;
    }

    .feedbackSwiper .swiper-button-prev {
        left: 10px;
    }

    .feedbackSwiper .swiper-button-next {
        right: 10px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .hero-content {
        height: 320px;
    }

    .feedbackSwiper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feedbackSwiper .swiper-slide {
        width: 85%;
        opacity: 1;
        transform: scale(1);
    }

    .feedback-card {
        min-height: 300px;
        padding: 20px;
    }

    .feedback-header {
        flex-direction: column;
        gap: 10px;
    }

    .feedback-logo {
        width: 150px;
        height: 50px;
    }

    .feedback-text {
        font-size: 15px;
    }

    .feedbackSwiper .swiper-button-prev,
    .feedbackSwiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .feedbackSwiper .swiper-button-prev {
        left: 5px;
    }

    .feedbackSwiper .swiper-button-next {
        right: 5px;
    }

}

/* clients feedback end */

/* footer start */

.footer {
    border-radius: 50px 50px 0 0;
}

.footer h4 {
    font-family: "Montserrat", sans-serif;
}

/* .services-footer-link ul li,
.quick-footer-link ul li,
.get-in-touch ul li {
    margin-bottom: 10px;
}

.services-footer-link ul li a,
.quick-footer-link ul li a,
.get-in-touch ul li a {
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
} */

.social-media-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s ease;
}

.social-media-links a:first-child {
    color: #25D366;
    background-color: #eafaf0;
}

.social-media-links a:last-child {
    color: #0A66C2;
    background-color: #eaf2fb;
}

.social-media-links a:hover {
    transform: translateY(-3px);
}

/* Vendor Logo */
.vendor-logo-img {
    width: 150px;
    max-width: 100%;
    height: auto;
}

/* Prevent long email/address from overflowing */
.get-in-touch span {
    overflow-wrap: anywhere;
}

/* Mobile */
@media (max-width: 575.98px) {

    .footer {
        border-radius: 30px 30px 0 0;
    }

    .vendor-logo,
    .services-footer-link,
    .quick-footer-link,
    .get-in-touch {
        text-align: center;
    }

    .vendor-logo-img {
        width: 130px;
    }

    .get-in-touch li a,
    .get-in-touch li>div {
        justify-content: flex-start;
        text-align: left;
    }
}


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 100px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}


/* Tablets */
@media (max-width: 991.98px) {
    .float {
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
        font-size: 27px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .float {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .float {
        width: 48px;
        height: 48px;
        right: 70px;
        bottom: 20px;
        font-size: 22px;
    }
}


/* footer end */



#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    /* Ensures it sits on top of other content */
    width: 50px;
    height: 50px;
    background-color: #e8a33d;
    /* Button color */
    color: white;
    border: none;
    border-radius: 50%;
    /* Makes it a circle */
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

    /* Hidden by default with a transition effect */
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

/* Hover effects */
#scrollToTopBtn:hover {
    background-color: #e8a33d;
    transform: translateY(-5px);
    /* Subtle lift on hover */
}

/* Class to reveal the button via JavaScript */
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
}


/* =========================
   Mobile
========================= */
@media (max-width: 480px) {
    #scrollToTopBtn {
        width: 42px;
        height: 42px;

        right: 15px;
        bottom: 20px;

        font-size: 18px;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width: 360px) {
    #scrollToTopBtn {
        width: 38px;
        height: 38px;

        right: 12px;
        bottom: 15px;

        font-size: 16px;
    }
}



/* ==========================================
   CLIENT LOGOS CAROUSEL
========================================== */

.client-logos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clientLogosSwiper {
    width: 100%;
    overflow: hidden;
}

.clientLogosSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}


/* ==========================================
   LOGO SLIDE
========================================== */

.clientLogosSwiper .swiper-slide {
    width: 180px !important;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* =========================================
   CLIENT LOGOS - TWO ROWS
========================================= */

.client-logos-carousel {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.clientLogosSwiper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.clientLogosSwiper:last-child {
    margin-bottom: 0;
}


/* Each logo item */

.clientLogosSwiper .swiper-slide {
    width: 190px !important;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* Logo */

.clientLogosSwiper .client-logo {
    display: block;

    width: auto;
    height: auto;

    max-width: 160px;
    max-height: 75px;

    object-fit: contain;

    margin: 0 auto;

    transition: transform 0.3s ease;
}


/* Optional hover */

.clientLogosSwiper .swiper-slide:hover .client-logo {
    transform: scale(1.08);
}


/* Mobile */

@media (max-width: 768px) {

    .clientLogosSwiper .swiper-slide {
        width: 150px !important;
        height: 85px;
    }

    .clientLogosSwiper .client-logo {
        max-width: 125px;
        max-height: 60px;
    }

    .clientLogosSwiper {
        margin-bottom: 12px;
    }
}