@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root {
    --primary-color: #EFA336;
    --secondary-color: #3D8E43;
    --white-color: #fff;
    --black-color: #1a1a1a;
    --gray-color: #f5f5f5;
    --font-family: "DM Sans", sans-serif;
    --font-family-secondary: "Playfair", serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
    overflow-x: clip !important;
}

body {
    font-family: var(--font-family) !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: clip !important;
}

a {
    text-decoration: none !important;
    color: inherit;
}

header.site-header {
    background: #fff;
    padding: 20px 0;
    /* padding: 14px 0; */
    position: fixed;
    width: 100%;
    z-index: 1050;
}

.headerspace_wrapper {
    padding-top: 95px;
}

header.site-header.affix {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 50px;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu ul li a.active,
.nav-menu ul li a:hover {
    color: var(--secondary-color);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--black-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    outline: none;
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary .icon-wrap {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
}

.btn-primary .icon-wrap svg {
    position: absolute;
    top: 0;
    left: 0;
}

.btn-primary .icon-wrap svg.arrow-one {
    transform: translate(0, 0);
    transition: transform 0.2s ease 0.2s;
}

.btn-primary .icon-wrap svg.arrow-two {
    transform: translate(-100%, 100%);
    transition: transform 0.2s ease 0s;
}

.btn-primary:hover .icon-wrap svg.arrow-one {
    transform: translate(100%, -100%);
    transition: transform 0.2s ease 0s;
}

.btn-primary:hover .icon-wrap svg.arrow-two {
    transform: translate(0, 0);
    transition: transform 0.2s ease 0.2s;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 10px;
    background: #000000;
    transition: background-color 0.3s ease;
}

.hero_section {
    margin: 0 30px;
    height: 85vh;
    overflow: hidden;
    border-radius: 30px;
    background-image: url(../images/banner_image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero_banner_content {
    position: absolute;
    bottom: 80px;
}

.hero_banner h1 {
    font-family: var(--font-family);
    font-size: 61px;
    color: var(--white-color);
    line-height: 1;
}

.hero_banner h1 span {
    font-family: var(--font-family-secondary);
    font-size: 49px;
    color: var(--primary-color);
    font-style: italic;
}

.hero_banner p {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.hero_circle_img {
    display: flex;
    align-items: end;
    justify-content: end;
    height: 75vh;
}

.hero_circle_img img {
    -webkit-animation: rotating 15s linear infinite;
    animation: rotating 15s linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}


/* --------------- home about section --------------------- */
.home_about_img {
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}

.count_box {
    position: absolute;
    bottom: 40px;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
}

.count_box h4 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    color: #333333;
    text-shadow: 0 4px 4px #EFA336;
}

.count_box p {
    font-size: 24px;
    font-family: var(--font-family-secondary);
    font-style: italic;
    font-weight: 500;
    white-space: nowrap;
}

.home-about {
    padding: 50px 0;
    background-image: url(../images/why_bg_light.svg);
    background-size: 700px;
    background-position: top 50% right -50px;
    background-repeat: no-repeat;
}

.main_heading {
    font-size: 49px;
    margin-bottom: 0px;
}

.sub_heading {
    font-size: 39px;
    font-family: var(--font-family-secondary);
    font-style: italic;
    color: var(--primary-color);
}

.home_about_texts {
    display: flex;
    align-items: center;
    height: 100%;
}

/* ----------------- home services section --------------------- */
.home-services {
    padding: 80px 0;
}

.hading_flex {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #FFE3BC;
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.service-items-box {
    background-color: #FAF6EC;
    border-radius: 20px;
    padding: 45px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}


.service-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.4;
    width: 80%;
}

.service-items-box a {
    cursor: none;
    display: block;
}

.service-items-box a * {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.mob_btn_center {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* =============== why choose section =============== */
.whychoose {
    padding: 80px 0 56px 0;
    background-color: #181817;
    background-image: url(../images/lines.svg), url(../images/why_bg.webp), url(../images/why_bg_light.svg);
    background-size: contain, 700px, 900px;
    background-position: center, right 13% bottom 50px, right -300px top -200px;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.whychoose .hading_flex{
    margin-bottom: 10px;
}


.hading_flex .first_div {
    width: 50%;
}

.hading_flex .second_div {
    width: 50%;
}

.whychoose_box {
    background-color: #fff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    transition: all 0.3s ease;
}

.whychoose_box:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.whychoose_box .why_img_box {
    height: 61px;
    width: 61px;
    background: #FAF6EC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.whychoose_box h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.4;
}

.whychoose_box p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
}

/* =============== why choose section =============== */

.mbc_projects {
    padding: 80px 0 0 0;
    background-color: #ffffff;
}

.project-card {
    padding: 0 12px;
}

.project-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 9 / 11;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #e9e9e9;
}

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

.project-card h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--black-color);
    margin-bottom: 0px;
}

.project-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.projects-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 8px;
}

.projects-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-slider .slick-dots li.slick-active button {
    background: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

.slider-arrows {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.slider-arrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black-color);
}

.slider-arrows button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


/* =============== our clients section =============== */

.ourclients {
    padding: 80px 0 100px 0;
}

.client_box {
    background-color: #FAF6EC;
    border-radius: 30px;
    padding: 50px;
}

.hading_clients {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FFE3BC;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.hading_clients h3 span {
    font-family: var(--font-family-secondary);
    font-style: italic;
    color: var(--primary-color);
}

.clients_flex {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
    align-items: center;
    place-items: center;
}

.clients_flex img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.client_space {
    padding: 16px;
    /* border: 1px solid #FFE3BC; */
    border-radius: 10px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

/* ================== steps section ================== */

.home_steps {
    padding: 0 0 80px 0;
}

.step_img {
    height: 350px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 16px;
}

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

.steps_list {
    padding-left: 40px;
    height: 100%;
    padding-top: 10px;
    margin-left: 20px;
    position: relative;
}

.steps_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #FFE3BC;
    background: linear-gradient(0deg, rgba(255, 227, 188, 0) 0%, rgba(255, 227, 188, 1) 50%, rgba(255, 227, 188, 0) 100%);
}

.step_item {
    display: flex;
    gap: 24px;
    margin-bottom: 45px;
}

.step_item:last-child {
    margin-bottom: 0;
}

.step_num h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}

.step_content h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--black-color);
}

.step_content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============== cta section =============== */

.cta_section {
    padding: 60px 0;
    background-image: url(../images/lines.svg), url(../images/cta_bg.webp);
    background-size: 900px, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

/* ================== footer ================== */

footer {
    background-color: #000000;
    padding: 32px 0 0 0;
}

.footer_logo img {
    height: auto;
    max-height: 50px;
}

.footer_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    position: relative;
}

.footer_social ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_social ul li a {
    display: block;
    color: #fff;
}

.footer_social ul li a i {
    font-size: 26px;
    transition: all 0.3s ease;
}

.footer_social ul li a i:hover {
    color: var(--primary-color);
}

.footer_span {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(48, 48, 47, 0) 0%, rgba(48, 48, 47, 1) 50%, rgba(48, 48, 47, 0) 100%);
    margin-bottom: 40px;
}

.footer_about p {
    color: var(--white-color);
    width: 75%;
}

.footer_about h4 {
    color: var(--primary-color);
    font-family: var(--font-family-secondary);
    font-style: italic;
    font-size: 24px;
    margin-bottom: 24px;
}

/* .footer_btn {
    background-color: var(--white-color);
} */

.footer_links h4 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

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

.footer_links ul li {
    margin-bottom: 16px;
}

.footer_links ul li a {
    color: var(--white-color);
    opacity: 0.7;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-decoration: none;
    display: flex;
    align-items: start;
    gap: 10px;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer_links ul li a img {
    margin-top: 3px;
}

.footer_links ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer_links ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(52%) saturate(649%) hue-rotate(349deg) brightness(97%) contrast(92%);
}

.copyright {
    padding: 32px 0;
    background: linear-gradient(180deg, rgba(61, 142, 67, 0) 0%, rgba(61, 142, 67, 0.2) 100%);
}

.copyright p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    opacity: 0.7;
}

.copyright p a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright p a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}


/* ================== About page ================== */
.inner_banner {
    padding: 150px 0 40px 0;
    background-size: cover, 900px, cover !important;
    background-position: center, center, center !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    border-radius: 30px 30px 0 0;
}
.about_banner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%), url(../images/lines.svg), url(../images/about_banner.webp);
}
.contact_banner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%), url(../images/lines.svg), url(../images/contact_banner.webp);
}
.services_banner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%), url(../images/lines.svg), url(../images/services_banner.webp);
}

.inner_banner_head {
    font-size: 56px;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
}

.banner_sub_heading {
    font-family: var(--font-family-secondary);
    font-style: italic;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
}

.about_section {
    padding: 80px 0;
}

.about_img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about_img img {
    position: absolute;
    bottom: -117px;
}

.mission_vision {
    padding: 80px 0 80px 0;
    background-color: #000000;
    background-image: url(../images/why_bg_light.svg);
    background-size: 900px;
    background-position: right -300px top -200px;
    background-repeat: no-repeat;
}

.vision_image {
    padding-right: 100px;
    position: relative;
}

.vision_image img {
    border-radius: 24px;
    width: 100%;
}

.vision_content {
    color: var(--white-color);
    padding: 40px;
    background-color: #232323;
    border-radius: 24px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 80%;
    right: 0px;
}

.vision_content .main_heading {
    margin-bottom: 8px;
}

.vision_content p {
    opacity: 0.7;
    margin-bottom: 0;
    font-weight: 300;
}

.mission_content {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 60px;
}

.mission_content .main_heading {
    margin-bottom: 8px;
}

.mission_content p {
    opacity: 0.7;
    margin-bottom: 0;
    font-weight: 300;
}

.mission_content ul {
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
}

.mission_content ul li {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
    color: #fff;
    opacity: 0.7;
}

.core_expertise {
    padding: 80px 0;
}

.core_expertise_box {
    padding: 16px;
    background-color: #FAF6EC;
    border-radius: 24px;
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.core_expertise_image {
    height: 250px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px
}

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

.core_heading {
    font-size: 32px;
}

.core_expertise_content {
    padding: 0 16px;
}

/* ================== Structure section ================== */

.structure_section {
    background-image: url(../images/structure_bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    background-color: #1a1a1a;
    background-attachment: fixed;
}

.structure_left {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.structure_left p {
    width: 70%;
}

.structure_timeline {
    position: relative;
}

.timeline_item {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    z-index: 2;
}

.timeline_item::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 61px;
    height: 100%;
    width: 1px;

    background: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.4) 0,
            rgba(255, 255, 255, 0.4) 6px,
            transparent 6px,
            transparent 14px);
}

.timeline_item.hide-line::after {
    display: none;
}

.last_timieline::after {
    display: none !important;
}

.timeline_icon {
    width: 61px;
    height: 61px;
    background: #FAF6EC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline_icon img {
    width: 40px;
    height: 40px;
}

.timeline_content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.timeline_content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
}

.timeline_button {
    /* padding-left: 72px; */
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.view_more_btn {
    background-color: var(--primary-color);
    color: var(--black-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;

}

.view_more_btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* ================== Quality Policy section ================== */

.quality_policy_section {
    padding: 80px 0 80px 0;
}

.health_section {
    padding: 0 0 80px 0;
}

.quality_policy_wrapper {
    background-color: #FAF6EC;
    border-radius: 30px;
    padding: 50px;
}

.quality_divider {
    height: 1px;
    background: #EED7B5;
    /* background: linear-gradient(90deg, rgba(238,215,181,1) 0%, rgba(238,215,181,0) 100%); */
    margin-bottom: 20px;
}

.quality_feature_box {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.quality_img_wrap img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    margin-bottom: 24px;
}

.quality_feature_box h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.quality_feature_box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.quality_footer_box {
    background: linear-gradient(90deg, #EFA336 0%, #FDF4E5 100%);
    border-radius: 16px;
    padding: 24px 30px;
}

.health_box {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.health_box h5 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.health_box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5;
}

.safety_image {
    max-width: 200px;
}

/* ============ All Services Page ============ */
.all_services_section {
    padding: 80px 0;
}

.service_btn_align {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 50%;
    gap: 24px;
}

.service_outline_btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.service_outline_btn:hover {
    border: 1px solid var(--secondary-color);
}

.all_services_section .quality_divider {
    margin: 40px 0 60px 0;
    background: #FFE3BC;
}

.service_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 24px;
    justify-content: start;
}

.all_service_heading {
    font-size: 24px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 8px;
}

.service_card p {
    color: #333;
    font-size: 16px;
}

.service_image {
    height: 310px;
    overflow: hidden;
    border-radius: 16px;
}

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

.service_icon {
    margin-bottom: 1.5rem;
}

.service_icon img {
    height: 45px;
    width: auto;
}

.service_vertical_divider {
    position: relative;
}

@media (min-width: 991px) {
    .service_vertical_divider::after {
        content: '';
        position: absolute;
        top: 50px;
        bottom: 50px;
        right: 0;
        width: 1px;
        background: linear-gradient(to bottom, #ffe3bc00 0%, #FFE3BC 50%, #ffe3bc00 100%);
    }
}

.service_horizontal_divider {
    width: 100%;
    height: 1px;
    background: #FFE3BC;
    margin: 40px 0 60px 0;
}

/* =============== Industries Serve Section ================== */
.industries_serve_section {
    padding: 80px 0;
}

.industries_serve_container {
    background-color: #FAF6EC;
    border-radius: 24px;
    padding: 50px;
}

.industries_serve_container .main_heading {
    margin-bottom: 0px;
    color: var(--black-color);
}

.industries_serve_container .sub_heading {
    margin-top: 0px;
    margin-bottom: 30px;
}

.industry_card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: calc(100%);
}

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

.industry_icon {
    margin-bottom: 20px;
}

.industry_icon img {
    height: 50px;
    object-fit: contain;
}

.industry_title {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    margin-top: auto;
    margin-bottom: 0;
}

/* =============== Contact ============== */

.address_form {
    padding: 40px 0 80px 0;
}

.address_main_texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 32px;
    padding-right: 32px;
}

.address_main_texts h3 {
    font-size: 39px;
    color: #333;
    font-weight: 500;
    margin-bottom: 0px;
}

.address_main_texts h4 {
    font-size: 32px;
    color: var(--primary-color);
}

.address_flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.address_box h5 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

.address_box p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.address_box a {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.address_box a:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.address_main_texts iframe {
    border-radius: 20px;
}

/* =============== Contact Form Styling ============== */
.custom-contact-form {
    background-color: #FAF6EC;
    border-radius: 30px;
    padding: 50px;
}

.custom-contact-form h3 {
    font-size: 39px;
    color: #333;
    font-weight: 500;
    margin-bottom: 0px;
}

.custom-contact-form .form-desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.5;
}

.custom-contact-form .form-group.border-bottom-only {
    margin-bottom: 25px;
    border-bottom: 1px solid #D9D9D9;
}

.custom-contact-form label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.custom-contact-form .required-star {
    color: red;
}

.custom-contact-form .form-control {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    box-shadow: none;
}

.custom-contact-form .form-control:focus {
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.custom-contact-form .form-control::placeholder {
    color: #555;
    opacity: 1;
}

.custom-contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #555;
}

.custom-contact-form .select-wrapper {
    position: relative;
}

.custom-contact-form .select-wrapper::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.custom-contact-form .btn-primary {
    padding: 16px 28px;
    font-size: 14px;
}

/* =============== Custom Enquire Modal =============== */
.custom-enquire-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.custom-enquire-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-enquire-modal-content {
    background-color: #FAF6EC;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.custom-enquire-modal-overlay.active .custom-enquire-modal-content {
    transform: translateY(0);
}

.close-enquire-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-enquire-modal:hover {
    color: var(--primary-color);
}

/* =============== Sticky Contact Buttons =============== */
.sticky-contact-buttons {
    position: fixed;
    bottom: 80px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sticky-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.whatsapp-btn {
    background-color: #098a38;
}

.whatsapp-btn:hover {
    background-color: #00ad26;
}

.phone-btn {
    background-color: #095fff;
}

.phone-btn:hover {
    background-color: #df8911;
}

.field-error {
    display: none;
    font-size: 12px;
    color: #d9534f;
    margin-top: 4px;
}

.form-response-msg {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.form-msg-success {
    background-color: #eaf7ec;
    color: #2d7a38;
    border: 1px solid #a3d9a8;
}

.form-msg-error {
    background-color: #fdf2f2;
    color: #c0392b;
    border: 1px solid #e8a9a9;
}

@media (max-width: 768px) {
    .sticky-contact-buttons {
        bottom: 80px;
        right: 20px;
        gap: 10px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}