@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}



a {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

ul {
    list-style: none;
}

:root {
    --primary: #12110e;
    --secondary: #a5803b;
    --white: #fff;
    --black: #000;
    --padding: 4rem;
    --margin: 4rem;
}

p {
    line-height: 26px;
    margin-bottom: 0;
    ;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h2 {
    font-size: 50px;
    line-height: 0.98;
    font-weight: 800;
}

h2 span {
    color: var(--secondary);
}


.primary_btn {
    text-align: center;
    color: #fff;
    background: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    padding: 12px 30px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    /* border: 1px solid var(--white); */


}

.primary_btn::before {
    content: '';
    background: var(--primary);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary_btn:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

/* Header Start */

/* Navbar Start */

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
}

.accordion-item,
.accordion-header button,
.accordion-header button:focus,
.accordion-header button:active,
.accordion-header button:visited,
.accordion-collapse {
    border: none;
    box-shadow: none;
}

.accordion-button:after {
    background: url(../imgs/plus.png) !important;
}

.accordion-button:not(.collapsed)::after {
    background: url(../imgs/plus.png) !important;
}


.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: var(--secondary);
    color: #fff;
    font-size: 30px;
    padding: 10px;
    height: 50px;
    width: 50px;
    border-radius: 0;
}


.topStrip {
    background-color: var(--secondary);
    color: #fff;
    /* display: none; */
}

.leftStrip i {
    margin-right: 0.3rem;
}


.leftStrip a {
    color: #fff;
    padding-block: 0.5rem;
    display: inline-block;

}

.leftStrip a:hover {
    text-decoration: underline;
}



.stripEmail {
    border-left: 1px solid var(--white);
}



.rightStrip i {
    font-size: 1.2rem;
    margin-left: 0.4rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    -webkit-transition: all 0.9s;
    transition: all 0.3s;
    color: var(--white);
    background-color: #fff;

}

.rightStrip i:hover {
    transform: rotate(360deg);
}

header {
    height: 100%;
    width: 100%;
    /* position: sticky; */
    top: 0;
    z-index: 999;
    background-color: var(--primary);
    padding-block: 10px;
    border-bottom: 2px solid var(--secondary);

}



header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px
}

.companyLogo {
    position: relative;
    width: 180px;
    height: 100%;




}


.mobile_logo img {
    width: 100px;
}

.companyLogo img {
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 10;
    border-radius: 50%;
    border: 2px solid var(--secondary);

}








.navbar-nav a {
    color: var(--white) !important;
    display: inline-block;
    transition: all ease 0.2s;
    font-weight: 500;

}

.navbar-nav a:hover {
    color: var(--secondary) !important;

}

.nav-link.active {
    color: var(--secondary) !important;

}

.dropdown-menu {
    width: auto;
    margin-left: 1rem;
    background-color: var(--white);
    border-radius: 0 !important;
    padding: 0;
}

.dropdown-menu a {
    transition: all ease-in-out .3s;
    font-weight: 600;
    text-align: left;
    color: var(--white) !important;
    background-color: var(--secondary);
    border-bottom: 1px dashed var(--primary);
    margin-left: unset;
    font-size: 15px;
    padding: 10px;
}

.dropdown-menu a:hover {
    background-color: var(--primary);
}

/* Navbar End */

/* CAROUSEL START */

.hero_section {
    position: relative;
    width: 100%;
    height: 650px;
}

.hero_section video {
    width: 100%;
    height: 100%;
    filter: brightness(50%);
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero_content {
    color: var(--white);
    width: 65%;
    padding-top: 180px;
    /* text-align: center;
    margin: 0 auto; */
}

.hero_content h6 {
    font-size: 15px;
}

.hero_content h2 {
    font-size: 60px;
    line-height: 1;
}

.hero_content *{
    margin-top: 10px;
}

/* CAROUSEL END */

/* ABOUT US START */

.about_us {
    padding-block: var(--padding);
}

.ab_img {

    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    ;
}

.ab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.about_content h6,
.top_heading h6 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 15px;
}

/* vision & misiion */
/* Tab Buttons Wrapper */
.tab-buttons {
    display: flex;
    gap: 20px;
    margin-block: 20px;
}

.tab-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #fff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* Active Button Style */
.tab-btn.active,
.tab-btn:hover {
    background-color: var(--secondary);
    /* Orange Color */
    color: white;
}


/* Tab Content Logic */
.tab-content {
    display: none;
    /* Default me hidden */
}

.tab-content.active {
    display: block;
    /* Jo active hoga wo dikhega */
    animation: fadeIn 0.5s ease;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

.content-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.text-side p {
    margin-bottom: 15px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .content-wrapper img {
        width: 100%;
    }
}

/* ABOUT US END */

/* OUR SERVICES START */

.our_services {
    padding-bottom: var(--padding);
}

.serv_box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.serv_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
    z-index: 1;

}

.serv_box:hover::before {
    opacity: 0;
}

.serv_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;

}

.serv_box:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(100%);
}

.serv_box .serv_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: rgba(165, 128, 59, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    padding: 15px;
    border-radius: 10px;
    z-index: 5;

}

.serv_box:hover .serv_content {
    transform: translate(-50%, -50%) scale(1);
}

.serv_content h4 {
    margin-bottom: 5px;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);


}

.serv_box>h4 {
    width: 80%;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 2;
    transition: all 0.3s ease;

}

.serv_box:hover>h4 {
    opacity: 0;
}

.serv_content a {
    background: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    border: 2px solid var(--white);
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.serv_content a:hover {
    background: transparent;
    color: var(--white);
}






/* OUR SERVICES END */

/* OUR ACHIEVEMENTS START */

.our_achievements {
    height: 500px;
    padding-block: var(--padding);
    position: relative;
    background: url(../imgs/achive-bg.jpg) no-repeat center center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: end;

}

.achive_data {
    background-color: rgba(255, 255, 255, 0.9);

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achive_data h3 {
    font-size: 60px;
    font-weight: 700;
}

.achive_data p {
    text-transform: uppercase;
    font-weight: 500;

}



/* OUR ACHIEVEMENTS END */

/* WHY CHOOSE US START */

.why_choose_us {
    padding-block: var(--padding);
}

.choose_box {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;

}


.choose_box i {
    width: 80px;
    height: 80px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--secondary);
    color: var(--white);
    transition: all 0.3s ease;
}

.choose_box:hover i {
    background-color: var(--primary);
}

.choose_box h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
}



.why_choose_content img {
    margin-top: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* WHY CHOOSE US END */


/* Footer Start */

footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../banners/real-estate-banner.jpg) no-repeat center center/cover;
    background-size: cover;
    padding-block: var(--padding);

}

footer h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 22px;
}

footer a {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
    transition: all 0.3s ease;

}

footer a:hover {
    padding-left: 5px;
}



.more_services {
    display: none;
}

#toggleBtn {
    margin-top: 10px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
    color: #ebeaea;
}

.arrow {
    margin-left: 3px;
    transition: transform 0.3s ease;
}

/* Rotate arrow */
.rotate {
    transform: rotate(180deg);
}


.ft_contact {
    color: #fff;
}

.ft_contact a:hover {
    padding: unset;
    text-decoration: underline;
}

.ft_icons a:hover {
    padding: unset;
}

.ft_contact p {
    margin-bottom: 5px;
}

.ft_contact i {
    font-size: 18px;
    margin-right: 3px;
}

.ft_icons h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.ft_icons p {
    color: #fff;
}

.ft_icons div {
    display: none;
    /* justify-content: center; */
    gap: 10px;
    margin-top: 10px;
    padding-left: 1rem;
}

.ft_icons i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    padding: 10px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.ft_icons a:hover i {
    transform: rotate(360deg);
    background-color: var(--secondary);
    color: #fff;
}

.ft_icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

}

.ft_icons img {
    width: 180px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    ;
}

.sub_footer {
    border-top: 2px solid #fff;
    padding-block: 10px;
    text-align: center;
    background-color: var(--secondary);
    color: #fff;
}

/* Footer End */

/* Comman Banner */

.common_banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.common_banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(40%);
}

.common_banner h2 {
    margin-bottom: 0.5rem;
}

.common_banner p {
    font-size: 16px;
}

.common_banner a {
    color: #fff;
    font-weight: 500;
    color: #f0efef;
}

.common_banner a:hover {
    text-decoration: underline;
    color: #fff;
}

.common_banner strong::before {
    content: ' / ';
    padding-inline: 5px;
}





/* ABOUT US PAGE START */
.vision_mission_box {
    box-shadow: 0 0 25px #ccc;
    padding-block: 40px;
    padding-inline: 20px;
    border-radius: 10px;
    position: relative;
    margin-block: 20px var(--margin);
    background-color: var(--primary);
    color: white;
    text-align: center;


}

.vision_mission_box1 .icon_box {
    background-color: var(--primary);
}

.vision_mission_box2 .icon_box {
    background-color: var(--secondary);
}

.vision_mission_box3 .icon_box {
    background-color: var(--primary);
}

.vision_mission_box2 {
    background-color: var(--secondary);
}

.vision_mission_box h4 {
    padding-top: 20px;
}



.icon_box {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 30px;
    border: 3px solid rgb(245, 245, 245);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ABOUT US PAGE END */

/* SITEMAP */

/* SiteMap */
.sitemap_links h3 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 2rem;
}

.sitemap_links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
    justify-content: start;
    align-items: center;
    margin-top: 0.5rem;
}

.sitemap_links ul li {
    width: calc(33% - 10px);
}

.sitemap_links a {
    display: block;
    background-color: var(--secondary);
    padding: 15px;
    font-weight: 500;
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}


.sitemap_links a:hover {
    background-color: var(--primary);
}

/* CONTACT US START */

.category_section {
    background: #eee;
    padding: 60px 0 60px;
}

.category_section h1 {
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    text-align: center;
}

.category_section h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1em;
    text-align: center;
    text-transform: uppercase;
}

.category_section h2 p {
    margin-top: 1rem;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin: 5px 0 15px 0
}

.category_section h2 p strong {
    color: #000;
    margin-bottom: 0.5rem;
}

.category_section h2 span {
    display: block;
    width: 100px;
    height: 2px;
    margin: 10px auto 25px;
    background: var(--secondary);
}

.category_section h2 span {
    background: var(--secondary) none repeat scroll 0 0;
    height: 2px;
    margin: 0 auto 5px;
    width: 62px
}

.text_left .category_section h2 span {
    margin: 0
}

.category_section h2 span {
    height: 5px;
    width: 90px;
    background: var(--secondary);
    margin: 20px auto;
    position: relative;
    border-radius: 30px
}



.cat-htext {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    padding: 0 0 10px 0;
}

.cat-htext2 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
}

.mt-5 ul {
    margin: 0px;
    padding: 0px
}

.mt-5 ul:after {
    content: '';
    display: block;
    clear: both
}

.mt-5 ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: block;
}

.feature-box {
    width: 290px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    position: relative;
    border-bottom: 5px var(--secondary) solid;
    transform-style: preserve-3d;
    position: relative;
    transition: .6s linear all;
}

.feature-box .icon {
    width: 100px;
    margin: 0 auto 20px;
    height: 100px;
    background: var(--secondary);
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
    padding: 20px;
    color: #fff;
}

.feature-box .icon svg {
    fill: #fff;
}

.feature-box2 {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 20px 10px;
    text-align: center;
    position: relative;
    border-bottom: 5px var(--secondary) solid;
    transform-style: preserve-3d;
    position: relative;
    transition: .6s linear all;
}

.feature-box2 i {
    font-size: 1.5rem;
}

.feature_img {
    width: 270px;
    height: 179px;
    margin: 0 auto 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.feature_img figure {
    width: 270px;
    height: 179px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.feature_img figure img {
    max-width: 100%;
    height: auto;
    transition: all linear .6s
}

.cate_w:hover .feature_img figure img {
    transform: scale(1.1)
}

.feature-title {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin: 0px 0 0 0;
    /* height:48px; */
    overflow: hidden;
    line-height: 22px;
    width: 100%;
    /* display: table-cell; */
    /* vertical-align: middle; */
    text-align: center;
}

.feature-text {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin: 15px 0 0 0;
    height: 94px;
    overflow: hidden;
    font-weight: 400;
}

.feature-text a {
    color: #000000;
}

.feature-text a:hover {
    text-decoration: underline;
}

.ico-read {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: auto;
    width: 40px;
    transition: .3s linear all;
}

.ico-read a {
    color: #fff;
    text-decoration: none;
    height: 40px;
    width: 40px;
    background: var(--secondary);
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 42px;
    position: absolute;
    display: block;
}

.feature-box:hover .icon {
    transform: rotateY(180deg);
    background: #000;
    transition: .1s linear all;
}

.feature-box:hover {
    border-bottom: 5px #000 solid;
    transform: scale(1.09);
}

.feature-box:hover .ico-read {
    left: 10px;
}



.form {
    background: #fff;
    padding: 25px;
    border: 1px solid #d5d5d5;
    border-radius: 15px;
    position: relative;
    margin: -55px auto 0;
    width: 80%;
    box-shadow: 0 0 20px rgb(158 158 158 / 25%);
}

.contact_box h2 {
    margin-bottom: 10px;
    line-height: 25px;
    color: #404040;
    font-weight: 600
}

.contact_form input[type=text],
.contact_form select,
.contact_form textarea {
    width: 49%;
    padding: 11px 15px;
    margin: 0;
    background: #fff;
    border: 1px #dddddd solid;
    border-radius: 5px;
}

.contact_form input::placeholder {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.contact_form .large {
    width: 98.8% !important
}

.contact_form_cont input {
    margin-bottom: 0.7rem !important;
}

.addrs_w {
    border: 1px solid #d5d5d5;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #fff;
    width: 100%;
    color: #000
}

.addrs_w p:first-child {
    border-bottom: 1px solid #ccc;
    padding: 6px 10px;
    margin-top: -10px;
    margin-bottom: 0
}

.addrs_w p {
    margin: 0 -15px 15px;
    padding: 0 10px 5px
}

.contact_person {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #ccc;
    margin: 0 -15px 15px;
    padding: 7px 15px;
    background: #f3f3f3
}

.ofc_short_dtl {
    font-size: 14px;
    padding: 10px;
    background: var(--secondary);
    color: #fff
}

.contact_add span {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    font-weight: 500;
    border-radius: 50%;
    background: #272561;
    text-align: center;
    margin: 0 10px 5px 0;
    color: #fff;
}

.contact_add p {
    margin: 15px 0 11px;
    padding: 0;
    line-height: 22px;
    display: inline-block;
}

.c_address span {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500
}

.c_address span>b {
    font-size: 17px;
    margin-left: 0;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid #f1f1f1;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    font-weight: 500;
    border-radius: 50%;
    background: var(--secondary);
    text-align: center;
}

.c_address span>b.whats {
    color: #50d925
}

.c_address span>b.skyp {
    color: #4cb1ff
}

.c_address br {
    line-height: 30px
}

.db {
    display: block
}

.loc {
    background: #80b84e;
    color: #fff
}

.loc img {
    border: 1px solid #000;
    width: 40px;
    height: 27px
}

.map-container {
    border: 3px solid #000;
    margin: 10px 0
}

.map-container iframe {
    width: 100%
}

.reset-butt {
    background: #9aa5af;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px
}

.reset-butt:hover {
    background: #ff7e48;
    color: #fff
}

.addrs_w hr {
    margin: 12px 0 !important;
}

.form h2 {
    text-align: center;
}

.contactBtn {
    margin-top: 1rem;
    background-color: var(--secondary);
    color: #fff;
}

.contactBtn:hover {
    background-color: var(--primary);
    color: #fff;
}

.contactBtn1 {
    margin-top: 1rem;
    margin-left: 1rem;
    background-color: #ccc;
    border: 2px solid transparent;
    font-weight: 500;
}

.contactBtn1:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}


/* CONTACT US END */

/* Service Page Start */

.service_pg {
    padding-block: var(--padding);
}

.service_pg #sub-heading {
    color: var(--primary);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    display: none;
}

.service_pg h3 {
    font-size: 36px;
    font-weight: 800 !important;
    margin-bottom: 10px;
    color: var(--secondary);

}

.service_pg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/* Service Page End *