/* google fonts */

/* @import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Varialbes */
:root {
    /* --primary-color: #2a3764; */
    --primary-color: #000000;
    /* --secondary-color: #FC0012; */
    --secondary-color: #CE9233;
    --black-color: #000000;
    --white-color: #ffffff;
    /* --color-tertiary: #F63837; */
    --body-color: #EDF3F7;
    --grey-bg: #ECF2FB;
    --primary-font: "Teko", sans-serif;
    /* --primary-font: "Barlow Condensed", sans-serif; */
    --secondary-font: "Yantramanav", sans-serif;
}

body {
    font-family: "Teko", sans-serif;
    /* font-family: "Barlow Condensed", sans-serif; */
    font-family: "Yantramanav", sans-serif;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    font-optical-sizing: auto;
    background-color: var(--white-color);
}

a {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.primary-heading {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 700;
}

.secondary-heading {
    font-family: var(--primary-font);
    /* color: var(--primary-color); */
    color: var(--black-color) !important;
    font-size: 20px;
    font-weight: 600;
}

.sub-heading {
    font-family: var(--primary-font);
    color: var(--secondary-color) !important;
    /* color: #CBA266 !important; */
    font-size: 18px !important;
    /* line-height: 0px; */
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    /* opacity: 1; */
}

.sub-heading1 {
    font-family: var(--primary-font);
    color: var(--color-primary);
    font-size: 18px !important;
    /* line-height: 21px; */
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.para {
    font-family: var(--secondary-font);
    color: var(--black-color);
    font-size: 16px;
    font-style: normal;
    text-align: justify;
}

/* .regular-text {
    font-family: var(--secondary-font);
    color: var(--dark-color);
    font-size: 16px;
} */

.grey-bg {
    background-color: var(--grey-bg);
}

.text-light {
    color: var(--white-color) !important;
}

/* button style */

.fill-btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
    font-family: var(--primary-font) !important;
    border-radius: 0 25px 0 0;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.fill-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    color: var(--white-color) !important;
    transition: left 0.3s ease;
    z-index: -1;
}

.fill-btn:hover::before {
    left: 0;
}

.fill-btn:hover {
    color: var(--white-color) !important;
    border: 3px solid var(--secondary-color) !important;
}


/* button style 2 */

.fill-btn1 {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    color: var(--secondary-color);
    border: 3px solid var(--black-color);
    font-family: var(--primary-font) !important;
    border-radius: 0 25px 0 0;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.fill-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    color: var(--white-color) !important;
    transition: left 0.3s ease;
    z-index: -1;
}

.fill-btn1:hover::before {
    left: 0;
}

.fill-btn1:hover {
    color: var(--white-color) !important;
    border: 3px solid var(--black-color) !important;
}

/* navbar */

.bg-light {
    background: var(--white-color);
}

.navbar-brand img {
    width: 300px;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 18px !important;
    font-family: var(--primary-font) !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    text-decoration: none;
    /* letter-spacing: 1px !important; */
    color: var(--dark-color);
    padding: 5px 10px;
}

.nav-item .active {
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    /* text-decoration: underline !important; */
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    /* background-color: var(--) !important; */
}

.dropdown-item:hover {
    color: var(--black-color) !important;
    background-color: var(--secondary-color) !important;
}

/* .dropdown li .border-bottom{
    border: 1px dotted var(--black-color) !important;
} */

.dropdown-menu li>a {
    padding: 10px 20px !important;
}

.header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: #ffffff00;
    transition: all 0.3s ease;
}

/* FIXED HEADER */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease;
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* LOGO */
.logo-img {
    width: 320px;
    transition: all 0.3s ease;
}

/* .header-fixed .logo-img {
    width: 220px;
} */

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1040;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

}

/* navbar button */


/* .header-wrapper .container {
    width: 95%;
} 
.menu-button-wrapper {
    background: var(--secondary-color);
    border-bottom-right-radius: 50px;
} */

/* banner */

.carousel-caption {
    bottom: 20% !important;
}

.carousel-caption {
    position: absolute !important;
    right: 35% !important;
    bottom: 4.5rem !important;
    left: 10% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    /* text-align: center; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.banner-text h2 {
    font-family: var(--primary-font);
    font-size: 75px !important;
    font-weight: 800 !important;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
}

.banner-text p {
    font-size: 20px;
    /* font-weight: 500 !important; */
}

.banner-overlay {
    position: relative;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.40); */
    background: linear-gradient(280deg, #ce93337f, #000000d0);
    /* overlay darkness */
    z-index: 1;
}

.banner-overlay img {
    position: relative;
    z-index: 0;
}

.carousel-caption {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: .3rem 1rem;
    margin-bottom: 1.2rem;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-span {
    color: var(--secondary-color);
}

/* 3 box section */

.service-box {
    /* background: #efefef; */
    border-bottom-right-radius: 60px;
    transition: 0.3s ease;
}

.active-box {
    background: #050505;
    border-bottom-right-radius: 60px;
    color: var(--white-color) !important;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 20px;
}

.general-icon img {
    width: 55px;
    height: auto;

    /* filter: brightness(0) saturate(100%) invert(10%) sepia(84%) saturate(7085%) hue-rotate(352deg) brightness(106%) contrast(108%); */
}

.service-box h2 {
    font-size: 25px;
    line-height: 1.1;
}

/* .service-box:hover {
    background: var(--black-color);
    color: var(--white-color);
    border-bottom-right-radius: 60px;

    & h3,
    p {
        color: var(--white-color) !important;
    }
} */

.service-title-line1 {
    width: 48px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: .75rem;
    left: -44px;
}

.w-90 {
    width: 90% !important;
}

/* hover general box */

/* Add this to your existing CSS */

.active-box .general-icon img {
    filter: invert(77%) sepia(79%) saturate(2263%) hue-rotate(342deg) brightness(90%) contrast(77%) !important;
}

.general-icon img {
    filter: invert(77%) sepia(79%) saturate(2263%) hue-rotate(342deg) brightness(90%) contrast(77%) !important;
}


.service-box.hovered {
    background: #050505;
    color: #fff;
    border-bottom-right-radius: 60px;

    & img {
        filter: invert(77%) sepia(79%) saturate(2263%) hue-rotate(342deg) brightness(90%) contrast(77%);
    }
}

.service-box.hovered h2,
.service-box.hovered p {
    color: #fff !important;
}

.active-box.dimmed {
    background: #efefef;
    color: #050505;
}



.active-box.dimmed h2,
.active-box.dimmed p {
    color: #050505 !important;
}

@media(max-width:991px) {

    .service-box h3 {
        font-size: 24px;
    }
}

/* hover general box ends */

/* about section */

.about-img-wrapper::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 25px;
    height: 73%;
    z-index: -1;
    border: 8px solid #ce9233;
    width: 30%;
    border-radius: 0 0 0 40px;
}

.abt-img {
    border-radius: 0 80px 0 0;
    transition: all 0.3s ease;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 20px;
    /* margin-right: 10px; */
}

.about-list li {
    margin-bottom: 10px !important;
}

.about-badge {
    position: absolute;
    top: 40%;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    /* padding: 1.5rem 1.2rem; */
    text-align: center;
    min-width: 130px;
    border-bottom-left-radius: 40px;
}

.divider-red {
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    display: inline-block;
}

/* services section */



.service-title-line {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: .75rem;
    left: -19px;
}

.card-head {
    width: 90%;
    align-items: end;
    margin-left: auto;
}

.service-main-img img {
    border-top-left-radius: 60px;
}

.service-png {
    width: 60px !important;
    height: auto;
}

/* vision and mission section */

.vision-mission-section {
    background: var(--black-color);
    background-image: linear-gradient(rgba(13, 13, 13, .93), rgba(13, 13, 13, .93)), url(../img/home/bg-4.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vm-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    transition: border-color var(--transition), background var(--transition);
    height: 100%;
}

.vm-card:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, .03);
}

.vm-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* why choose us */

.why-choose-us-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/counter-bg-01.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -2;
}


.why-choose-icon {
    background: var(--secondary-color);
}

.why-choose-img-wrapper::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 35px;
    height: 85%;
    z-index: -1;
    border: 10px solid #ce9233;
    width: 78%;
    border-radius: 0 40px 0 0;
}

.why-choose-img-wrapper::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 115px;
    height: 70%;
    z-index: 1;
    border: 7px solid var(--white-color);
    width: 64%;
    border-radius: 0 40px 0 0;
}

.why-choose-img-wrapper img {
    border-radius: 0 0 0 40px;
    transition: all 0.3s ease;
}


/* cta-section */

.cta-section .row {
    background: var(--secondary-color);
    border-bottom-right-radius: 50px;

}

/* footer-section */

.footer-section {
    /* background: var(--black-color) !important; */
    color: var(--white-color);
    background: var(--black-color);
    background-image: linear-gradient(rgb(13 13 13 / 0%), rgb(13 13 13 / 29%)), url(../img/home/footer-bg-01.jpg);
    background-size: cover;
    background-position: center;
}

.footer-brand {
    width: 180px;
    height: auto;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 20px;
    /* margin-top: 10px; */
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-links a::before {
    content: '\f105';
    /* fa-angle-right unicode */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    /* required for solid icons */
    color: var(--secondary-color);
    margin-right: 8px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color) !important;

    & i:hover {
        color: var(--white-color) !important;
    }
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--black-color) !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0 15px 0;
    transition: all 0.1s ease;

    &:hover {
        background: var(--white-color) !important;
        color: var(--secondary-color) !important;
        font-size: 23px;
    }
}



#scrollUpBtn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 35px;
    width: 35px;
    padding: 10px;
    border-radius: 3px;
    border: none;
    z-index: 999;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-self: center;
    scroll-behavior: smooth !important;
}

#scrollUpBtn i {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-self: center;
}




/* new banner before */

.hero-banner {
    position: relative;
    overflow: hidden;
    background: #f5f5f7;
}

/* Layout */

.hero-layout {
    position: relative;
    height: 650px;
    display: flex;
}

.hero-left {
    width: 35%;
    background: #f5f5f7;
}

.hero-right {
    width: 85%;
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 850px;
    object-fit: fill;
    min-height: 500px;
}

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(280deg, #ce933343, #000000b7); */
    z-index: 1;
}

/* Content Box */

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 575px;
    background: rgba(0, 0, 0, .96);
    padding: 40px;
    border-radius: 40px 0 0 0;
    z-index: 10;
}

.hero-tag {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-family: var(--primary-font);
    font-size: 40px !important;
    font-weight: 800 !important;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
}

.hero-content p {
    font-size: 20px;
    /* font-weight: 500 !important; */
}

.hero-content p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Social Bar */

.social-bar {
    position: absolute;
    left: 30px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 100;
    flex-direction: column;
    align-items: center;
}

/* .follow-text {
    margin-bottom: 50px;
} */

.follow-text span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 700;
    letter-spacing: 2px;
}

.follow-text::after {
    content: "";
    display: block;
    width: 1px;
    height: 55px;
    background: #22222240;
    margin: 5px auto;
}

.social-links li {
    margin: 20px 0;
}

.social-links a {
    color: #111111cf !important;
    font-size: 18px;
    transition: .3s;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
}

/* Indicators */

.custom-indicators {
    right: 5% !important;
    left: auto !important;
    top: 45%;
    transform: translateY(-50%);
    margin: 0;
    width: auto;
    flex-direction: column;
    gap: 8px;
}

.carousel-indicators [data-bs-target] {
    background-color: #000000f6 !important;
}


.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 !important;
}

.custom-indicators .active {
    border: 2px solid var(--secondary-color) !important;
    transform: scale(1.5);
}


@media (max-width:991px) {

    .hero-layout {
        height: clamp(440px, 80vh, 700px);
        display: block;
    }

    .hero-right,
    .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-left {
        display: none;
    }

    .hero-content {
        left: 30px;
        right: 30px;
        top: 71%;
        width: auto;
        padding: 35px;
        border-radius: 35px 0 0 0;
        background: rgba(0, 0, 0, .90);
    }
}

@media (max-width:576px) {

    /* .hero-layout {
        height: 80vh;
        min-height: 440px;
        max-height: 600px;
    } */

    .hero-layout {
        height: clamp(440px, 80vh, 700px);
        display: block;
    }

    .hero-right {
        height: 100%;
    }

    .hero-right img {
        width: 100%;
        height: 70%;
        min-height: 300px;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 76%;
        padding: 25px;
    }

    .hero-content h2 {
        font-size: 25px !important;
    }

    .fill-btn {
        text-align: center;
        margin: auto !important;
    }
}


/* new banner ends */


/* service page */

/* ════════ PAGE HERO BANNER  ═══════ */
.service-hero {
    position: relative;
    min-height: max-content;
    background: var(--black-color);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Diagonal angled dark panel */
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgb(0 0 0 / 81%) 50%, rgb(206 146 51 / 30%) 100%);
    z-index: 1;
}

/* Industrial grid texture */
.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(206, 146, 51, 0.06) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(206, 146, 51, 0.06) 60px);
    z-index: 0;
}

.service-hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}

/* Diagonal clip mask on image side */
.service-hero-img-mask {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, var(--black-color) 18%, transparent 60%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    padding: 30px 20px;
}

.service-hero-tag {
    font-family: var(--primary-font);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.service-hero-tagline {
    font-family: var(--secondary-font);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 300;
}

.service-hero-tagline strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.about-img-wrapper1::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 75px;
    height: 73%;
    z-index: -1;
    border: 8px solid #ce9233;
    width: 30%;
    border-radius: 0 0 0 40px;
}

.abt-img1 {
    width: 63%;
    height: auto !important;
    object-fit: cover;
    border-radius: 0 60px 0 0 !important;
}

/* ── Product Card ── */
.product-card {
    background: var(--white-color);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 0 0 40px 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgb(94 94 94 / 38%);
}

.product-card-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 18px 20px 20px;
    border-top: 3px solid var(--secondary-color);
    position: relative;
}

.product-card-sub {
    font-family: var(--secondary-font);
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-color) !important;
    margin-top: 15px;
    transition: gap 0.2s;
}

.product-card-link:hover {
    color: var(--black-color) !important;
    gap: 10px;
}

. .product-card:hover .product-card-link {
    gap: 10px;
}

/* ── General Points Section ── */
.general-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #ebebeb;
}

.general-point:last-child {
    border-bottom: none;
}

.gp-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gp-icon i {
    color: var(--secondary-color);
    font-size: 18px;
}

.gp-title {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.gp-desc {
    font-family: var(--secondary-font);
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-top: 2px;
}

section {
    scroll-margin-top: 80px;
}

/* contact page */

.contact-form-box {
    /* background: #f4f4f8; */
    padding: 55px 50px 50px 110px;
    border-radius: 0 60px 0 0;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.contact-info-box {
    background: var(--secondary-color);
    padding: 50px 35px;
    border-radius: 0 0 0 60px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;

    & a:hover {
        color: var(--black-color) !important;
    }
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--black-color);
    /* border-radius: 50%; */
    border-radius: 0 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 25px;
}

#contactForm .form-control {
    border-radius: 0 15px 0 0 !important;
    border: 3px solid var(--secondary-color) !important;
}

.contact-info-box {
    margin-right: -90px;
}

.map-wrapper {
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 0 0 0 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px !important;
    border: none;
    border-radius: 0 40px 0 0;
}


/* responsive Media Querry */

@media only screen and (max-width: 768px) {

    .primary-heading {
        font-size: 25px;
        text-align: center;
    }

    .sub-heading {
        text-align: center;
    }

    .navbar-brand img {
        width: 200px;
        transition: all 0.3s ease;
    }

    .carousel-caption {
        position: absolute !important;
        right: 8% !important;
        bottom: 3px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        font-size: 25px !important;
        font-weight: 800 !important;
    }

    .banner-text p {
        font-size: 16px !important;
        text-align: start;
    }

    .hero-line {
        width: 40px;
        height: 4px;
        margin-bottom: 10px;
    }

    .banner-overlay::before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.40); */
        background: linear-gradient(314deg, #39393978, #000000cf);
        /* overlay darkness */
        z-index: 1;
    }

    .fill-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .fill-btn1 {
        padding: 10px 20px;
        font-size: 15px;
    }

    .hero-tag {
        margin-bottom: 10px;
    }

    .service-png {
        width: 45px !important;
        height: auto;
    }

    .about-img-wrapper::before {
        content: "";
        position: absolute;
        bottom: -23px;
        left: 7px;
        height: 75%;
        z-index: -1;
        border: 5px solid #ce9233;
        width: 50%;
        border-radius: 0 0 0 30px;
    }

    .abt-img {
        width: 80%;
        height: auto;
        border-radius: 0 60px 0 0 !important;
    }

    .about-badge {
        position: absolute;
        top: 30%;
        right: 0px;
        background: var(--secondary-color);
        color: #fff;
        /* padding: 1.5rem 1.2rem; */
        text-align: center;
        min-width: 105px;
        border-bottom-left-radius: 25px;
    }

    .why-choose-img-wrapper::before {
        content: "";
        position: absolute;
        top: -25px;
        right: 19px;
        height: 93%;
        z-index: -1;
        border: 6px solid #ce9233;
        width: 78%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper::after {
        content: "";
        position: absolute;
        top: 27px;
        left: 18%;
        height: 78%;
        z-index: 1;
        border: 7px solid #ffffff;
        width: 64%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper img {
        width: 75% !important;
        height: auto;
        object-fit: cover !important;
        margin: auto !important;
        border-radius: 0 0 0 40px;
    }

    /* service page */

    .abt-img1 {
        width: 80%;
        height: auto;
        object-fit: cover;
        border-radius: 0 40px 0 0 !important;
    }

    .about-img-wrapper1::before {
        content: "";
        position: absolute;
        bottom: -24px;
        left: 4px;
        height: 80%;
        z-index: -1;
        border: 8px solid #ce9233;
        width: 56%;
        border-radius: 0 0 0 40px;
    }

    .contact-info-box {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .contact-form-box {
        padding: 30px !important;
        border-radius: 0 40px 0 0;
    }

}



@media (min-width: 768px) and (max-width: 991.98px) {

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
    }

    .carousel-caption {
        position: absolute !important;
        right: 10% !important;
        bottom: -15px !important;
        left: 8% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 40px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
    }

    .banner-text p {
        font-size: 14px I !important;
        text-align: start;
    }

    .why-choose-img-wrapper::before {
        content: "";
        position: absolute;
        top: -33px;
        right: 14%;
        height: 100%;
        z-index: -1;
        border: 10px solid #ce9233;
        width: 62%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper::after {
        content: "";
        position: absolute;
        top: 29px;
        left: 25%;
        height: 85%;
        z-index: 1;
        border: 7px solid #ffffff;
        width: 50%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper img {
        width: 85% !important;
        height: auto;
        object-fit: cover !important;
        margin: auto !important;
        border-radius: 0 0 0 40px;
        /* transition: all 0.3s ease; */
    }

    .about-img-wrapper1::before {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 65px;
        height: 80%;
        z-index: -1;
        border: 8px solid #ce9233;
        width: 40%;
        border-radius: 0 0 0 40px;
    }

    .contact-form-box {
        padding: 40px;
        min-height: auto;
        margin-top: 20px;
    }

    .contact-info-box {
        margin-right: 0;
    }

    .contact-form-box {
        padding: 25px;
        border-radius: 0 50px 0 0;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .contact-icon i {
        font-size: 24px;
    }


}


@media (min-width: 992px) and (max-width: 1199.98px) {

    .carousel-caption {
        position: absolute !important;
        right: 25% !important;
        bottom: 35px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 35px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
    }

    .banner-text p {
        font-size: 14px I !important;
        text-align: start;
    }

    .about-img-wrapper::before {
        content: "";
        position: absolute;
        bottom: -23px;
        left: 7px;
        height: 75%;
        z-index: -1;
        border: 5px solid #ce9233;
        width: 30%;
        border-radius: 0 0 0 40px;

    }

    .abt-img {
        width: 80% !important;
        height: auto;
        /* border-radius: 0 0 0 0; */
    }

    .why-choose-img-wrapper::before {
        content: "";
        position: absolute;
        top: 26%;
        right: -3%;
        height: 70%;
        z-index: -1;
        border: 11px solid #ce9233;
        width: 88%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper::after {
        content: "";
        position: absolute;
        top: 39%;
        left: 14%;
        height: 55%;
        z-index: 1;
        border: 7px solid #ffffff;
        width: 73%;
        border-radius: 0 30px 0 0;
    }

    .why-choose-img-wrapper img {
        width: 90% !important;
        height: auto;
        object-fit: cover !important;
        margin: auto !important;
        border-radius: 0 0 0 40px;
        /* transition: all 0.3s ease; */
    }

    .about-img-wrapper1::before {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 35px;
        height: 80%;
        z-index: -1;
        border: 8px solid #ce9233;
        width: 40%;
        border-radius: 0 0 0 40px;
    }


}