/* CSS BOILER PLATE */

* {
    margin: 0;
    padding: 0;
    font-family: "proxima-nova", sans-serif
}
:root{
    --black: #1C1C1C;
    --blue: #0070AD;
}

:root[data-theme="light"]{
    --bg-color: #fff;
    --theme-heading: #000;
}
:root[data-theme="dark"]{
    --bg-color: #000;
    --theme-heading: #fff;
}
/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Background color of the track */
    /*border-radius: 10px;  */
}

::-webkit-scrollbar-thumb {
    background-color: #FFC30D;
    /* Color of the scrollbar handle */
    /*border-radius: 10px; */
    border: 3px solid #f1f1f1;
    /* Border color around the scrollbar handle */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e0b700;
    /* Darker shade of #FFC30D on hover */
}


body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "proxima-nova", sans-serif
}

body ul li {
    font-family: "proxima-nova", sans-serif
}

body a {
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-family: "proxima-nova", sans-serif
}

a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0
}

html body a:focus {
    outline: none;
    outline-offset: none;
}

body p {
    font-size: 18px;
    line-height: 24px;
    font-family: "proxima-nova", sans-serif;
	text-align: justify;
}

body h1 {
    font-size: 72px;
    line-height: 82px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: "proxima-nova", sans-serif
}

body h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme-heading);
    font-family: "proxima-nova", sans-serif
}

body h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-family: "proxima-nova", sans-serif
}

body h4 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 600;
}

body h5 {
    font-family: "proxima-nova", sans-serif
}

body h6 {
    font-family: "proxima-nova", sans-serif
}

body img {
    width: 100%;
    max-width: none;
}

.padding {
    padding: 100px 0px;
}

section {
    position: relative;
    background-color: var(--bg-color);
}
.main_head {
    margin-bottom: 32px;
}
/* MAIN CTA */

a.lsc_button:hover svg * {
    fill: #fff;
    stroke: #fff;
}
a.lsc_button.white svg * {
    fill: #fff;
    stroke: #fff;
}
a.lsc_button.active {
    border-color: #fff;
    color: #fff;
}
a.lsc_button:hover {
    background: var(--black);
    color: #fff;
}
a.lsc_button {
    color: var(--theme-heading);
    border: 1px solid var(--theme-heading);
    padding: 14px 36px;
    border-radius: 85px;
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
a.lsc_button svg * {
    fill: var(--theme-heading);
    stroke: var(--theme-heading);
}
a.lsc_button.white {
    border-color: #fff;
    color: #fff;
}
a.cta_small {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    column-gap: 12px;
    align-items: center;
}
/* HERO SECTION */

section.hero_banner:after {
    content: "";
    position: absolute;
    height: 91%;
    width: 100%;
    background: linear-gradient(to top, #fff 36%, #fff0);
    bottom: -23%;
}

.hero_banner_inner img {
    height: 92vh;
}
.hero_main_content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.slide_grid_box {
    margin-right: 40px;
    position: relative;
    overflow: hidden;
}
.slide_content_more_inner h3 {
    color: #fff;
}
section.group_companies {
    padding-top: 51px;
    margin-top: -84px;
}
@media (min-width: 1520px){
	section .container , header .container , footer .container {
    width: 1520px;
    max-width: 90%;
    margin: auto;
}
	
}
.slide_grid_box_content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    overflow: hidden;
    transition-delay: 0s;
    transition: 0.5s;
}
.slide_grid_box img{
    transition: 0.3s ease-in-out;
}
.slide_grid_box:hover img{
    transform: scale(2);
    transform-origin: top left; 
}

.slide_grid_box_content h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
}

.slide_grid_box_content p {
    color: #fff;
    transform: translateX(120%);
    transition: 0.3s ease-in-out;
    transition-delay: 0s;
}
.slide_grid_box_content a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease-in-out;
    transform: translateY(100px);
    transition-delay: 0s;   
}
.slide_grid_box_content:hover a {
    transform: none;
    display: flex;
    align-items: center;
    transition-delay: 0.1s;
}
.slide_grid_box_content a {
    color: #fff;
    font-size: 20px;
    transition: all .3s ease-in-out;
    transform: translateY(100px);
    transition-delay: 0s;
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.slide_grid_box_content:hover{
    background-color: #0070AD;
    transition-delay: 0.1s;  
}
.sld_bottom .navs {
    display: flex;
    column-gap: 32px;
}
.sld_bottom {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
}
button.slider-button svg * {
    fill: var(--theme-heading);
    stroke: var(--theme-heading);
}
button.slider-button:hover svg * {
    fill: var(--bg-color);
    stroke: var(--bg-color);
}

 button.slider-button:hover {
    background: var(--theme-heading);
}
button.slider-button svg{
    fill: var(--theme-heading);
    stroke: var(--theme-heading);
}
button.slider-button {
    height: 45px;
    width: 45px;
    background: transparent;
    border: 1px solid var(--theme-heading);
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.about_content_slider {
    width: 45%;
    padding: 48px;
    height: 380px;
    box-shadow: 0px 0px 50px 0px #00000026;
    background: #fff;
}
.about_content_slider_outer{
    margin-top: -280px;
    position: relative;
    z-index: 99;

}
.acs_content h3 {
    margin-bottom: 24px;
}
.acs_box_inner {
    display: flex;
    flex-direction: column;
    height: 280px;
    justify-content: space-between;
    align-items: end;
}
.about_slider_nav .dots ul.slick-dots {
    position: static;
}
.about_slider_nav {
    display: flex;
    column-gap: 20px;
}

.about_slider_nav button.slick-arrow {
    background: transparent !important;
    border: navajowhite;
}
.industries_slider_main.slick-initialized.slick-slider , .company_slider_main.slick-initialized.slick-slider {
    margin-right: -30px;
}
.company_slider_outer {
    overflow: hidden;
}
/* SUSTAINALBITY */

 h2.mini_head:before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #00000094;
    top: calc(50% - 1px);
    position: absolute;
    transform: translateX(-30px);
}

 h2.mini_head {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 18px;
    margin-left: 35px;
    color: #00000094;
    position: relative;
}
.global_main {
    display: grid;
    grid-template-columns: 1fr 66.5%;
}
.counter_box h3 {
    font-size: 64px;
    line-height: 74px;
    margin-bottom: 12px;
    color: var(--blue);
}
.global_counter ul li {
    padding-left: 32px;
    border-left: 2px dotted var(--theme-heading);
}
.global_counter {
    height: 100%;
    display: flex
;
    align-items: center;
}
.global_counter ul {
    display: grid;
    gap: 60px;
}
.counter_box p {
    color: var(--theme-heading);
}
.sustain_main {
    display: grid;
    grid-template-columns: 75% 1fr;
}
.sustain_cont_box {
    display: flex;
    align-items: center;
}
.sustain_box_inner {
    padding: 48px;
    width: 164%;
    margin-left: -63.11%;
    background: #fff;
    height: 74%;
    box-shadow: 0px 0px 50px 0px #00000026;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}
.sustain_box_content {
    width: 100%;
}


/* CAREER SECTION CSS */

.career_left_box * {
    color: #fff !important;
}
.career_left_box {
    background: var(--blue);
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.career_left_box h2.mini_head:before {
    background: #fff;
}
.career_left_box_content h3 {
    font-size: 24px;
    line-height: 32px;
}
.home_career_outer {
    display: grid;
    gap: 52px;
    grid-template-columns: 32% 1fr;
}
.home_career_right {
    display: grid;
    grid-template-columns: 1fr 76%;
}
.article_left_box_outer {
    display: flex;
    align-items: center;
}
.article_left_box_outer_main {
    box-shadow: 0px 0px 50px 0px #00000026;
    height: 80%;
    padding: 48px;
    width: 200%;
    background: #fff;
    margin-right: -92%;
    position: relative;
    z-index: 99;
}
.article_left_box h3 {
    font-size: 24px;
    line-height: 34px;
}
.article_left_box_outer_main {
    box-shadow: 0px 0px 50px 0px #00000026;
    height: 80%;
    padding: 48px;
    width: 200%;
    background: #fff;
    margin-right: -100%;
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

/* FOOTER */

.email_form_main input {
    padding: 14px;
    border: none;
    font-size: 20px;
    outline: none !important;
    background-color: transparent;
}
.email_form_main {
    display: inline-block;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--theme-heading);
}
.email_form {
    width: 40%;
}
.email_form h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 40px;
}
.email_form_outer {
    margin-bottom: 108px;
}
.footer_main {
    display: grid;
    grid-template-columns: 75% 1fr;
}

.footer_logo {
    text-align: center;
    margin-bottom: 40px;
}
.footer_logo img {
    filter: brightness(0);
    width: 160px;
}
.footer_nav nav ul li a {
    color: var(--theme-heading);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}
.footer_main_right {
    padding-left: 175px;
}
.social-links ul {
    display: flex;
    justify-content: center;
    column-gap: 8px;
}
.copyright {
    margin-top: 100px;
}
.copyright p{
    color: var(--theme-heading);
}
footer.footer {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color) 100%);
    overflow: hidden;
}
.footer_nav nav ul li a:hover::before {
    opacity: 1;
}
.footer_nav nav ul li a:hover {
    color: var(--blue);
    padding-left: 20px;
}
.footer_nav nav ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

/*BREAD CRUM CSS*/


section.breadcrum img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bread_title h1 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.bread_title {
    position: absolute;
    bottom: 32px;
}

section.breadcrum {
    position: relative;
}

section.breadcrum:before {
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #000, #00000000);
    display: block;
    position: absolute;
}

/* ABOUT PAGE CSS */

.apo_outer_content {
    width: 56.29%;
}

.apo_outer_content p {
    margin: 0;
}

.apo_outer_content {
    width: 56.29%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 48px;
}

.apo_outer_boxes ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.apo_box_head h3 {
    font-size: 24px;
    line-height: 34px;
}

.apo_outer_boxes ul li {
    overflow: hidden;
    height: 340px;
    display: inline-block;
    background: #F1F1F1;
    padding: 20px;
    position: relative;
}

.apo_box_para {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    transform: translateY(340px);
    transition: 1.6s cubic-bezier(0.25, 0.1, 0, 1.21);
}

.apo_box_head {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: end;
    transition: 1.6s cubic-bezier(0.25, 0.1, 0, 1.21);
    transition-delay: 0.6s;
}

.apo_box {
    height: 100%;
    width: 100%;
}

.apo_box:hover .apo_box_head {
    transform: translateY(-340px);
    transition-delay: 0s;
}

.apo_box:hover .apo_box_para {
    transform: translateY(0);
    transition-delay: 0.6s;
}

.apo_box_para {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    transform: translateY(340px);
    transition: 0.7s cubic-bezier(0.24, 0.01, 0.88, 1.05);
    transition-delay: 0s;
}
section.ab_mision_vision {
    overflow: hidden;
}
.mision_image {
    height: 100%;
    position: relative;
}

.mision_image img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    width: 50vw;
    left: 0;
}

.mision_box_inner * {
    color: #fff;
    margin-right: 20%;
    position: relative;
    z-index: 99;
}

.mision_box_inner {
    padding: 75px 0px;
    position: relative;
}

.mision_box_inner:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 50vw;
    display: block;
    background: var(--blue);
    top: 0;
    right: 0;
}

.mision_box_inner.vision:before {
    background: #000;
}
.mision_box_inner h2 {
    margin-bottom: 24px;
}
.about-accordian-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0px 0px 50px 0px #00000026;
    row-gap: 32px;
}

.about-accordian-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}


.about-accordian-section {
    border-bottom: 1px solid #e0e0e0;
}

.about-accordian-section:last-child {
    border-bottom: none;
}

.value_box .mision_box_inner {
    height: 100%;
}
.value_box {
    height: 100%;
}
.value_box .mision_box_inner {
    padding-left: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.value_box .mision_box_inner * {
    margin: 0;
}
.value_icon {
    width: 125px;
    margin-bottom: 24px !important;
}
.value_box .mision_box_inner:before {
    left: 0;
    background: #424242;
}
.about-accordian-title {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding-right: 20px;
}

.about-accordian-title:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

.about-accordian-symbol {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.about-accordian-title:hover .about-accordian-symbol {
    transform: scale(1.2);
}

.about-accordian-toggler {
    margin-left: auto;
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.about-accordian-title.about-accordian-open .about-accordian-toggler {
    transform: rotate(180deg);
}

.about-accordian-title.about-accordian-open .about-accordian-toggler::before {
    content: "−";
}

.about-accordian-title .about-accordian-toggler::before {
    content: "+";
}

.about-accordian-details {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px 0 36px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.about-accordian-details.about-accordian-visible {
    max-height: 200px;
    padding: 0 15px 15px 0px;
    opacity: 1;
}

.about-accordian-team-symbol {
    background-color: #ff6347;
}

.about-accordian-bank-symbol {
    background-color: #4682b4;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.about-accordian-customer-symbol {
    background-color: transparent;
    border: 2px solid #666;
}



/* MILESTONE PAGE CSS */

.milestone_main_inner ul {
    width: 81.418%;
    margin: auto;
}
.milestone_main_inner ul li:nth-child(even) {
    float: right;
}
.milestone_main_inner ul li {
    width: 50%;
    float: left;
    clear: both;
    margin-bottom: 50px;
}
.milestone_main_inner ul li .milestone_box h3:before {
    content: '';
    height: 8px;
    width: 57px;
    display: block;
    background: var(--blue);
    float: right;
    margin-bottom: 24px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
}
.milestone_main_inner ul li .milestone_box h3 {
    position: relative;
    padding-top: 32px;
}
.milestone_main_inner ul li .milestone_box{
    text-align: right;
    margin-right: 185px;
}
.milestone_main_inner ul li:nth-child(even) .milestone_box h3:before {
    left: 0;
}
.milestone_main_inner ul li:nth-child(even) .milestone_box {
    text-align: left;
    margin-left: 185px;
    margin-right: 0;
}
.milestone_outer {
    position: relative;
}
.milestone_main_inner:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    left: 50%;
    display: block;
    background: #000;
}
.milestone_main_inner ul li .milestone_box h3 {
    position: relative;
    padding-top: 32px;
    font-size: 48px;
    line-height: 58px;
}
.milestone_main_inner ul li{
    position: relative;
}
.milestone_main_inner ul li:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    display: block;
    right: -10px;
    background: var(--blue);
    top: 0;
    border-radius: 50%;
}
.milestone_main_inner ul li:nth-child(even):before {
    left: -10px;
}


/* Sustainablity Page CSS */

.head_content {
    width: 57%;
}
.head_content p {
    margin: 0;
}
.head_content {
    width: 57%;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.sustain_main_outer ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.sustain_box_title {
    background: #fff;
    width: 83.4%;
    position: relative;
    padding: 28px 48px 44px 48px;
    margin-left: auto;
    box-shadow: 0px 0px 50px 0px #00000026;
    transform: translateY(-50%);
}
.sustain_box_title h3 {
    font-size: 24px;
    line-height: 34px;
}

/*INDUSTRIES PAGE CSS*/

ul.all_industries_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
}
ul.all_industries_main li .slide_grid_box {
    margin: 0;
}
.slide_content_more_inner {
    width: 100%;
}
.slide_grid_box_content:hover p {
    transform: none;
    transition-delay: .1s;
}
.slide_grid_box_content {
    background: linear-gradient(to bottom, #00000080, transparent);
}

.companies_main_overview {
    display: grid;
    grid-template-columns: 70% 1fr;
    gap: 158px;
}
section.company_main {
    padding: 100px 0px;
}
.cmo_right {
    border-left: 1px solid #000;
}
.companies_main_overview {
    display: grid;
    grid-template-columns: 66.5% 1fr;
    gap: 158px;
}
.cmo_right {
    padding-left: 80px;
}
.cmo_right h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 28px;
}
.cmo_left_ocntent {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 28px;
}
.cmo_left_ocntent p {
    margin: 0;
}

/*Industry Single Page*/

.industry_single_tabs {
    padding: 60px 0px;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 22px 0px #0000000D;
}
.industry_tabs_outer ul {
    display: inline-flex;
    column-gap: 12px;
    border: 1px solid #D9D9D9;
    padding: 6px;
    border-radius: 120px;
}
.industry_tabs_outer ul li a {
    color: #000;
    padding: 12px 32px;
    display: inline-block;
    position: relative;
    z-index: 99;
}
.industry_tabs_outer ul li.active a{
    color: #fff;
}
.industry_tabs_outer ul li.active a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    z-index: -1;
    border-radius: 120px;
}
section.industry_single_overview {
    padding: 60px 0px;
}
.iso_outer_content p {
    margin: 0;
}
.iso_outer_content {
    width: 56.29%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.ind_companies_main {
    display: grid;
    grid-template-columns: 75% 25%;
}
.ind_companies_box_content {
    width: 100%;
}
.ind_sl_outer_cont {
    height: 75%;
    transform: translateY(12.5%);
    width: 165%;
    margin-left: -64%;
    background: #fff;
    padding: 40px;
    box-shadow: 0px 0px 50px 0px #00000026;
}
.ind_sl_outer {
    height: 100%;
}
.ind_sl_outer .slick-slider ,.ind_sl_outer .slick-list , .ind_sl_outer .slick-track , .ind_sl_outer .slick-slide > * {
    height: 100%;
}
.ind_companies_box_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.ind_companies_box {
    height: 100%;
}
.industries_sections_main section#companies .sld_bottom {
    justify-content: end;
}
.ind_companies_slider_outer .industrysingleimage img {
    height: 540px !important;
    object-fit: cover;
}


.slide_content_more_inner p {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CONTACT */
/* Existing styles remain unchanged */
.contact_form_main {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact_form_left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.contact_form_left h2:hover {
    color: #007bff;
}

.contact_form_left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.download_catalouge_contact {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download_catalouge_contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.dcc_image {
    flex: 0 0 100px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.dcc_image:hover {
    transform: scale(1.05);
}

.dcc_text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.dcc_text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #666;
}

.dcc_text .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dcc_text .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.contact_form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.contact_form h3:hover {
    color: #007bff;
}

.contact_form form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_form form:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    height: 120px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact_form_left h2 {
        font-size: 2rem;
    }

    .contact_form h3 {
        font-size: 1.5rem;
    }

    .download_catalouge_contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .dcc_image {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .contact_form form {
        padding: 20px;
    }
}

.modal-body .col-md-8 {
    height: 450px;
    overflow-y: scroll;
}

/* Address section styling */
section.address_details .address_inner_details {
    background: #333;
    height: 100%;
    padding: 2rem;
    color: #fff;
}

section.address_details .address_inner_details h3 {
    margin-bottom: 12px;
    color: #fff;
}

section.address_details .address_inner_details .address_location {
    margin-bottom: 48px;
}

section.address_details .address_inner_details .address_desc_sec h3 {
    color: #CCC;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
}

section.address_details .address_inner_details .address_desc_sec p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 48px;
}

.address_desc_sec .contact_num a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.address_desc_sec .contact_num a svg {
    width: 20px;
    fill: #fff;
}

.address_desc_sec a.btn-direction svg {
    width: 20px;
    fill: var(--blue);
}

.address_desc_sec a.btn-direction {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    width: fit-content;
    padding-bottom: 12px;
}

.address_desc_sec a.btn-visit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.address_desc_sec a.btn-visit svg {
    width: 18px;
    fill: var(--blue);
}

.address_desc_sec a.btn-visit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    width: fit-content;
}

section.address_details .iframe_container {
    height: 100%;
}

.address_location a.location_link {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
}

section.address_details .address_inner_details .address_location span {
    padding: 0px 12px;
}

section.address_details.padding {
    background: var(--theme-heading);
}

section.address_details .main_head h2 {
    color: var(--bg-color);
}

section.address_details .address_main_outer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 64px;
}

section.address_details .address_main_outer:last-child {
    margin: 0;
}

.contact_info {
    padding-right: 40px;
}

.contact_info p, .contact_info p a {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    line-height: 30px;
	text-transform: uppercase;
}

.contact_info img {
    width: 25% !important;
    margin-bottom: 28px;
}

.contact_info span {
    font-size: 20px;
    line-height: 30px;
}

/* Custom Tab Styling - White on Black Background */
.custom-tabs {
    display: flex;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.custom-tab-item {
    margin-right: 5px;
}

.custom-tab-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px 5px 0 0;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-tab-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-tab-link.active {
    background-color: #ffffff;
    color: #333333;
}

.custom-tab-content {
    display: none;
}

.custom-tab-content.active {
    display: block;
}
.contact_form_left ul li span {
    font-size: 20px;
    margin-bottom: 2px;
    display: block;
    font-weight: 600;
}
.contact_form_left ul {
    list-style: disc;
    padding-left: 16px;
    display: flex
;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 40px;
}
.download_catalouge_contact {
    width: 80%;
}

.sustain_box_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.sustain_box_image {
    box-shadow: 0px 0px 50px 0px #00000026;
}