:root {
    --colorPrimary: #ffd200;
    --colorLightyellow: #f9e382;
    --colorBlack: #000000;
    --colorWhite: #ffffff;
    --colorDimWhite: #fdfdc5;
    --colorDarkGray: #696969;
    --colorDarkGreen: #107634;
    --colorNavyBlue: #345dae;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
    font: inherit;
}

html {
    color-scheme: dark light;
}

body {
    min-height: 100vh;
}

body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #232323;
    border-radius: 100vw;
    /* outline: 1px solid slategrey; */
}

img,
svg,
picture,
video {
    display: block;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rajdhani", sans-serif;
}

a,
button {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600 !important;
}

a,
a:hover {
    text-decoration: none;
}

.bg-white-dim {
    background-color: var(--colorDimWhite);
    /* background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); */
    /* background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%); */
    background: linear-gradient(
            to bottom,
            #d5dee7 0%,
            #e8ebf2 50%,
            #e2e7ed 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(255, 255, 255, 0.02) 61%,
            rgba(0, 0, 0, 0.02) 73%
        ),
        linear-gradient(
            33deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
    background-blend-mode: normal, color-burn;
}

.bg-dotted {
    background-image: url('../images/bg-5.png');
    background-repeat: repeat;
}

.bg-gradient-primary {
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
}

.bg-black {
    background: #232323;
}

.color-light-yellow {
    color: var(--colorDimWhite);
}

.mt-200 {
    margin-top: 200px;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs-preloader {
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #232323;
}

.cs-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-preloader_bg {
    text-align: center;
    height: 100%;
    width: 100%;
}

.loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(
            #0000 calc(1 * 100% / 6),
            var(--colorPrimary) 0 calc(3 * 100% / 6),
            #0000 0
        ),
        linear-gradient(
            #0000 calc(2 * 100% / 6),
            var(--colorPrimary) 0 calc(4 * 100% / 6),
            #0000 0
        ),
        linear-gradient(
            #0000 calc(3 * 100% / 6),
            var(--colorPrimary) 0 calc(5 * 100% / 6),
            #0000 0
        );
    background-size: 10px 400%;
    background-repeat: no-repeat;
    animation: matrix 1s infinite linear;
}

@keyframes matrix {
    0% {
        background-position: 0% 100%, 50% 100%, 100% 100%;
    }

    100% {
        background-position: 0% 0%, 50% 0%, 100% 0%;
    }
}

/* Header Section */
.header-logo {
    width: 120px;
}

.navbar {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Carousel Section */

.carousel-item {
    height: 80vh;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-indicators {
    gap: 1rem;
}

.carousel-indicators .active {
    background-color: var(--colorPrimary);
}

.carousel-indicators [data-bs-target] {
    position: relative;
    width: 12px;
    height: 12px;
    border: unset;
    border-radius: 100vw;
    margin: 0;
}

.carousel-indicators [data-bs-target]::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: -6px;
    left: -6px;
    border-radius: 100vw;
    border: 2px solid var(--colorWhite);
}

.carousel-indicators button.active::after {
    border: 2px solid var(--colorPrimary);
}

.caro-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    padding: 100px 200px;
    background: rgba(0, 0, 0, 0.3);
}

.caro-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--colorPrimary);
}

.caro-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--colorWhite);
}

.caro-desc {
    color: var(--colorDimWhite);
    text-wrap: balance;
}

/* Common Section */
.common-sec {
    position: relative;
    width: 100%;
    min-height: 100px;
    padding: 60px 120px;
}

.common-inner {
    position: inherit;
    width: 100%;
    min-height: 100%;
}

/* End Common Section */

/* Quote Section */
.quote-section {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.quote-section i {
    font-size: 4rem;
    color: var(--colorPrimary);
}

.quote-img {
    width: 60%;
}

.quote-text {
    font-size: 1.325rem;
    font-weight: 600;
    color: var(--colorDarkGray);
    width: 75%;
    text-align: center;
    font-style: italic;
}

.quote-text span {
    color: var(--colorBlack);
    font-style: normal;
}

/* End of Quote Section */

/* About Us Sectuion */
.about-wrapper {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.about-left {
    width: calc(50% - 1rem);
    position: relative;
    display: flex;
    gap: 1rem;
}

.about-exp-box {
    position: relative;
    width: 10rem;
    height: 14rem;
    background-color: var(--colorPrimary);
    text-align: center;
    border-radius: 1rem;
    padding: 0.75rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    z-index: 0;
}

.about-exp-box::after {
    position: absolute;
    content: "";
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    background-color: var(--colorLightyellow);
    top: -30%;
    left: 0;
    z-index: -1;
}

.about-exp-count {
    font-size: 3rem;
    font-weight: 700;
}

.about-exp-text {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-left-img-wr {
    position: relative;
    width: calc(100% - 10rem - 1rem);
    aspect-ratio: 3.5 / 4;
    border-radius: 1rem;
    /* overflow: hidden; */
}

.about-left-img {
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.about-right-dots {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 12rem;
    width: 180px;
    animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes animo-x {
    50% {
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(2rem);
    }
}

.about-img-hanging {
    position: absolute;
    width: 60%;
    aspect-ratio: 3.25 / 4;
    top: 15rem;
    left: 0;
    border-radius: 1rem;
    background-color: var(--colorLightyellow);
    padding: 0.5rem;
}

.about-hanging-img {
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.about-right {
    position: relative;
    width: calc(50% - 1rem);
}

.about-sub-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--colorDarkGray);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-key-points {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-key-point {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
}

.about-key-icon {
    position: relative;
    height: 60px;
    border-radius: 0.5rem;
    padding: 0.5rem;
    background-color: var(--colorDimWhite);
}

.about-key-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-key-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.om-btn {
    position: relative;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: var(--colorBlack);
    color: var(--colorPrimary);
    transition: all 300ms ease-in;
    z-index: 0;
}

.om-btn.btn-white {
    color: var(--colorBlack);
    background: var(--colorWhite);
}

.om-btn::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 0;
    height: 100%;
    background-color: var(--colorPrimary);
    border-radius: 0.25rem;
    transition: all 400ms ease-in;
    z-index: 1;
}

.om-btn.btn-black-white::before {
    background-color: var(--colorWhite);
}

.om-btn > * {
    position: relative;
    z-index: 11;
}

.om-btn .circle {
    width: 1.125rem;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vw;
    background: var(--colorPrimary);
    color: var(--colorBlack);
    margin-left: 0.5rem;
    transition: all 300ms ease-in;
}

.om-btn .circle i {
    font-size: 0.75em;
    line-height: 0.75;
}

.om-btn:hover {
    color: var(--colorBlack);
}

.om-btn:hover::before {
    width: 100%;
}

.om-btn:hover .circle {
    background-color: var(--colorBlack);
    color: var(--colorPrimary);
}

.arrow-img-wr {
    position: absolute;
    bottom: 0;
    left: 200px;
    animation: animo-x 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* End of about us section */

/* Section Styles */
.section-title-sec {
    width: 100%;
    min-height: 50px;
    display: grid;
    place-items: center;
}

.section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 200px;
    height: 0.25rem;
    bottom: 0;
    left: 50%;
    translate: -100px 0;
    background-color: var(--colorPrimary);
}

.section-title.no-underline::after {
    width: 0;
}

/* Section common styles */

/* Industry Section */
.industry-wrapper {
    width: 100%;
    min-height: 100px;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.industry-item {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.5rem;

    background: linear-gradient(
            to bottom,
            #d5dee7 0%,
            #e8ebf2 50%,
            #e2e7ed 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(255, 255, 255, 0.02) 61%,
            rgba(0, 0, 0, 0.02) 73%
        ),
        linear-gradient(
            33deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );

    background-blend-mode: normal, color-burn;

    transition: all 300ms ease-in;
}

.industry-item:hover {
    background: var(--colorDimWhite);
}

.industry-icon {
    width: 80px;
    height: auto;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.know-more-btn {
    display: none;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--colorPrimary);
    transition: all 300ms ease-in;
}

.know-more-btn:hover {
    color: var(--colorBlack);
}

.industry-item:hover .know-more-btn {
    display: block;
}

/* Industry section ends here */

/* Core value starts here */
.core-values {
    width: 100%;
    min-height: 200px;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.core-value-item {
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--colorWhite);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.core-value-icon {
    width: 48px;
}

.core-value-title {
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.core-value-desc {
    font-size: 1rem;
    color: var(--colorDarkGray);
    margin-bottom: 0;
}

/* Core Value ends here */

/* Business Section starts here */
.business-wrapper {
    width: 100%;
    min-height: 100px;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.business-item {
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 2rem;
    display: grid;
    place-content: center;
    /* background-color: var(--colorLightyellow); */
    background: linear-gradient(
            to bottom,
            #d5dee7 0%,
            #e8ebf2 50%,
            #e2e7ed 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(255, 255, 255, 0.02) 61%,
            rgba(0, 0, 0, 0.02) 73%
        ),
        linear-gradient(
            33deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
    background-blend-mode: normal, color-burn;
}

.business-item:nth-child(even) {
    /* background-color: var(--colorDimWhite); */
    background-color: #cddcdc;
    background-image: radial-gradient(
            at 50% 100%,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(0, 0, 0, 0.25) 100%
        );
    background-blend-mode: screen, overlay;
}

.business-logo {
    max-width: 100%;
}

/* Business Section ends here */

/* MDs Table starts here */
.chairman-section {
    width: 80%;
    min-height: 200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
    place-items: center;
}

.md-left {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    place-items: center;
    gap: 1rem;
}

.md-img {
    filter: drop-shadow(0 0 0.675rem rgb(65, 65, 65));
}

.md-skills {
    font-size: 1rem;
    font-weight: 600;
}

.md-name {
    font-size: 2rem;
    font-weight: 700;
}

.md-says-heading {
    font-size: 2.5rem;
    font-weight: 700;
}

.md-says-content {
    font-size: 1rem;
}

/* MDs Table ends here */

/* Awards & Recognitions */

.awards-section {
    position: relative;
    width: 100%;
}

.awards-wrapper {
    width: 100%;
    min-height: 100px;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.awards-item {
    width: 20%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-content: center;
    padding: 1rem;
    border: 1px solid #cddcdc;
}

.award-img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    transition: all 200ms ease-in;
}

.awards-item:hover .award-img {
    filter: grayscale(0);
    transition: all 200ms ease-out;
}

/* Awards & Recognitions ends here */

/* Certificates section */

.certificates-section {
    background-color: #ffffff; /* Clean white background */
}

/* .section-title {
    font-weight: 300;
    letter-spacing: 1px;
    color: #212529;
} */
/* Container styling */
.certificate-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f8f9fa;
    height: 100%;
}

.certificate-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    border-color: #e9ecef;
}

/* Image Wrapper with fixed aspect ratio */
.image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    aspect-ratio: 4/3; /* Keeps all images perfectly uniform */
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.certificate-card:hover .certificate-img {
    transform: scale(1.05); /* Smooth zoom effect */
}

/* Glassmorphism Hover Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6); /* Modern dark slate overlay */
    backdrop-filter: blur(3px); /* Glass blur effect */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.overlay-content {
    transform: translateY(15px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificate-card:hover .card-overlay {
    opacity: 1;
}

.certificate-card:hover .overlay-content {
    transform: translateY(0); /* Text slides up slightly on hover */
}

/* Typography */
.certificate-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.letter-spacing-1 {
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Certificates section ends here */

/* contact section starts here */
.contact-section {
    --conSecBgColor: var(--colorPrimary);
    --conSecColor: var(--colorBlack);
    --conTitleColor: var(--colorBlack);

    width: 100%;
    min-height: 100px;
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--colorWhite);
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 3rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.contact-section .form-control {
    padding: 0.75rem 1rem;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.contact-right {
    padding: 3rem;
    border-radius: 1rem;
    background: var(--conSecBgColor);
}

.contact-right .contact-title {
    color: var(--conSecColor);
}

.contact-tile {
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    align-items: center;
    color: var(--conSecColor);
}

.con-tile-icon {
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    border: 2px solid var(--conSecColor);
    color: var(--conSecColor);
    font-size: 1rem;

    display: grid;
    place-content: center;
}

/* contact section ends here */

/* Footer Section starts here */
footer {
    color: #dbdbdb;
}

.footer-logo {
    width: 80%;
}

.footer-desc {
    text-wrap: balance;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--colorPrimary);
}

.footer-ul {
    color: var(--colorDimWhite);
}

.footer-link {
    color: var(--colorDimWhite);
}

.footer-link:hover {
    color: var(--colorPrimary);
}

.footer-media-ul {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.footer-media-ul > li {
    width: 40px;
    height: 40px;
    border-radius: 100vw;
    border: 2px solid var(--colorDimWhite);
    display: grid;
    place-items: center;
    transition: all 300ms ease-in;
}

.media-link {
    color: var(--colorDimWhite);
    transition: all 300ms ease-in;
}

.footer-media-ul > li:hover {
    border: 2px solid var(--colorLightyellow);
    background-color: var(--colorLightyellow);
    transition: all 300ms ease-out;
}

.footer-media-ul > li:hover .media-link {
    color: var(--colorBlack);
    transition: all 300ms ease-out;
}

/* Footer Section ends here */

/* Top landing section */
.top-landing-sec {
    width: 100%;
    min-height: 400px;
    padding: 100px 200px;

    background: url("../images/breadcumb-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top-landing-inner {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.breadcrumb-item > a {
    color: var(--colorDimWhite);
}

.breadcrumb-item.active {
    color: var(--colorPrimary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--colorPrimary);
}

.top-landing-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--colorPrimary);
}

.bg-contact-img {
    min-height: 600px;
    background-image: url("../images/contact-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Contact Section About Us page */
.ca-wrapper {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.ca-left {
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.ca-icon {
    position: relative;
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    background-color: var(--colorBlack);
    color: var(--colorPrimary);
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ca-icon::before {
    position: absolute;
    content: "";
    width: 120%;
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    border: 2px solid var(--colorBlack);
}

.ca-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

.ca-title {
    font-size: 3rem;
    font-weight: 700;
}

.ca-right {
    position: relative;
    width: calc(50% - 1rem);
    display: flex;
    justify-content: center;
}

.ca-img {
    width: 60%;
}

.about-counter-sec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 200px;
    margin-top: -150px;
    padding: 3rem;
    background: url("../images/counter-bg.png") var(--colorBlack);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-counter-wrapper {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    vertical-align: center;
    gap: 1rem;
}

.about-counter-item {
    position: relative;
    text-align: center;
}

.about-counter-item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    right: 0;
    top: 0;
    background-image: linear-gradient(
        0deg,
        #000000 0%,
        #000000 10%,
        #ffffff 50%,
        #000000 90%,
        #000000 100%
    );
}

.about-counter-item:last-child::before {
    display: none;
}

.about-counter-h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--colorPrimary);
}

.about-counter-h5 {
    font-size: 1rem;
    color: var(--colorDimWhite);
}

/* Why us About Page */
.why-us-sec {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.why-us-left {
    width: calc(50% - 1rem);
    min-height: 100%;
}

.why-us-right {
    width: calc(50% - 1rem);
    height: 600px;
}

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

/* Why us about ends */

/* History section */
.history-section {
    background-color: #f8fafc; /* Matches the Manager section for consistency */
    overflow-x: hidden;
}

/* Main Timeline Container */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The central vertical line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e2e8f0;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Individual Item Wrappers */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* Pushes odd items to the left, even items to the right */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* The Dots on the line */
.timeline-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border: 4px solid #0f172a; /* Dark slate ring */
    border-radius: 50%;
    top: 28px;
    z-index: 1;
}

/* Position the dots perfectly on the line for left/right sides */
.timeline-item.left .timeline-node {
    right: -8px;
}

.timeline-item.right .timeline-node {
    left: -8px;
}

/* Floating Content Card */
.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Year Badge */
.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* -----------------------------------------
   Mobile Responsiveness (Crucial)
------------------------------------------ */
@media screen and (max-width: 767.98px) {
    /* Move the central line to the far left */
    .timeline-container::after {
        left: 24px;
        transform: translateX(0);
    }

    /* Make all cards take up the full width */
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }

    /* Reset the left positioning so right-side items stack properly */
    .timeline-item.left, 
    .timeline-item.right {
        left: 0;
    }

    /* Move all nodes to the left line */
    .timeline-item.left .timeline-node, 
    .timeline-item.right .timeline-node {
        left: 16px;
        right: auto;
    }
}

/* History section ends here */

.map-embed {
    position: relative;
    width: 100%;
    height: 600px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

/* Login Section */
.login-section {
    width: 100%;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: min(100%, 400px);
    min-height: 300px;
    background-color: var(--colorWhite);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.login__title {
    text-align: center;
    font-weight: 700;
}

/* Careers Page  */
.potential-icon {
    font-size: 4rem;
    font-weight: 700;
    color: var(--colorPrimary);
    text-align: center;
}

.potential-wrapper {
    width: 70%;
    min-height: 150px;
    margin-inline: 15%;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.potential-item {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.potential-sub-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--colorPrimary);
    text-transform: uppercase;
}

.potential-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.potential-desc {
    font-size: .75rem;
    color: var(--colorDarkGray);
    margin-bottom: 0;
}


.career-items {
    position: relative;
    width: 100%;
    min-height: 100px;
    padding: 2rem 0rem;
    display: flex;
    flex-direction: column;
}

.career-item {
    width: 100%;
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 2rem;
    align-items: center;
    border-top: 2px solid var(--colorDarkGray);
    padding-block: 1.5rem;
}

.career-item:last-child {
    border-bottom: 2px solid var(--colorDarkGray);
}

.pointer-wrapper {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pointer {
    padding: 0.325rem 1rem;
    border: 2px solid var(--colorDarkGray);
    border-radius: 100vw;
    color: var(--colorBlack);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Gallery Page */
.gallery-section {
    width: 100%;
    min-height: 500px;
    padding: 150px 10%;
}

.gallery-wrapper {
    width: 100%;
    min-height: 300px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

/* Gallery Page ends here */


/* Business pages starts here */
.business-landing {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: var(--background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 6rem 10rem; */
}

.bl-inner {
    width: 100%;
    min-height: 60vh;
    background: rgba(0, 0, 0, var(--alpha));
    padding: 5rem 10rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.bl-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--colorWhite);
}

.bl-desc {
    width: 50%;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--colorPrimary);
}

.ba-para {
    display: block;
    width: 75%;
    margin-inline: auto;
}

.business-manager-section {
    width: 100%;
    min-height: 400px;

    padding: 4rem 8rem;

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/businesses/award4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.business-manager-left {
    width: calc(50% - 2);
}

.business-manager-left img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2rem;
}

.business-manager-right {
    width: calc(50% - 2rem);
}

.business-manager-designation {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--colorPrimary);
}

.business-manager-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--colorWhite);
}

.business-manager-desc {
    font-size: 1.125rem;
    color: var(--colorDimWhite);
}

/* new manager sec */
/* Section Background - A very soft gray to make the white card pop */
.manager-message-section {
    background-color: #f8fafc; 
}

/* Floating Card Container */
.manager-card {
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

/* Image Styling - Modern rounded square */
.manager-image-wrapper {
    z-index: 2;
}

.manager-img {
    width: 400px;       /* Increased from 240px */
    height: 400px;      /* Increased from 240px */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

/* Accent dots behind the image for visual depth */
.accent-dots {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 1;
    border-radius: 50%;
}

/* Typography & Icons */
.text-light-gray {
    color: #e2e8f0;
}

.manager-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 300;
    font-style: italic;
    position: relative;
}

/* Image Styling - Increased Size */


/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
    .manager-img {
        width: 260px;   /* Increased from 200px */
        height: 260px;  /* Increased from 200px */
    }
    .manager-quote {
        font-size: 1.1rem;
        text-align: center;
    }
    .quote-icon {
        text-align: center;
    }
    .accent-dots {
        display: none;
    }
}

/* Business page ends here */

/* Motors Page */
.motors-top-section {
    width: 100%;
    min-height: 400px;
    background: url('../images/businesses/motors-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.motors-top-inner {
    width: 100%;
    min-height: 95svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem;
    background: rgba(0, 0, 0, 0.5);
}

.motors-top-subtitle {
    font-size: 1.375rem;
    color: var(--colorPrimary);
    font-weight: 500;
}

.motors-top-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--colorWhite);
}

.motors-feat-wrap {
    width: 100%;
    min-height: 300px;
    border-radius: 2rem;
    background-color: var(--colorBlack);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: clip;
}

.motors-feat-item {
    width: calc(50%);
    aspect-ratio: 4 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.motors-feat-item.alt {
    background: var(--colorPrimary);
}

.motors-feat-h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--colorPrimary);
}

.motors-feat-para {
    font-size: 1rem;
    font-weight: 500;
    color: var(--colorLightyellow);
}

.motors-feat-item.alt .motors-feat-h1{
    color: var(--colorBlack);
}

.motors-feat-item.alt .motors-feat-para{
    color: #1d1d1d;
}

.motors .motors-feat-h1 {
    color: var(--colorNavyBlue);
}

.motors .motors-feat-para {
    color: var(--colorNavyBlue);
}

.motors .motors-feat-item.alt {
    background: var(--colorNavyBlue);
}

.motors .motors-feat-item.alt .motors-feat-h1{
    color: var(--colorWhite);
}

.motors .motors-feat-item.alt .motors-feat-para{
    color: var(--colorDimWhite);
}

/* motors gallary */
.gallery-section {
    background-color: #ffffff;
}

.gallery-item {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden; /* Keeps the zooming image inside the rounded corners */
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.gallery-image-wrapper {
    aspect-ratio: 1 / 1; /* Forces a perfect square grid */
    overflow: hidden;
    background-color: #f8f9fa;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Zoom Effect */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Glass Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4); /* Semi-transparent dark overlay */
    backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.overlay-icon {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-icon {
    transform: scale(1); /* Icon pops into full size */
}

/* Motors page ends here */

/* Logistics Page  */
.logistics-top-section {
    width: 100%;
    min-height: 80svh;
    background: url('../images/businesses/transport.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.provide-logistics-main {
    width: 100%;
    min-height: 400px;

    display: flex;
    flex-wrap: wrap;
}

.provide-logistics-left {
    width: 65%;
    min-height: 100%;
    /* background: #1874c1; */
    background: #004e9a;
    padding: 4rem;
}

.provide-logistics-items {
    width: 90%;
    margin-inline-start: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.provide-logistics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 1rem;
    gap: 1rem;
}

.provide-logistics-icon {
    max-width: 80px;
}

.provide-logistics-h4 {
    font-size: 1rem;
    color: var(--colorDimWhite);
}

.provide-logistics-right {
    width: 35%;
    min-height: 100%;
    background: #04111d;
    padding: 3rem 10rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provide-logistics-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--colorPrimary);
}

.provide-logistics-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--colorWhite);
}

.provide-logistics-desc {
    font-size: 1rem;
    color: var(--colorDarkGray);
}

.logs-award-section {
    width: 100%;
    min-height: 40vh;
    background: url('../images/businesses/award4.jpg');
    background-attachment: fixed;
    background-position: center;
}

.logs-award-inner {
    width: 100%;
    min-height: 100%;
    background-color:rgba(227,252,255,0.95);

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    padding: 4rem 8rem;
}

.logs-award-left {
    width: calc(50% - 1rem);
}

.logs-award-h2 {
    font-size: 2rem;
}

.logs-award-h2.text-bold {
    font-weight: 700;
}

.logs-award-right {
    width: calc(50% - 1rem);
    aspect-ratio: 1 / 1;
    border-radius: 100vw;

    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    background: var(--colorWhite);

    overflow: hidden;
}

.logs-award-item {
    width: calc(50% - 3px);
    aspect-ratio: 1 / 1;
    background-color: #004e9a;
}

.logs-award-item.one,
.logs-award-item.two {
    padding: 1rem;
}

.logs-award-wrap {
    width: 90%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logs-award-item.one .logs-award-wrap {
    margin-left: auto;
    padding-top: 3rem;
}

.logs-award-item.two .logs-award-wrap {
    margin-right: auto;
    padding-bottom: 3rem;
}

.logs-award-icon {
    max-width: 70px;
}

.logs-award-h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--colorWhite);
    text-align: center;
}

.logs-mockup-sec {
    width: 100%;
    min-height: 400px;

    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.logs-mockup-item {
    grid-column: 1 / 2;
    height: 100%;
    overflow: hidden;
}

.logs-mockup-item:last-child {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

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

/* Logistics Page ends  */

/* Construction page starts */

.cons-services {
    width: 100%;
    min-height: 400px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    margin-top: 4rem;
}

.cons-service {
    padding: 3rem 2rem;
    border-radius: .5rem;
    background: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.cons-img-wrap {
    position: relative;
    width: 100px;
    aspect-ratio: 1 / 1;
    padding: 1.25rem;
    background: url('../images/line.png'), rgb(249, 227, 130);
    border-radius: 100vw;
    overflow: hidden;
    z-index: 0;
}

.cons-serv-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
}

/*--------------------
scale-in-center
----------------------*/

.cons-service:hover .scale-in-center{
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.cons-exp-sec {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.cons-exp-left {
    width: calc(40% - 1rem);
}

.cons-exp-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

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

.cons-exp-right {
    width: calc(60% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cons-exp-title-sec {
    width: min(100%, 400px);
    border-left: .75rem solid var(--colorPrimary);
    padding: 1rem;

    background: url('../images/line.png');
}

.cons-exp-num {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--colorPrimary);
}

.cons-exp-text {
    font-size: 2rem;
    font-weight: 600;
}

.cons-exp-title {
    font-size: 2rem;
    font-weight: 600;
    text-wrap: pretty;
    margin-bottom: 0;
}

.cons-exp-desc {
    font-size: 1rem;
    margin-bottom: 0;
}

.cons-founder-name {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Construction page ends */

/* Farming Page Starts */
.farming-about-sec {
    position: relative;
    width: 100%;
    min-height: 400px;

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    padding-top: 6rem;
}

.farming-about-left {
    position: relative;
    width: calc(45% - 1rem);
    min-height: 1000px;
}

.farming-about-left-wrap {
    position: relative;
    width: 100%;
    min-height: 100%;
    border-top-right-radius: 25rem;
    border-bottom-right-radius: 3rem;
    overflow: hidden;

    background: url('../images/farming/h1-banner2.jpg');
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
}

.farming-about-right {
    width: calc(55% - 1rem);
    min-height: 100%;
    padding-left: 4rem;
    background: url('../images/farming/h1-bg01.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.farming-about-subtitle {
    color: var(--colorDarkGreen);
    font-size: 1.25rem;
    font-weight: 600;
}

.farming-about-title {
    width: 70%;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--colorBlack);
    text-wrap: pretty;
    margin-block: 1rem 1.5rem;
}

.farming-about-right .farming-about-desc {
    width: 70%;
    font-size: 1rem;
    color: var(--colorBlack);
    margin-block: 1rem 1.5rem;
}

.farming-about-exp {
    width: 100%;
    min-height: 100px;

    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 3rem;

    margin-top: 3rem;
}

.farming-about-exp-img {
    aspect-ratio: 1 / 1;
}

.farming-about-exp-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 75%;
    color: var(--colorDarkGreen);
}

.farming-about-exp-text {
    font-size: 1.5rem;
    font-weight: 500;
}


.farming-about-cards {
    position: absolute;
    width: 100%;
    min-height: 250px;

    left: 0;
    bottom: 100px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;

    padding-inline: 10rem;
}

.farming-about-card-item {
    padding: 3rem 2rem;
    border-radius: 1rem;
    background-color: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.farming-aci-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--colorDarkGreen);
    text-align: center;
}

.farming-aci-desc {
    font-size: 1rem;
    color: var(--colorBlack);
    text-align: center;
    margin-bottom: 0;
}

.farming-aci-icon-wrap {
    position: relative;
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.farming-aci-num {
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: .75;
    color: #e8eae5;
}

.farming-aci-icon {
    position: relative;
    width: 60px;
    height: 60px;
}

/* .farming-aci-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--colorDarkGreen);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
} */

.farming-vision-sec {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.farming-vision-left {
    width: calc(50% - 1rem);
    min-height: 100%;
}

.farming-vision-right {
    width: calc(50% - 1rem);
    min-height: 100%;
    padding-left: 4rem;
}

.farming-vision-items {
    width: 100%;
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-block: 3rem;
}

.farming-vision-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
}

.farming-vision-item-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 100vw;
    background: #e8eae5;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.farming-vision-item-icon {
    width: 100%;
    height: 100%;
}

.farming-vision-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--colorDarkGreen);
}

.farming-vision-item-desc {
    font-size: 1rem;
    color: var(--colorBlack);
}

.farming-chairman-section {
    background: url('../images/farming/farming.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.farming-chairman-inner {
    width: 100%;
    min-height: 400px;
    text-align: center;
    gap: 1rem;
    padding: 6rem 16rem;
    background: rgba(0, 0, 0, 0.75);
    color: var(--colorWhite);
}

.farming-chairman-message {
    font-size: 1.5rem;
    color: #e8eae5;
    margin-bottom: 0;
}

.farming-chairman-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--colorDimWhite);
    margin-top: 2rem;
}

.farming-chairman-designation {
    font-size: 1rem;
}


/* Farming Page Ends */


/* Responsive code starts here */

@media(max-width: 1300px) {
    .potential-wrapper {
        width: 80%;
        margin-inline: 10%;
    }

    .farming-about-right .farming-about-desc {
        width: 90%;
    }

    .farming-about-cards {
        padding-inline: 4rem;
    }

    .farming-vision-right {
        padding-left: 0;
    }

    .farming-about-title {
        width: 90%;
    }

    .farming-vision-items {
        grid-template-columns: 1fr;
    }

    .business-manager-left {
        width: calc(40%);
    }

    .business-manager-right {
        width: calc(60% - 3rem);
    }
}

@media (max-width: 1050px) {
    .carousel-item {
        height: calc(min(80vh, 550px));
    }

    .caro-overlay {
        padding: 100px 120px;
    }

    .caro-title {
        font-size: 3.5rem;
        width: 75%;
    }

    .caro-desc {
        font-size: 0.75rem;
    }

    .common-sec {
        padding: 60px 60px;
    }

    .common-sec.mt-200 {
        margin-top: 120px;
    }

    .about-exp-box {
        width: 8rem;
        height: 10rem;
    }

    .about-exp-count {
        font-size: 2rem;
    }

    .about-exp-text {
        font-size: 1.125rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .about-key-point {
        grid-template-columns: 30px 1fr;
    }

    .about-key-icon {
        height: 30px;
        padding: 0.25rem;
    }

    .about-key-text {
        font-size: 1rem;
    }

    .core-value-item {
        padding: 2rem;
    }

    .md-left {
        grid-template-columns: 3fr 3fr;
    }

    .md-name {
        font-size: 1.5rem;
    }

    .md-says-content {
        text-align: justify;
    }

    .ca-icon {
        width: 80px;
    }

    .ca-left {
        width: calc(60% - 1rem);
    }

    .ca-right {
        width: calc(40% - 1rem);
    }

    .ca-img {
        width: 90%;
    }

    .why-us-right {
        max-height: 400px;
    }

    .gallery-wrapper {
        min-height: 200px;
    }

    .potential-wrapper {
        width: 100%;
        margin-inline: 0;
    }

    .bl-desc {
        width: 70%;
    }

    .business-landing {
        min-height: 300px;
    }

    .bl-inner {
        min-height: 300px;
    }

    .motors-feat-h1 {
        font-size: 2rem;
    }

    .motors-top-inner {
        width: 100%;
        min-height: 45svh;
    }

    .logistics-top-section {
        width: 100%;
        min-height: 500px;
    }

    .provide-logistics-items {
        width: 100%;
    }

    .provide-logistics-right {
        padding: 3rem;
    }

    .logs-award-inner {
        padding: 4rem;
    }

    .logs-award-icon {
        max-width: 50px;
    }

    .logs-award-h4 {
        font-size: 1rem;
    }

    .farming-about-right {
        padding-left: 0;
    }

    .farming-about-cards {
        padding-inline: 2rem;
        gap: 1rem;
        bottom: 3rem;
    }

    .farming-chairman-inner {
        padding: 6rem 10rem;
    }

    .business-manager-section {
        padding: 4rem;
    }

    .business-manager-name {
        font-size: 3rem;
    }
}

@media (max-width: 850px) {
    .nav-link {
        text-align: center;
    }

    .carousel-item {
        height: calc(min(80vh, 450px));
    }

    .caro-title {
        font-size: 2.5rem;
        width: 75%;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-exp-box {
        width: 14rem;
        height: 14rem;
        place-items: unset;
    }

    .about-exp-box::after {
        top: -50%;
    }

    .about-exp-count {
        font-size: 4rem;
    }

    .about-exp-text {
        font-size: 2rem;
    }

    .about-img-hanging {
        width: 50%;
    }

    .about-right {
        margin-top: 150px;
    }

    .about-title {
        font-size: 3rem;
    }

    .about-desc {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-key-point {
        grid-template-columns: 40px 1fr;
    }

    .about-key-icon {
        height: 40px;
        padding: 0.25rem;
    }

    .about-key-text {
        font-size: 1.5rem;
    }

    .core-values {
        gap: 1rem;
    }

    .common-sec.mt-200 {
        margin-top: 0px;
    }

    .chairman-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        place-items: center;
    }

    .md-name {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .contact-right {
        order: -1;
    }

    .ca-left {
        width: calc(50% - 1rem);
        gap: 0.5rem;
    }

    .ca-right {
        width: calc(50% - 1rem);
    }

    .ca-title {
        font-size: 2.5rem;
    }

    .about-counter-sec {
        padding-inline: 2rem;
    }

    .about-counter-h1 {
        font-size: 3rem;
    }

    .why-us-left,
    .why-us-right {
        width: 100%;
    }

    .top-landing-sec {
        padding: 100px 60px;
    }

    .bl-inner {
        padding-inline: 4rem;
    }

    .bl-desc {
        width: 80%;
    }

    .ba-para {
        width: 85%;
    }

    .logistics-top-section {
        min-height: 400px;
    }

    .provide-logistics-left {
        width: 60%;
        padding: 3rem;
    }

    .provide-logistics-right {
        width: 40%;
        padding: 3rem;
    }

    .logs-award-inner {
        padding: 4rem;
    }

    .logs-award-left, .logs-award-right {
        width: 100%;
    }

    .logs-award-icon {
        max-width: 80px;
    }

    .logs-award-h4 {
        font-size: 1.5rem;
    }

    .cons-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .cons-exp-left, .cons-exp-right {
        width: 100%;
    }

    .cons-exp-img-wrap {
        aspect-ratio: 4 / 3;
    }

    .farming-about-sec {
        padding: 4rem;
    }

    .farming-about-left {
        margin-inline: auto;
        width: 100%;
        min-height: 500px;
    }

    .farming-about-left-wrap {
       border-radius: 2rem;
    }

    .farming-about-right {
        width: 100%;
    }

    .farming-about-cards {
        position: relative;
        bottom: 0;
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .farming-vision-left {
        width: 60%;
        margin-inline: auto;
    }
    
    .farming-vision-right {
        width: 100%;
    }

    .farming-chairman-inner {
        padding: 5rem;
    }

    .business-manager-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 650px) {
    .carousel-indicators {
        justify-content: flex-end;
    }

    .carousel-item {
        height: calc(min(80vh, 200px));
    }

    .caro-overlay {
        padding: 30px 30px;
        gap: 0.5rem;
    }

    .caro-title {
        font-size: 1.5rem;
        width: 100%;
    }

    .common-sec {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-title-sec p {
        width: 90% !important;
    }

    .quote-img {
        width: 90%;
    }

    .quote-text {
        font-size: 1rem;
        width: 90%;
    }

    .about-exp-box {
        width: 7rem;
        height: 7rem;
    }

    .about-exp-count {
        font-size: 2rem;
    }

    .about-exp-text {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .about-left-img-wr {
        width: calc(100% - 7rem - 1rem);
    }

    .about-img-hanging {
        top: 8rem;
    }

    .about-right-dots {
        top: calc(100% + 10px);
        width: 100px;
        left: 7rem;
    }

    .about-right {
        margin-top: 80px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-key-points {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-key-point {
        grid-template-columns: 40px 1fr;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 0.5rem;
        border-radius: 0.5rem;
    }

    .about-key-icon {
        height: 40px;
        padding: 0.25rem;
    }

    .about-key-text {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .industry-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-values {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .business-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .chairman-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        place-items: center;
    }

    .md-left {
        gap: 0;
    }

    .md-name {
        font-size: 1.25rem;
    }

    .md-designation {
        font-size: 1rem;
    }

    .md-says-heading {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: repeat(1, 100%);
        padding: 1rem;
    }

    .contact-right {
        padding: 1.5rem;
    }

    .awards-item {
        width: 50%;
    }

    .top-landing-sec {
        min-height: 250px;
        padding: 4rem 2rem;
    }

    .top-landing-heading {
        font-size: 3rem;
    }

    .ca-wrapper {
        flex-wrap: wrap;
    }

    .ca-left,
    .ca-right {
        width: 100%;
    }

    .ca-img {
        width: 70%;
    }

    .about-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-counter-item:nth-child(even)::before {
        display: none;
    }

    .about-counter-sec {
        padding-inline: 2rem;
    }

    .about-counter-h1 {
        font-size: 3rem;
    }

    .why-us-sec {
        margin-top: 100px;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        min-height: 150px;
    }

    .career-item {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .potential-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .business-landing {
        min-height: 200px;
    }

    .bl-inner {
        padding: 2rem 3rem;
    }

    .bl-title {
        font-size: 2.5rem;
    }

    .bl-desc {
        width: 100%;
        font-size: .875rem;
    }

    .motors-feat-item {
        width: calc(100%);
    }
    
    .motors-feat-h1 {
        font-size: 2rem;
    }
    
    .motors-feat-para {
        font-size: 1rem;
    }

    .motors-feat-item:nth-child(odd) {
        background: var(--colorBlack);
    }

    .motors-feat-item:nth-child(odd) .motors-feat-h1{
        color: var(--colorPrimary);
    }
    
    .motors-feat-item:nth-child(odd) .motors-feat-para{
        color: var(--colorLightyellow);
    }

    .motors-feat-item:nth-child(even) {
        background: var(--colorPrimary);
    }
    
    .motors-feat-item:nth-child(even) .motors-feat-h1{
        color: var(--colorBlack);
    }
    
    .motors-feat-item:nth-child(even) .motors-feat-para{
        color: #1d1d1d;
    }

    .motors-top-inner {
        padding: 4rem 2rem;
    }

    .motors-top-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .logistics-top-section {
        min-height: 200px;
    }

    .provide-logistics-left, .provide-logistics-right {
        width: 100%;
        padding: 1rem;
    }

    .provide-logistics-right {
        padding: 3rem 2rem;
    }

    .provide-logistics-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .logs-award-inner {
        padding: 4rem 1rem;
    }

    .logs-award-left, .logs-award-right {
        width: 100%;
    }

    .logs-award-icon {
        max-width: 40px;
    }

    .logs-award-h4 {
        font-size: .675rem;
    }

    .logs-award-item.one .logs-award-wrap {
        padding-top: 1rem;
    }

    .cons-services {
        grid-template-columns: repeat(1, 1fr);
    }

    .farming-about-sec {
        padding: 3rem 1rem;
    }

    .farming-about-title {
        width: 100%;
        font-size: 2rem;
    }

    .farming-about-right .farming-about-desc {
        width: 100%;
    }

    .farming-about-exp {
        gap: 1.5rem;
    }

    .farming-about-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .farming-chairman-inner {
        padding: 4rem 2rem;
    }

    .farming-chairman-message {
        font-size: 1.25rem;
    }

    .farming-about-exp-text {
        font-size: 1.25rem;
    }

    .logs-mockup-sec {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 1rem;
    }

    .logs-mockup-item, .logs-mockup-item:last-child {
        grid-column: 1 / 2;
    }

    .business-manager-section {
        padding: 4rem 1rem;
    }

    .business-manager-left, .business-manager-right {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .caro-overlay {
        gap: 0;
    }

    .caro-desc {
        display: none;
    }

    .om-btn {
        padding: 0.375rem .75rem;
        font-size: .875rem;
    }

    .om-btn .circle {
        margin-left: 0;
    }

    .contact-right {
        padding: 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .con-tile-h6 {
        margin-bottom: 0;
    }

    .con-tile-h4 {
        font-size: 1.125rem;
        font-weight: 600;
    }
}

/* Responsive code ends here */
