@font-face {
    font-family: head;
    src: url(/assets/fonts/gilroy/Gilroy-Bold.ttf);
}

@font-face {
    font-family: subh;
    src: url(/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: para;
    src: url(/assets/fonts/urbanist/Urbanist-VariableFont_wght.ttf);
}

:root {
    --white-color: #000000;
    --black-color: #ffffff;
    --bg-color: #f9f9f9;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --accent-color: #333;
    /* Dark minimalist accent */
    --error-color: #e74c3c;
    --border-color: #e0e0e0;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Colored top layer that is revealed only under the ball */

#smooth-wrapper {
    position: relative;
}

/* preloader start */
/* ---------- MAIN CONTENT ---------- */
.main-preloader-content {
    position: relative;
    z-index: 1;
}

/* ---------- PRELOADER ---------- */
.main-preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* So rectangles act as the real background */
    z-index: 9999;
    pointer-events: none;
    /* Let underlying content load */
}

.main-preloader-rectangles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.main-preloader-rect {
    flex: 0 0 150px;
    height: 100%;
    background: #ffff9a;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.main-preloader-loader-content {
    position: relative;
    z-index: 2;
    width: calc(100% - 200px);
    /* 100px padding each side */
    text-align: left;
}

.main-preloader-loading-bar {
    width: 0%;
    height: 12px;
    background: #333;
    transition: width 0.3s ease;
}

.main-preloader-percentage {
    color: #333;
    font-size: 100px;
    margin-top: 40px;
    font-family: head;
}

/* preloader end */

/* Hamburger Button - Fixed Position */
.hamburger {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #009739;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    z-index: 101;
    box-shadow: var(--shadow-s);
}


.hamburger:hover {
    background: #009739;
    transform: scale(1.05);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active {
    left: 298px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
    backdrop-filter: blur(5px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Navigation - Glassmorphism */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: #ffff9a;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateY(0);
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* margin-top: 4rem; */
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo img {
    width: 100%;
}

.nav-links {
    list-style: none;
    padding: 2rem 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.sidebar.active .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.active .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.sidebar.active .nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.sidebar.active .nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.sidebar.active .nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.sidebar.active .nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
    font-family: para;
    font-size: 18px;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 0 4px 4px 0;
}

.nav-links a:hover {
    background: #009739;
    padding-left: 2.5rem;
    color: #fff;
}

.nav-links a:hover::before {
    transform: scaleY(1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-icon-2 {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.4;
    fill: none;
}


@media(max-width: 768px) {
    .hamburger {
        top: 1%;
        left: 2%;
        width: 40px;
        height: 40px;
    }

    .hamburger span {
        width: 18px;
    }
}

/* home-hero-section-start */
.home-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-image: url(/assets/images/banner/main-home-hero.jpg);
    background-size: cover;
    position: relative;
}

.home-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000006e;
}

.home-hero-cont {
    position: relative;
    z-index: 10;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.home-hero-heading {
    font-size: 80px;
    font-family: head;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    /* text-align: center; */
}

.home-hero-heading-mobile {
    display: none;
}

.home-hero-para {
    font-size: 20px;
    font-weight: 500;
    font-family: para;
    color: #fff;
    width: 60%;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-top: 0px;
    /* text-align: center; */
}

.home-hero-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 15px 30px;
    text-decoration: none;
    font-family: para;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s ease;
}

.home-hero-button:hover {
    background-color: #ffff9a;
    color: #333;
}



@media(max-width: 420px) {
    .home-hero-section {
        height: 6%;
    }

    .home-hero-cont {
        padding: 20px;
        gap: 25px;
        /* align-items: center; */
    }

    .home-hero-heading {
        display: none;
    }

    .home-hero-heading-mobile {
        display: block;
        font-size: 30px;
        /* text-align: center; */
        color: #fff;
        font-family: head;
        margin-top: 0px;
        margin-bottom: 0px;
        font-weight: 500;
    }

    .home-hero-para {
        width: 100%;
        /* text-align: center; */
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: 1px;
    }

    .home-hero-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* home-hero-section-end   */

/* what we do section start */
.wwd-section {
    padding: 100px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.wwd-heading {
    width: 70%;
    font-size: 80px;
    font-family: head;
    margin-top: 0px;
    overflow: hidden;
}

.wwd-adj {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.wwd-para {
    width: 100%;
    font-size: 17px;
    font-family: para;
    font-weight: 600;
    /* line-height: 1.5; */
    letter-spacing: 1px;
}

.wwd-button {
    color: #000000;
    background: rgba(7, 255, 36, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    text-decoration: none;
    font-family: para;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s ease;
}

.wwd-button:hover {
    background-color: #009739;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #009739;
}

.wwd-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wwd-card {
    width: 50%;
    height: 300px;
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    background-color: #ffffb8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* .wwd-overlay {
    position: absolute;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #ffff9a24;
} */

.wwd-card-heading {
    font-family: head;
    font-size: 40px;
    color: #000000;
    margin-bottom: 0px;
}

.wwd-card-para {
    font-family: para;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0px;
}

/* .wwd-card-1 {
    background-image: url(/assets/images/banner/tele-com.jpg);
    background-size: cover;
}

.wwd-card-2 {
    background-image: url(/assets/images/banner/solar.jpg);
    background-size: cover;
} */


@media(max-width: 480px) {
    .wwd-section {
        padding: 100px 20px;
        gap: 40px;
    }

    .wwd-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .wwd-heading {
        width: 100%;
        font-size: 40px;
        text-align: center !important;
        font-weight: 500;
    }

    .wwd-adj {
        width: 100%;
    }

    .wwd-bottom {
        flex-direction: column;
        gap: 40px;
    }

    .wwd-card {
        width: fit-content;
        height: 300px;
    }

    .wwd-card-heading {
        font-size: 28px;
        font-weight: 500;
    }

    .wwd-card-para {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
    }

    .wwd-para {
        text-align: center;
    }

    .wwd-adj {
        justify-content: center;
        align-items: center;
    }

    .wwd-button {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* what we do section end   */

/* client carousel start */
.carousel-container {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    overflow: hidden;
    padding: 0px 0px 200px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* Added top/bottom padding to avoid any clipping */
}

.client-carousel-heading {
    font-size: 80px;
    font-family: head;
    text-align: center;
}

.client-carousel {
    width: 100%;
}

.slick-track {
    display: flex !important;
    align-items: center;
}

.slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 150px;
    height: 100px;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 20px;
    color: #333;
    margin: 0 20px;
    padding: 10px;
}

/* Fog/blur gradient on left and right */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0));
}

@media (max-width: 480px) {
    .client-carousel-heading {
        font-size: 40px;
        font-weight: 500;
        /* Smaller heading for tablets/smaller viewports */
    }

    .carousel-container {
        padding: 40px 0px 100px 0px;
        /* Reduced vertical padding */
        gap: 30px;
        /* Reduced gap */
    }

    .logo {
        width: 10% !important;
        /* Reduced logo size */
        height: 70px;
        margin: 0 10px;
        /* Reduced margin between logos */
        padding: 5px;
    }

    /* Adjusting the gradient width for smaller screens */
    .carousel-container::before,
    .carousel-container::after {
        width: 75px;
        /* Halve the fade width */
    }
}


/* client carousel end   */

/* project section start */
.home-project-section {
    padding: 0px 0px 120px 0px;
    /* height: 100%; */
    /* display: flex; */
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-project-left {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
}

.home-project-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
}

.home-project-left-cont {
    position: absolute;
    right: -8%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 70%;
    gap: 50px;
    opacity: 0;
    margin-right: 60px;
    padding-top: 60px;
    /* hidden initially */
    /* soft upward motion when revealed */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-project-left-cont h1 {
    font-size: 60px;
    font-family: head;
    margin-top: 0px;
}


.home-project-mobile-section {
    display: none;
}

@media (max-width: 1650px) {
    .home-project-left-cont h1 {
        font-size: 50px;
    }
}

@media (max-width: 1550px) {
    .home-project-left-cont h1 {
        font-size: 50px;
    }
}





.home-project-left-cont p {
    width: 70%;
    font-size: 20px;
    font-weight: 600;
    font-family: para;
    /* letter-spacing: 1px; */
    line-height: 30px;
}

@media (max-width: 1650px) {
    .home-project-left-cont p {
        font-size: 18px;
        width: 80%;
    }
}

@media (max-width: 1550px) {
    .home-project-left-cont p {
        font-size: 18px;
        width: 80%;
    }
}


@media(max-width: 768px) {
    .home-project-section {
        display: none;
    }

    .home-project-mobile-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 80px 20px;
    }

    .home-project-mobile-section img {
        /* width: 100%; */
        height: 500px;
        object-fit: cover;
        border-radius: 24px;
    }

    .home-project-mobile-cont {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .home-project-mobile-cont h1 {
        font-family: head;
        font-size: 30px;
        margin-top: 0px;
        margin-bottom: 0px;
        /* text-align: center; */
        font-weight: 500;
    }

    .home-project-mobile-p {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .home-project-mobile-p p {
        font-family: para;
        font-weight: 700;
        /* letter-spacing: 1px; */
        line-height: 1.4;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .home-project-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.home-project-section-2 {
    padding: 0px 0px 120px 0px;
    /* display: flex; */
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-project-left-2 {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: row-reverse;
}

.home-project-left-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
}

.home-project-left-cont-2 {
    position: absolute;
    left: 8%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 65%;
    gap: 50px;
    opacity: 0;
    padding-top: 60px;
    /* hidden initially */
    /* soft upward motion when revealed */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-project-left-cont-2 h1 {
    font-size: 60px;
    font-family: head;
    margin-top: 0px;
}

@media (max-width: 1650px) {
    .home-project-left-cont-2 h1 {
        font-size: 50px;
    }
}

@media (max-width: 1550px) {
    .home-project-left-cont-2 h1 {
        font-size: 50px;
    }
}


.home-project-btn-p-adj {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.home-project-left-cont-2 p {
    width: 70%;
    font-size: 20px;
    font-weight: 600;
    font-family: para;
    /* letter-spacing: 1px; */
    line-height: 30px;
}

@media (max-width: 1650px) {
    .home-project-left-cont-2 p {
        font-size: 18px;
        width: 80%;
    }
}

@media (max-width: 1550px) {
    .home-project-left-cont-2 p {
        font-size: 18px;
        width: 80%;
    }
}


@media(max-width: 768px) {
    .home-project-section-2 {
        display: none;
    }
}

.home-project-btn {
    color: #000000;
    background: rgba(255, 252, 45, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 15px 40px;
    text-decoration: none;
    font-family: para;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s ease;
}

.home-project-btn:hover {
    background-color: #ffff23;
    border: 1px solid #ffff9a;
    color: #009739;
}


/* new-proj-section-start */
.new-proj-section {
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.new-proj-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.new-proj-heading {
    font-size: 80px;
    font-family: head;
    margin-top: 0px;
    margin-bottom: 0px;
}

.new-proj-para {
    font-family: para;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 80%;
    text-align: center;
    line-height: 30px;
}

.new-proj-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.new-proj-card {
    width: 100%;
    position: relative;
    z-index: -100;
}

.new-proj-card img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
}

.new-proj-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 13.05%,
            rgba(0, 0, 0, 0.9) 99.98%);
    position: absolute;
    z-index: 100;
    top: 0;
    border-radius: 0px 0px 50px 50px;
}

.new-proj-cont {
    position: absolute;
    bottom: 5%;
    z-index: 120;
    padding: 0px 20px 20px 20px;
}

.new-proj-cont span {
    font-family: subh;
    font-weight: 500;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
}

.new-proj-cont h1 {
    font-family: head;
    font-weight: 500;
    color: #fff;
    font-size: 50px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.new-proj-cont p {
    font-family: para;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.new-proj-heading-mobile {
    display: none;
}

@media (max-width: 768px) {
    .new-proj-section {
        padding: 80px 20px;
    }

    .new-proj-bottom {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .new-proj-card {
        height: 60vh;
    }

    .new-proj-card img,
    .new-proj-overlay {
        border-radius: 30px;
    }

    .new-proj-heading {
        display: none;
    }

    .new-proj-heading-mobile {
        font-size: 35px;
        font-family: head;
        margin-top: 0px;
        margin-bottom: 0px;
        display: block;
        text-align: center;
        font-weight: 500
    }

    .new-proj-para {
        width: 100%;
        font-size: 16px;
    }

    .new-proj-cont h1 {
        font-size: 40px;
    }

    .new-proj-cont p {
        letter-spacing: 1px;
        font-size: 16px;
    }
}

/* new-proj-section-end   */

/* counter-section-start */
.counter-section {
    padding: 100px 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.blur-div {
    width: 400px;
    height: 400px;
    position: absolute;
    left: -5%;
    bottom: 10%;
    border-radius: 302px;
    background: #00c64c;
    opacity: 0.7;
    filter: blur(250px);
    z-index: -10;
}

.counter-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.counter-heading {
    font-size: 80px;
    font-family: head;
    margin-top: 0px;
}

.counter-heading-mobile {
    display: none;
}

.counter-left p {
    font-size: 20px;
    font-family: para;
    font-weight: 600;
    letter-spacing: 1px;
    width: 60%;
}

.counter-right {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 40%;
}

.counter-section-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 40px; */
    font-size: 20px;
    font-weight: 600;
}

.counter-section-text {
    color: #000000;
    /* border: 1px solid rgb(255, 255, 255); */
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 20px;
    font-family: para;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: #00c64c;
}

.counter-section-number {
    font-size: 100px;
    font-weight: 700;
    color: #000;
    text-align: right;
    font-family: head;
}

@media (max-width: 1550px) {
    .counter-heading {
        font-size: 70px;
    }

    .counter-section-number {
        font-size: 80px;
    }

    .counter-left p {
        width: 70%;
    }
}

@media(max-width: 768px) {
    .counter-section {
        padding: 100px 20px;
        flex-direction: column;
        gap: 100px;
    }

    .counter-left {
        width: 100%;
        align-items: center;
    }

    .counter-heading {
        display: none;
    }

    .counter-heading-mobile {
        display: block;
        font-size: 35px;
        font-family: head;
        margin-top: 0px;
        margin-bottom: 0px;
        text-align: center;
        font-weight: 500;
    }

    .counter-left p {
        width: 100%;
        font-size: 16px;
    }

    .counter-right {
        width: 100%;
    }

    .counter-section-number {
        font-size: 40px;
    }

    .counter-section-text {
        font-size: 15px;
    }
}

/* counter-section-end   */

/* cta-section-start */
.cta-section {
    padding: 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cta-card {
    width: 80%;
    height: 400px;
    border-radius: 50px;
    /* background-color: #ffffff; */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    background-image: url(/assets/images/banner/cta-img.png);
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

@media (max-width: 1650px) {
    .cta-card {
        width: 95%;
    }
}

@media (max-width: 1550px) {
    .cta-card {
        width: 95%;
    }
}

.cta-cont {
    width: 50%;
}

.cta-heading {
    font-size: 50px;
    font-family: head;
    margin-top: 0px;
}

.cta-cont p {
    font-size: 18px;
    font-family: para;
    margin-top: 0px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-btn {
    color: #000000;
    background: rgba(251, 255, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    text-decoration: none;
    font-family: para;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background-color: #ffff23;
    color: #000000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #ffff23;
}

.cta-ribbon {
    width: 100%;
    height: 150px;
    background-color: #009739;
    position: absolute;
    bottom: 10%;
    z-index: -10;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


@media(max-width: 768px) {
    .cta-section {
        padding: 0px 20px 100px 20px;
    }

    .cta-card {
        padding: 40px 15px;
        width: 100%;
        height: 310px;
    }

    .cta-cont {
        width: 100%;
    }

    .cta-heading {
        font-size: 25px;
        /* text-align: center; */
        margin-bottom: 30px;
        font-weight: 500;
    }

    .cta-btn {
        font-size: 16px;
    }

    .cta-cont p {
        font-size: 16px;
    }

}

/* cta-section-end */

/* main-footer-start */
.main-footer {
    position: relative;
    padding: 100px 100px 100px 100px;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column; */
    /* height: 60%; */
    background-color: #fdfdf8;
}

.footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
}

.footer-top-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top-left img {
    width: 40%;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-socials a {
    text-decoration: none;
    color: #000000;
}

.footer-socials a i {
    font-size: 35px;
}

.footer-copy-right p {
    font-size: 16px;
    font-family: para;
    font-weight: 600;
    color: #333;
}

.footer-top-right {
    width: 50%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: last baseline;
    justify-content: space-between;
    /* gap: 10px; */
}

.footer-address {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer-address h4 {
    font-size: 22px;
    font-family: head;
    margin-top: 0px;
    margin-bottom: 0px;
}

.footer-address p {
    font-size: 18px;
    color: #333;
    font-family: para;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 500;
    width: 100%;
}

.footer-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.footer-links li a {
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    font-family: para;
    font-size: 18px;
    color: #333;
    transition: all 0.4s ease;
    border-radius: 6px;
}

.footer-links li a:hover {
    color: #fff;
    background-color: #000;
    border-radius: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-svg {
    width: 70%;
    height: 310px;
    /* position: absolute; */
    bottom: 0;
}



@media(max-width: 420px) {
    .main-footer {
        padding: 20px;
    }

    .footer-top {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .footer-top-left {
        width: 100%;
    }

    .footer-top-right {
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 40px;
        height: 200px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-address {
        width: 100%;
    }

    .footer-links li a {
        padding: 0px;
    }
}

/* main-footer-end   */

/* about-hero-section-start */
.about-hero-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url(/assets/images/banner/about-hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-heading {
    font-size: 100px;
    font-family: head;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
    /* position: relative; */
    /* z-index: 100; */
}


@media(max-width: 420px) {
    .about-hero-section {
        height: 12%;
    }

    .about-hero-heading {
        font-size: 35px;
        text-align: center;
        font-weight: 500;
    }
}


/* about-hero-section-end   */

/* about-bento-section-start */
.about-bento-section {
    padding: 100px 100px 100px 100px;
}

.about-big-bento {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 90%;
}

.bento-left {
    width: 100%;
    border-radius: 20px;
    background-color: #333;
    height: 100%;
}

/* Carousel container fits inside bento-left */
.bento-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* Each slide image (all overlapped) */
.carousel-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    /* Start collapsed */
    z-index: 1;
}

.carousel-image.active {
    width: 100%;
    /* First image visible */
    z-index: 0;
    object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    bottom: 20px;
    background: transparent;
    backdrop-filter: blur(20px);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 100;
}

.carousel-btn.left {
    left: 20px;
}

.carousel-btn.right {
    right: 20px;
}

.carousel-btn i {
    color: #fff;
    font-size: 26px;
}

.bento-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background-color: #3333331a;
    padding: 20px;
    justify-content: space-between;
    height: 100%;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.bento-right-adj {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-right h1 {
    font-size: 80px;
    font-family: head;
    color: #000000;
    margin: 0px;
}

.bento-right-div {
    font-size: 20px;
    font-family: para;
    color: #000000;
    font-weight: 600;
    line-height: 27px;
    background-color: #ffffffb3;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    padding: 20px;
    border-radius: 12px;
}

@media(max-width: 1650px) {
    .bento-right h1 {
        font-size: 60px;
    }

    .bento-right-div {
        font-size: 17px;
        line-height: 25px;
    }
}



@media(max-width: 1550px) {
    .bento-right h1 {
        font-size: 60px;
    }

    .bento-right-div {
        font-size: 17px;
        line-height: 25px;
    }
}

@media(max-width: 1500px) {
    .bento-right h1 {
        font-size: 50px;
    }
}

@media(max-width: 1400px) {
    .bento-right {
        justify-content: center;
    }

    .bento-right h1 {
        font-size: 40px;
    }

    .bento-right-div {
        font-size: 17px;
        line-height: normal;
        letter-spacing: 1px;
    }

}

@media(max-width: 768px) {

    .about-big-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .bento-left {
        height: auto;
        min-height: 350px;
        order: 1;
    }

    .bento-carousel {
        height: 100%;
    }

    .bento-right {
        height: auto;
        order: 2;
        width: fit-content;
        background-color: transparent;
        padding: 0px;
        box-shadow: none;
    }

    .about-bento-section {
        padding: 60px 20px;
    }

    .bento-right h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .bento-right-div {
        padding: 0px;
        background-color: transparent;
        line-height: 20px;
        font-size: 16px;
        line-height: 1.4;
        font-weight: 700;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* about-bento-section-end   */

/* ms-section-start */
.ms-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* centers everything vertically */
    padding: 0 100px;
    gap: 50px;
    position: relative;
}

.ms-blur-div {
    position: absolute;
    width: 100%;
    height: 0px;
    border-radius: 50% 50% 0% 0%;
    background-color: #ffff9a;
    bottom: 0;
    left: 0;
    z-index: -100;
    /* opacity: 0.6; */
}

.ms-heading {
    font-size: 80px;
    font-family: head;
    margin-top: 0px;
}

.ms-bottom {
    width: 100%;
    display: flex;
    gap: 50px;
    /* height: 100%; */
}

.ms-card {
    width: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(100px);
    padding: 20px;
    border-radius: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ms-card-icon-1 {
    width: 20%;
    position: absolute;
    top: 10%;
    right: 7%;
}

.ms-card-icon-2 {
    width: 17%;
    position: absolute;
    top: 10%;
    right: 7%;
}

.ms-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.ms-cont h1 {
    font-size: 60px;
    font-family: head;
    color: #000000;
}

.ms-cont p {
    font-size: 22px;
    font-family: para;
    font-weight: 600;
    /* width: 70%; */
    margin-top: 50px;
    color: #333;
}


@media(max-width: 1650px) {
    .ms-heading {
        font-size: 60px;
    }
}

@media(max-width: 1550px) {
    .ms-heading {
        font-size: 60px;
    }
}


@media(max-width: 1500px) {
    .ms-heading {
        font-size: 60px;
    }

    .ms-cont h1 {
        font-size: 40px;
    }

    .ms-cont p {
        font-size: 18px;
        margin-top: 10px;
    }

    .ms-card-icon-1 {
        width: 15%;
    }

    .ms-card-icon-2 {
        width: 15%;
    }
}

@media(max-width: 1400px) {
    .ms-heading {
        font-size: 60px;
    }

    .ms-cont h1 {
        font-size: 40px;
    }

    .ms-cont p {
        font-size: 18px;
        margin-top: 10px;
    }

    .ms-card-icon-1 {
        width: 15%;
    }

    .ms-card-icon-2 {
        width: 15%;
    }
}


@media(max-width: 768px) {
    .ms-section {
        padding: 60px 20px;
    }

    .ms-heading {
        font-size: 40px;
        text-align: center;
        font-weight: 500;
    }

    .ms-bottom {
        flex-direction: column;
    }

    .ms-blur-div {
        height: 100% !important;
        border-radius: 0px !important;
    }

    .ms-card {
        width: fit-content;
        padding: 0px;
    }

    .ms-cont {
        gap: 30px;
        padding: 30px 30px 30px 30px;
    }

    .ms-cont h1 {
        opacity: 1 !important;
        margin: 0;
        font-size: 30px;
        font-weight: 500;
    }

    .ms-cont p {
        opacity: 1 !important;
        width: 100%;
        font-size: 16px;
        margin-top: 0px;
        font-weight: 700;
        line-height: 1.4;
        color: #000;
    }

    .ms-card-icon-1 {
        opacity: 1 !important;
        top: 5%;
    }

    .ms-card-icon-2 {
        opacity: 1 !important;
        top: 8%;
    }
}

/* ms-section-end   */




/* about-hero-section-start */
.service-hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/images/banner/service-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.service-hero-heading {
    font-size: 100px;
    font-family: head;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 100;
    margin-top: 0px;
    margin-bottom: 0px;
}

.service-hero-heading-mobile {
    display: none;
}

.service-overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 13.05%,
            rgba(0, 0, 0, 0.9) 100%);
}


@media(max-width: 768px) {
    .service-hero-section {
        height: 70vh;
    }

    .service-overlay {
        height: 70vh;
    }

    .service-hero-heading {
        display: none;
    }

    .service-hero-heading-mobile {
        display: block;
        font-size: 40px;
        font-family: head;
        margin-top: 0px;
        margin-bottom: 0px;
        font-weight: 500;
        color: #fff;
        position: relative;
        z-index: 100;
        text-align: center;
    }
}

/* about-hero-section-end   */



/* sp-section-start */
.sp-section {
    padding: 100px 100px 0px 100px !important;
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 100% !important;
}

.sp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-heading {
    font-size: 80px;
    font-family: head;
    width: 50%;
    margin-top: 0px;
}

.sp-para {
    font-size: 22px;
    font-family: para;
    font-weight: 600;
    width: 30%;
    margin-top: 0px;
}

.sp-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-card {
    display: flex;
    flex-direction: column;
    height: 0%;
    justify-content: space-between;
    background-color: #ffffcc;
    padding: 0px;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    /* background-image: url(/assets/images/icons/process-1.png);
    background-size: 60%;
    background-position: 170% 50%; 
    background-repeat: no-repeat; */
}


.sp-card img {
    width: 34%;
    object-fit: cover;
}

.sp-card-cont h1 {
    font-size: 40px;
    font-family: head;
    margin-top: 0px;
    margin-bottom: 0px;
}

.sp-card-cont p {
    font-size: 20px;
    font-family: para;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
}

@media(max-width: 1650px) {
    .sp-section {
        padding: 50px 100px 100px 100px;
    }

    .sp-card-cont h1 {
        font-size: 30px;
    }

    .sp-card-cont p {
        font-size: 17px;
    }
}

@media(max-width: 1550px) {
    .sp-section {
        padding: 50px 100px;
    }

    .sp-card-cont h1 {
        font-size: 30px;
    }

    .sp-card-cont p {
        font-size: 17px;
    }
}


@media(max-width: 1400px) {
    .sp-section {
        padding: 50px 100px;
    }

    .sp-heading {
        font-size: 60px;
    }

    .sp-para {
        font-size: 20px;
    }

    .sp-card-cont h1 {
        font-size: 25px;
    }

    .sp-card-cont p {
        font-size: 16px;
    }
}



@media(max-width: 768px) {
    .sp-section {
        padding: 80px 20px !important;
    }

    .sp-top {
        flex-direction: column;
    }

    .sp-heading {
        font-size: 45px;
        width: 100%;
        font-weight: 500;
    }

    .sp-para {
        width: 100%;
        font-size: 20px;
    }

    .sp-bottom {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px !important;
    }

    .sp-card {
        justify-content: center;
        gap: 50px;
        height: fit-content !important;
        padding: 40px !important;
    }

    .sp-card-cont h1 {
        font-size: 25px;
        font-weight: 500;
    }

}

/* sp-section-end   */


/* solution-section-start */
.solution-section {
    background-image: url(/assets/images/banner/cable-bg.svg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}


.solution-left {
    width: 50%;
}


.solution-left-cont {
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.solution-left-heading {
    font-size: 80px;
    font-family: head;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}

.solution-left-cont p {
    font-size: 20px;
    font-family: para;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 27px;
}

.solution-right {
    width: 50%;
    display: flex;
    /* flex-direction: column;
    align-items: flex-end;
    justify-content: center; */
}

.solution-right-top {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #333;
}

/* ACTUAL SLIDE STACK */
.solution-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* INDIVIDUAL SLIDES */
.solution-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* starts hidden */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    /* fade control */
}

/* BUTTON CONTAINER (bottom-left) */
.solution-carousel-controls {
    position: absolute;
    top: 45%;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

/* BUTTON STYLE */
.solution-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.166);
    backdrop-filter: blur(20px);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s ease;
    color: #fff;
}

.solution-btn:hover {
    transform: scale(1.1);
}


@media(max-width: 1650px) {
    .solution-section {
        margin: 100px 0px;
    }

    .solution-left-cont {
        padding: 50px 50px 50px 100px;
    }

    .solution-left-heading {
        font-size: 60px;
    }

    .solution-left-cont p {
        font-size: 18px;
        line-height: 25px;
    }

    .solution-right-top {
        height: 100%;
    }
}


@media(max-width: 1550px) {
    .solution-left-cont {
        padding: 50px 50px 50px 100px;
    }

    .solution-left-heading {
        font-size: 60px;
    }

    .solution-left-cont p {
        font-size: 18px;
        line-height: 25px;
    }

    .solution-right-top {
        height: 100%;
    }
}


@media(max-width: 1400px) {
    .solution-left-cont {
        padding: 50px 50px 50px 100px;
    }

    .solution-left-heading {
        font-size: 60px;
    }

    .solution-left-cont p {
        font-size: 18px;
        line-height: 25px;
    }

    .solution-right-top {
        height: 100%;
    }
}

@media(max-width: 768px) {
    .solution-section {
        padding: 0px 20px 80px 20px;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .solution-left {
        width: 100%;
    }

    .solution-left-cont {
        padding: 0;
        gap: 20px;
    }

    .solution-left-heading {
        font-size: 40px;
        font-weight: 500;
    }

    .solution-right {
        width: 100vw;
        height: 500px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    .solution-left-cont p {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .solution-carousel-controls {
        top: 75%;
    }


    .solution-btn {
        width: 45px;
        height: 45px;
    }
}

/* solution-section-end   */

/* main-service-section-start */
.main-service-section {
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.main-service-heading {
    font-size: 80px;
    margin: 0;
    font-family: head;
    text-align: center;
    overflow: hidden;
}

.main-service-heading-mobile {
    display: none;
}

.main-service-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 100px;
    column-gap: 40px;
    /* gap: 30px; */
}

.main-service-card {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 400px;
}

.main-service-rect {
    width: 20px;
    height: 400px;
    background-color: #000;
}


.main-service-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-service-cont img {
    width: 10%;
    background-color: rgb(255, 255, 168);
    padding: 10px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main-service-cont-adj {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 24px;
}

.main-service-cont-adj h3 {
    margin: 0;
    font-family: head;
    font-size: 40px;
}

.main-service-cont-adj p {
    margin: 0;
    font-family: para;
    font-size: 20px;
    /* letter-spacing: 1px; */
    line-height: 137%;
    font-weight: 600;
}


@media(max-width: 1650px) {
    .main-service-heading {
        font-size: 80px;
    }

    .main-service-cont-adj h3 {
        font-size: 40px;
    }


    .main-service-cont-adj p {
        margin: 0;
        font-family: para;
        font-size: 18px;
        line-height: 137%;
    }
}


@media(max-width: 1400px) {
    .main-service-heading {
        font-size: 60px;
    }

    .main-service-cont-adj h3 {
        font-size: 30px;
    }

    .main-service-cont-adj p {
        margin: 0;
        font-family: para;
        font-size: 18px;
        line-height: 137%;
    }
}


@media(max-width: 768px) {
    .main-service-section {
        padding: 80px 20px;
    }

    .main-service-heading {
        display: none;
    }

    .main-service-heading-mobile {
        display: block;
        font-family: head;
        font-size: 33px;
        text-align: center;
        font-weight: 500;
        margin: 0;
    }

    .main-service-bottom {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-service-card{
        height: 350px;
    }

    .main-service-rect{
        height: 350px;
    }

    .main-service-cont-adj{
        padding: 0px;
        background-color: transparent;
    }

    .main-service-cont-adj h3 {
        font-size: 25px;
        font-weight: 500;
    }

    .main-service-cont-adj p {
        font-size: 16px;
    }
}

/* main-service-section-end   */





/* contact and map section start */
.contact-section {
    padding: 100px 20px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* --- Form Side --- */
.form-wrapper {
    padding: 0px 100px;

}

.section-title {
    font-family: head;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;

}

.section-subtitle {
    font-family: subh;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: center;
}


.input-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-family: subh;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
textarea {
    font-family: para;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fafafa;
}


.submit-btn {
    font-family: head;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* --- Map Side --- */
.map-wrapper {
    width: 100%;

    border-top: 1px solid var(--border-color);
}

/* --- Validation Styling --- */
.error-msg {
    font-family: para;
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

input.error,
textarea.error {
    border-color: var(--error-color);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 40px 20px;
    }

    .row-split {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .map-wrapper {
        height: 500px;
    }

    .contact-section{
        padding: 40px 0px;
    }

    .section-title{
        font-weight: 500;
    }
}



/* contact and map section end   */




/* about-hero-section-start */
.contact-hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/images/banner/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-hero-heading {
    font-size: 100px;
    font-family: head;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 100;
    margin-top: 0px;
    margin-bottom: 0px;
}

.contact-overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 13.05%,
            rgba(0, 0, 0, 0.634) 100%);
}


@media(max-width: 768px) {
    .contact-hero-section {
        height: 70vh;
        background-position: center;
    }

    .contact-overlay {
        height: 70vh;
    }

    .contact-hero-heading {
        font-size: 35px;
        font-weight: 500;
        text-align: center;
    }
}

/* about-hero-section-end   */