@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
}

html {
    font-family: "Raleway", sans-serif;
    scroll-padding-top: 250px;
}

.header {
    position: relative;
    z-index: 999;
    width: 100%;
}

.navbar-brand {
    padding-top: 0 !important;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ecca71 !important;
    font-weight: 600 !important;
}

.nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
}

.dropdown-toggle::after {
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.navbar-nav li:nth-child(-n + 9):after {
    content: "";
    border-right: 2px solid #a0a1a8;
    display: block;
    width: 100%;
    height: 10px;
    margin-top: -39px;
}

.navbar-nav .dropdown li:nth-child(-n + 9):after {
    content: "";
    border-right: 2px solid #1f2235;
    display: none;
    width: 100%;
    height: 10px;
    margin-top: -39px;
}

.navbar-nav .dropdown .dropdown-item{
    font-size: 13px;
    text-transform: uppercase;
}




.bs-example {
    margin: auto;
    width: 25%;
}

@media screen {

    .dropdown:hover .dropdown-menu {
        display: block;
    }


    .dropdown-menu {
        margin: auto;
    }

    .dropdown-toggle {
        margin: auto;
    }

    .navbar .dropdown-toggle,
    .nav-tabs .dropdown-toggle {
        margin: auto;
    }
}



.navbar-nav li a {

    position: relative;

    &:hover {
        padding-left: 3px;
        transition: all .2s ease-in-out;
        font-weight: 600;
        color: #b88322;

    }

    &::before {
        content: '';
        display: inline-block;
        height: 3px;
        width: 100%;
        background-color: #b88322;
        bottom: -3px;
        left: 0;
        position: absolute;
        transform: scaleX(0);
        transition: transform .2s ease-in-out;
    }

    &:hover {
        &::before {
            transform: scaleX(1);
        }
    }

    &.active {
        color: var(--primary-color);
        font-weight: bold;
    }
}

.header .mobile a {
    /* text-transform: uppercase; */
    text-decoration: none;
    color: #000;
}



.header .nav-top .mobile i {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding: 7px;
    margin-right: 5px;
    border: 2px solid #000;
    border-radius: 50%;
}

.header .nav-top .mobile {
    margin-right: 20px
}

.header .nav-top {
    justify-content: end;
    align-items: center;
    display: flex;
    margin-bottom: 5px;
    margin-top: 45px;
}

.social-media {
    text-align: end;
    margin-right: 10px;
}

.social-media i {
    font-size: 25px;
}

/* .social-media .fa-facebook {
    color: #4267B2;
  }
  
  .social-media .fa-youtube {
    color: #c4302b
  }
  
  .social-media .fa-instagram { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  } */

.header .social-media i {
    color: #000;
    font-weight: bold;
    font-size: 25px;
    padding: 5px;
    border-radius: 50%;
}


.social-media i:hover {
    color: #cd9f41;
    transition: all 0.8ms ease-in-out;
}


.navbar-nav:hover> :not(:hover) {
    opacity: 0.4;
}


.navbar-nav .dropdown-menu:hover> :not(:hover) {
    opacity: 0.4;
}






@media only screen and (max-width: 768px) {
    .navbar-nav li:nth-child(-n + 9):after {
        content: "";
        border-right: 2px solid #1f2235;
        display: none;
        width: 100%;
        height: 10px;
        margin-top: -39px;
    }

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }

    .nav-top {
        display: none !important;
    }

    .mob_left{
        display: flex;
        justify-content: center;
    }

    .welcome_container{
        display: flex;
        justify-content: center;

    }

    .welcome_vertical_line {
        width: 3px; 
        height: 65px; 
        background-color: #b88322;
        margin: 0 20px 0 0;
    }

    .welcome-section_title h2{
        font-size: 30px;
    }

    .welcome_text_title{
        display: block;
        padding-top: 50px;
        padding-bottom: 10px;
    }

    .company_name_color{
        color: #b88322;
        font-size: 30px;
    }

}

/* SWIPER */
.swiper-container {
    width: 100%;
    height: 100%;
}



/* Custom styles for navigation buttons */
.swiper-button-custom {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 15px;
    /* margin-top: 40px; */
}

.swiper-button-custom .swiper-button-prev,
.swiper-button-custom .swiper-button-next {
    background-color: transparent;
    color: #000;
    border: none;
    padding: 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #e9e9e9;
}

.swiper-button-custom .swiper-button-prev:hover,
.swiper-button-custom .swiper-button-next:hover {
    border: 1px solid #ccc;
}


.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    width: 15px;
    height: 15px;
}

.swiper-pagination {
    position: relative !important;
    text-align: start !important;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    margin-top: 30px;
    margin-left: 10px;
}


.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #cd9f41 !important;
}


/* SWIPER */


section {
    padding: 50px 0px;
}

.banner {
    overflow: hidden;
    padding-top: 80px;
}

/* .title h1{
    text-transform: uppercase;
} */
.banner .banner-text h1 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: #b88322;
}

.banner .banner-text {
    position: relative;
    bottom: 10px;
}

.banner .banner-text p {
    font-size: 20px;
}

.banner .banner-text a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner .banner-text a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;
}


.banner-text-2 h4 {
    font-size: 35px;
    font-weight: 700;
}

.banner-text-2 h4 span {
    background-color: #fee97f;
    padding: 0px 5px;
}

.banner2{
    padding-top: 0;
}

.banner2 .banner2-content a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner2 .banner2-content a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;

}




/* hover */

.bg-image {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hover-zoom {
    --mdb-image-hover-zoom-transition: all 0.3s linear;
    --mdb-image-hover-zoom-transform: scale(1.1)
}

.hover-zoom img {
    transition: var(--mdb-image-hover-zoom-transition)
}

.hover-zoom:hover img,
.banner4-contanet:hover img {
    transform: var(--mdb-image-hover-zoom-transform);
}

/* hover */


.banner2-content {
    padding-right: 36px;
    text-align: justify;
}

.banner3 {
    padding-top: 0px;
}

.banner3-main-content {
    display: flex;
    gap: 50px;

}


.banner3-content h4 {
    margin-top: 20px;
    text-transform: uppercase;
}

.banner3-content a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner3-content a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;
}

.banner3-content:nth-child(-n + 2):after {
    content: "";
    border-right: 2px solid #0d0d0e;
    display: block;
    width: 100%;
    height: 250px;
    margin-top: -360px;
    margin-left: 24px;
}

.banner3-content p {
    color: #000;
}

.banner4 {
    background-color: #e6e6e6;
}

.banner4 .banner4-banner-text {
    padding-right: 25px;
}

.banner4 .banner4-banner-text a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner4 .banner4-banner-text a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;
}

.banner4 .banner4-jorney-content:nth-child(-n+3) {
    border-bottom: 2px solid #575757;
}

.banner4 .banner4-jorney-content h5 {
    font-style: italic;
}

.banner4 .banner4-jorney-content {
    padding-top: 10px;
}


.banner5-content .banner5-content-text {
    display: flex;
    gap: 20px;
}

.banner5-content .banner5-content-text h4 {
    text-transform: uppercase;
}

.banner5-content .banner5-content-text a {
    color: #000;
}

.banner5-content .banner5-content-text img {
    width: 115px;
    height: 100px;
}

.banner5 .banner5-sustainability-content {
    background-image: url(../Images/Home/sustainability.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 100%;
    height: 660px;
    padding: 30px 100px 40px 110px;
}

.banner5 .banner5-sustainability-content h4 {
    font-weight: bold;
}

.banner5 .banner5-sustainability-content a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner5 .banner5-sustainability-content a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;
}

.banner5 .banner5-enterpenuer-content {
    padding-left: 75px;
}

.banner5 .banner5-enterpenuer-content a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.banner5 .banner5-enterpenuer-content a:hover {
    background-color: transparent;
    border: 1px solid #b88322 !important;
    color: #000;
    transition: 0.5ms ease-in-out;
}

.footer {
    background-color: #575757;
}


.footer-content {
    color: #fff;
    text-align: justify;
    font-size: 15px;
}

.footer-content h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #b88322;
}

.footer-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-content ul a {
    color: #fff;
    text-decoration: none;

}

.footer-content ul li {
    margin-bottom: 8px;
}


.footer .social-media {
    text-align: start !important;
}

.footer .social-media i {
    color: #fff;
    margin-top: 20px;
}

.copy-right{
    padding: 10px 0;
}

.copy-left-content a,.copy-right-content a{
    color: #000;
    text-decoration: none;
}

.copy-right-content{
    display: flex;
    justify-content: end;
}

/* BAck to TOP */

#topButton {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    font-size: 16px;
    background-color: #fff;
    color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    padding: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;

}

#topButton i {
    color: #a5292c;
}

#topButton:hover {
    background-color: #b88322;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#topButton:hover i {
    color: #fff;
    transition: all 0.3s ease;
}


/* BAck to TOP */

.about-banner-sec2 {
    position: relative;
}

.about-banner-sec2 p {
    text-align: justify;
}

.about-banner2 {
    background-color: #000;
    height: 300px;
}

/* .about-banner-sec2-intro-text {
    padding-right: 40px;
} */

.about-banner3 {
    position: relative;
    margin-top: -150px;
    padding-bottom: 0;
}

.about-banner3 .about-banner3-content h5 {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid #1f1e1e;
    font-weight: bold;
    text-transform: uppercase;
}

.about-banner3 .about-banner3-content p {
    text-align: justify;
    height: 285px;
}

.about-banner3 .about-banner3-content {
    border-bottom: 2px solid #1f1e1e;
    padding: 0px 20px;
}

.about-banner4 {
    background-color: #cc9f3f;
}

.about-banner5 {
    overflow: hidden;
}

.about-banner5-content {
    padding-right: 30px;
}

.about-banner5-content p {
    text-align: justify;
}

.about-banner5 .about-banner5-content-text {
    background-color: #000;
    padding: 30px 70px 30px 30px;
}

.about-banner5 .about-banner5-content-text h4 {
    color: #cc9f3f;
    font-weight: bold;
    font-size: 40px;
}

.about-banner5 .about-banner5-content-text h5 {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

.about-banner5 .about-banner5-content-text p {
    color: #fff;
    text-align: justify;
}

.about-banner5 .about-banner5-content-text-content {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.about-banner5-content-text-content-2 {
    background-color: #bcbcbc;
    padding: 30px;
    height: 430px;
}

.about-banner5-content-text-content-mission {
    margin-top: 30px;
}

.about-banner5 .about-banner5-content-text-content-mission ul {
    list-style: url(../Images/About_us/list-style.png);
}

.about-banner5 .about-banner5-content-text-content-mission ul li {
    margin-bottom: 5px;
}


.about-banner5 .about-banner5-content-text-content-mission ul li strong {
    text-transform: uppercase;
}

.about-banner6 {
    background-color: #cc9f3f;
}

.about-banner6-content-values {
    display: flex;
    gap: 20px;
}

.about-banner6-content-values p strong {
    color: #fff;
}

.about-banner6-content-values img {
    height: 60px;
    width: 60px;
}

.about-banner7 .title h1 span {
    padding-bottom: 5px;
    border-bottom: 3px solid #000;
}

.about-banner7 .about-banner7-quote {
    /* text-align: end; */
    padding-top: 20px;
}

.about-banner7-quote .chairman {
    border: 2px solid #000;
    position: relative;
    z-index: -1;
    top: -20px;
    margin-left: 20px;
}



.chairman-details h4 span {
    border-top: 3px solid #b88322;

}

.about-banner7 .about-banner7-chairman-message {
    margin-top: 30px;
}

.about-banner7 .about-banner7-chairman-message {
    background-image: url(../Images/About_us/second-quote.png);
    background-repeat: no-repeat;
    background-position-x: 490px;
    background-position-y: bottom;
    background-position-y: 300px;
}

.sustainability-banner-sec-2 .sustainability-banner-sec-2-content-1 {
    background-color: #cc9f3f;
    padding: 50px;
}

.sustainability-banner-sec-2 {
    position: relative;
    margin-top: -70px;
}

.sustainability-banner-2-content p {
    text-align: justify;
}

.sustainability-banner-2-content {
    padding-right: 20px;
}

.sustainability-banner-4 {
    background-color: #000;
}

.sustainability-banner-4 .sustainability-banner-4-content {
    color: #fff;
    padding: 0px 20px;
}

.sustainability-banner-4 .sustainability-banner-4-content p {
    text-align: justify;
}

.sustainability-banner-4-content-btns {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.sustainability-banner-4-content-btns a {
    background-color: #ccc;
    padding: 7px 20px;
    color: #000;
    text-decoration: none;
}


.construction-gal-btns{
    display: flex;
    align-items: center;
    gap: 20px; 
    justify-content: center;
    text-align: center;
    margin-top: 15px;
}
.construction-gal-btns h4{
    margin-bottom: 0;
    color: #ccc;
}

/* .sustainability-banner-4-content-btns a:nth-child(2) {
    border: 1px solid #ccc;
    color: #fff;
    padding: 7px 20px;
    text-decoration: none;
} */

.sustainability-banner-5-content p {
    text-align: justify;
    padding-right: 20px;
}


.investor-ban1-content {
    padding: 30px;
    background: #cc9f3f;
    position: relative;
    top: -50px;
    text-align: justify;
}

.csr-content {
    padding: 30px;
    background: #cc9f3f;
    position: relative;
    top: -50px;
    text-align: justify;
}

.csr-banner {
    padding-bottom: 0;
}


.required-field::after {
    content: "*";
    color: red;
    margin-left: 4px;
}

#captchaCanvas {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.careers-banner {
    background-image: url(../Images/Careers/Careers.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    padding: 50px 0px;
}


.career-banner-sec-2 {
    position: relative;
    margin-top: -200px;
}

.career-banner-sec-2-address {
    background-color: #ecca71;
    padding: 35px;
}

.career-banner-sec-2-address p a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.agarwood-banner-content p {
    text-align: justify;
}

.agarwood-banner {
    background-color: #b88322;
    height: 650px;
}


.agarwood-banner2 .agarwood-banner2-content{
    padding: 20px 20px 0px 20px;
    background: #fff;
}

.agarwood-banner2-content p {
    text-align: justify;
    margin-bottom: 0;
}


.agarwood-banner2 {
    position: relative;
    margin-top: -200px;
}

.agarwood-banner3{
    background-image: url(../Images/What_We_Do/seeds.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    overflow: hidden;
}

.agarwood-banner3 .agarwood-banner3-content{
    padding: 0px 25px ;
    color: #fff;
    text-align: justify;
 }

 .agarwood-banner4-content h5{
    color: #b88322;
    font-weight: bold;
    text-transform: uppercase;
 }
 .agarwood-banner4-content p{
    text-align: justify;
    padding-right: 15px;
 }

 .agarwood-banner4 ul{
    list-style: url(../Images/What_We_Do/list-style.png);
 }

 .agarwood-banner5 {
    background-color: #eaedef;
 }
 .agarwood-banner6 .agarwood-banner6-content p{
    text-align: justify;
 }

.desktop{
    display: block !important;
}

.mobile{
    display: none !important;
}


.about-banner-sec2 .title{
    position: relative;
    top: -50px;
    left: 30px;
}

.what-construction img{
    height: -webkit-fill-available;
}


.address-mining,.address-agri,.address-constraction{
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f9fa;
}



@media only screen and (max-width:500px) {
    html {
        font-family: "Raleway", sans-serif;
        scroll-padding-top: 300px;
    }
    
    .desktop{
        display: none !important;
    }
    
    .mobile{
        display: block !important;
    }

    .banner {
        overflow: hidden;
        padding-top: 20px;
    }

    .banner .banner-text {
        position: relative;
        bottom: 0px;
    }

    .swiper-button-custom {
        margin-top: 40px;
    }

    .banner .banner-text p {
        font-size: 16px;
    }

    .banner .banner-text h1 {
        font-size: 30px;
        font-weight: bold;
        color: #b88322;
    }

    .banner .banner-text a {
        padding: 8px 0px;
        background-color: transparent;
        text-decoration: none;
        color: #b88322;
        text-decoration: underline;
        font-size: 18px;
        border: 1px solid transparent;
    }

    .banner-text-2 h4 {
        font-size: 26px;
        font-weight: 700;
    }

    .banner .banner-text h1 br {
        display: none;
    }

    .banner .banner-text p br {
        display: none;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: relative !important;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 0%) !important;
        right: auto;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 0%) !important;
        left: auto
    }

    .banner-text-2 {
        margin-top: 20px;
    }

    .banner2-content {
        padding-right: 0px;
    }

    .banner2 .banner2-content {
        margin-bottom: 10px;
        margin-top: 10px;
        padding: 12px 0px;
    }

    .banner2 {
        padding-top: 0;
        padding-bottom: 0px;
    }

    .banner3 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .banner3-main-content {
        display: unset !important;
    }

    .banner3-content:nth-child(-n + 2):after {
        content: "";
        border-right: 2px solid #0d0d0e;
        width: 100%;
        height: 250px;
        margin-top: -360px;
        margin-left: 24px;
        display: none !important;
    }

    .banner3-content {
        margin-bottom: 30px;
    }
    .banner3-content h4 {
        margin-top: 10px;
        text-transform: uppercase;
    }

    .banner3-content .mobile img{
        width: 22%;
    }

    .banner3 .title{
        display: none !important;
    }

    .banner4-jorney-content p br {
        display: none;
    }

    .banner5-content .banner5-content-text {
        display: unset;
        gap: 20px;
    }

    .banner4 .banner4-jorney-content:nth-child(-n+3) {
        border-bottom: 2px solid #575757;
        margin-top: 15px;
    }

    .banner5-content .banner5-content-text img {
        width: 115px;
        height: 100px;
        margin-bottom: 15px;
    }

    .banner5-content br {
        display: none;
    }

    .banner5-content .banner5-content-text a {
        margin-bottom: 20px;
    }

    .banner5-content-mission {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .banner5 .banner5-sustainability-content {
        background-image: url(../Images/Home/sustainability-mobile.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 450px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .banner5 .banner5-sustainability-content a {
        padding: 8px 25px;
        background-color: #b88322;
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        border: 1px solid transparent;
        width: 50%;
        text-align: center;
    }

    .banner5 .banner5-enterpenuer-content {
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .banner5 .banner5-enterpenuer-content h2 br {
        display: none;
    }

    .footer-content h4 {
        margin-top: 15px;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #b88322;
    }



    .about-banner-sec2 {
        position: relative;
        margin-top: 15px;
    }

    .about-banner-sec2 .title {
        position: relative;
        top: 0;
        left: 0px;
        padding-left: 30px;
        margin-top: -50px;
    }

    .about-banner-sec2-intro-text {
        padding-right: 0px;
    }

    .about-banner2 {
        background-color: #000;
        height: auto;
    }

    .about-banner3 {
        position: relative;
        margin-top: 0;
        padding-bottom: 0;
    }

    .about-banner3 .about-banner3-content h5 {
        margin-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 0px;
        text-align: center;
        border-bottom: none;
        font-weight: bold;
        text-transform: uppercase;
        color: #b88322;
    }

    .about-banner3 .about-banner3-content p {
        text-align: justify;
        height: auto;
    }

    .about-banner5 .about-banner5-content-text {
        background-color: #000;
        padding: 15px;
    }

    .about-banner5 {
        overflow: hidden;
        padding: 30px 12px;
    }

    .about-banner5 .about-banner5-content-text-content {
        display: unset;
        gap: 20px;
        align-items: baseline;
    }

    .about-banner5-content {
        padding-right: 0px;
    }

    .about-banner5-content-text-content-2 {
        background-color: #bcbcbc;
        padding: 30px;
        height: auto;
    }

    .about-banner6-content-values {
        display: unset;
    }

    .about-banner6-content-values img {
        margin-bottom: 10px;
    }

    .about-banner7 .about-banner7-quote {
        text-align: start;
    }

    .about-banner7 .about-banner7-chairman-message {
        background-image: url(../Images/About_us/second-quote.png);
        background-repeat: no-repeat;
        background-position-x: 100%;
        background-position-y: bottom;
        background-position-y: 100%;
    }

    .sustainability-banner-4 .sustainability-banner-4-content {
        color: #fff;
        padding: 15px 0px 0;
    }
    .sustainability-banner-2-content {
        padding-right: 0px;
    }

    .sustainability-banner-sec-2 {
        position: relative;
        margin-top: 10px;
    }

    .sustainability-banner-sec-2 .sustainability-banner-sec-2-content-1 {
        background-color: #cc9f3f;
        padding: 20px;
        margin-bottom: 10px;
    }

    .careers-banner {
        background-image: url(../Images/Careers/Careers.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        padding: 50px 0px;
    }

    .career-banner-sec-2 {
        position: relative;
        margin-top: 10px;
    }

    .about-banner3 .about-banner3-content {
        border-bottom: none;
        padding:0px 10px ;
        margin-bottom: 10px;

    }
    .about-banner4 p br{
        display: none;
    }
    .about-banner7{
        padding-top: 0;
    }
    .what-we-do-banner{
        padding-bottom: 10px;
    }
    .construction-gal-btns {
        display: unset;
        align-items: center;
        gap: 20px;
        justify-content: center;
        text-align: center;
        margin-top: 15px;
    }
    .construction-gal-btns h4 {
        margin-bottom: 15px;
        color: #ccc;
    }
    .agarwood-banner {
        background-color: #b88322;
        height: auto;
        padding: 30px 12px;
    }
    .agarwood-banner2 {
        position: relative;
        margin-top: 0;
    }
    .agarwood-banner2 .agarwood-banner2-content {
        padding: 0;
        background: #fff;
    }
    .agarwood-banner2-content p {
        text-align: justify;
        margin-bottom: 15px;
    }
    .agarwood-banner3 .agarwood-banner3-content {
        padding: 0px 12px;
        color: #fff;
        text-align: start;
    }
    .agarwood-banner3 .agarwood-banner3-p{
        padding: 0px 12px;
        
    }
    .agarwood-banner3 .agarwood-banner3-p p{
        margin-bottom: 0;
    }

    .agarwood-banner3 img{
        width: 100%;
    }
    .investor-ban1-content {
        padding: 30px;
        background: #cc9f3f;
        position: relative;
        top: 0px;
        text-align: justify;
    }
    .csr-content {
        padding: 30px;
        background: #cc9f3f;
        position: relative;
        top: 0px;
        text-align: justify;
    }
    .what-construction img{
        height: auto;
    }

    .mob_left{
        display: flex;
        justify-content: center;
    }

    .copy-right-content p{
        font-size: 13px;
    }

    .copy-left-content p{
        font-size: 13px;
    }

    .company_name_color{
        color: #b88322;
        font-size: 25px;
    }


}



/* ------------------------------------- */
/* --------------New-css--------------- */
/* ----------------------------------- */

.only-pmc{
    padding-bottom: 80px;
}

.pmc-highlight {
    padding: 20px 0;
}

.pmc-highlight h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pmc-highlight p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.pmc-points ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.pmc-points ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.pmc-points a {
    padding: 8px 25px;
    background-color: #b88322;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border: 1px solid transparent;
}

.pmc-points a:hover {
    color: #fff;
    background: #b88322;
}


/* ------------------------------- */
/* ----------PMC----------------- */
/* ----------------------------- */


/* HOME */
.home-section {
    padding: 70px 0;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-points p {
    margin: 6px 0;
}

.home-image img {
    width: 100%;
    border-radius: 4px;
}


/* ABOUT */
.about-section {
    padding: 20px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-content.no-image {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-strengths p {
    margin-bottom: 8px;
    font-weight: 500;
}


/* SERVICES */
.services-section {
    padding: 70px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.service-card:last-child {
    grid-column: span 2;
}


.service-card {
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 4px;
}

.service-card img {
    width: 100%;
    border-radius: 4px;
}

.service-card h3 {
    color: #b88322;
    font-size: 20px;
    margin-top: 20px;
}


/* PROJECTS */
.projects-section {
    padding: 70px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px;
}

.project-card img {
    width: 100%;
}


/* TEAM */
.team-section {
    padding: 40px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 50%;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.team-card h3{
    font-size: 1.40rem;
}

.team-card a {
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #0066cc;
    font-size: 15px;
    margin: 3px 0;
    text-decoration: none;
    transition: 0.3s;
}

.team-card a:hover {
    color: #000;
    text-decoration: underline;
}



/* VALUES */
.values-section {
    padding: 20px 0;
    text-align: center;
}

.values-list {
    font-size: 18px;
    font-weight: 500;
}


/* VISION */
.vision-section {
    padding: 70px 0;
}

.vision-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.vision-box {
    border: 1px solid #b88322;
    padding: 25px;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    .home-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-image {
        order: -1; /* Image first on tablet */
    }

    .home-text {
        padding: 0 10px;
    }

    .vision-wrap {
    grid-template-columns: 1fr;
}

    .service-grid {
        grid-template-columns: 1fr;
    }

    /* Last item becomes normal 1 column */
    .service-card:last-child {
        grid-column: auto;
    }

    .services-section {
    padding-top: 0px;
    padding-bottom: 40px;
}
}

.business-associates {
    padding: 50px 0;
    background: #f8f9fa; 
}

.ba-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #b88322;
}

.ba-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}

.ba-list li {
    margin: 12px 0;
    text-align: center;
}

.ba-list li a {
    font-size: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.ba-list li a i{
    font-size: 14px;
}

.ba-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}


/* ----------------------------------------- */
/* --------------Inspire-arcitects----------- */
/* ----------------------------------------- */

.inspire-intro-section .inspire-title {
    color: #b88322;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.inspire-intro-section .inspire-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.inspire-intro-section .inspire-download-btn {
    background-color: #b88322;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
}
.inspire-intro-section .inspire-download-btn:hover {
    background-color: #92671b;
    color: #fff;
}


.inspire-intro-section .inspire-img {
    max-height: 330px;
    object-fit: cover;
    border: 3px solid #eee;
}

/* ----------------------------------
   MOBILE RESPONSIVE 
-----------------------------------*/
@media only screen and (max-width: 768px) {
    .inspire-intro-section .inspire-title {
        font-size: 26px;
        text-align: center;
    }
    .inspire-intro-section .inspire-text {
        text-align: center;
    }
    .inspire-intro-section .inspire-download-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .inspire-intro-section .inspire-img {
        margin-top: 20px;
    }
}

.inspire-portfolio-section {
    background: #f8f6f2;
    border-top: 1px solid #e5e5e5;
}

.portfolio-title {
    color: #b88322;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.inspire-portfolio-btn {
    background-color: #b88322;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
}
.inspire-portfolio-btn:hover {
    background-color: #92671b;
    color: #fff;
}
