* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}

html {
    font-size: 90%;  
}

html,
body {
    width: 100%;
    height: 100%;

}

.open-nav-links.slide {
    display: block;
}

.open-nav-links {
    display: none;
    width: 100%;
    position: absolute;
    top: 340%;
    left: 0;
    text-align: center;
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    border-radius: 20px;
}

.open-nav-links a {
    display: block;
    font-size: 3rem;
    color: white;
    margin: 20px 0;
}

.open-nav-links a:hover {
    color: rgb(230, 175, 27);
}

/*-----------header-------------*/

#header {
    width: 100%;
    opacity: 0.9;
    background-color: whitesmoke;
    z-index: 5;
    height: 120px;
}


.nav-contact {
    width: 100%;
    position: absolute;
    padding: 10px 50px;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgb(230, 175, 27);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.top-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.top-contact p,
.top-contact i {
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    margin-bottom: 0px;
}

.top-social-media i {
    font-size: 25px;
    margin: 0 20px;
    cursor: pointer;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 95%;
    left: 0;
    margin-top:5px;
    padding: 5px 50px;
}

.nav-bar .menu-icon {
    display: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.nav-bar img {
    width: 70px;
    height: 60px;
    
}

.nav-links {
    margin-top: 20px;
}

.nav-links a {
    font-size: 18px;
    margin: 10px 20px;
    color: black;
    transition: 0.5s all ease;
}

.nav-links a:hover {
    color: rgb(230, 175, 27);
    text-decoration: none;
}

.nav-contact p {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* footer section */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    background: rgb(230, 175, 27);
    background: -webkit-linear-gradient(to right, #001510, #00bf8f);
    background: linear-gradient(to right, #001510, #242726);
    position: relative;
    z-index: 999;
}

.container-footer {
    width: 100%;
    margin-top: -10%;
}

.container-footer .row {
    color: white;
    overflow: hidden;
    margin: 50px 20px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 10%;
    gap: 50px;
}

.container-footer .row .col-md-2 {
    width: calc(100% / 5);
    margin-top: 50px;
}

.footer-news {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 2px;
    border-radius: 2px;
}

.footer-news input {
    width: 70%;
    border: none;
    text-align: center;
    color: white;
    font-size: 12px;
    background-color: transparent;
    outline: none;
}

.footer-news button {
    width: 30%;
    border: none;
    background-color: rgb(230, 175, 27);
    color: black;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
}

#last-foot {
    font-size: 12px;
    font-weight: 200;
    margin: 15px 0;
    color: #fff;
}

.container-footer .row .col-md-2 li {
    list-style: none;
    margin: 10px 0;
    font-weight: 200;
    transition: 0.5s all ease;
}

.container-footer .row .col-md-2 li:hover {
    color: rgb(230, 175, 27);
}

.container-footer .row .col-md-2 p {
    font-weight: bold;
    color: rgb(230, 175, 27);
}

.container-footer .row ul {
    padding: 0 !important;
}

.container-footer .col-md-3 h1 {
    font-size: 32px;
    font-weight: 700;
}

.footer-social-media {
    text-align: left;
    margin-top: 20px;
}

.footer-social-media i {
    font-size: 2.5rem;
    transition: 0.5s all ease;
}

.footer-social-media i:hover {
    color: rgb(230, 175, 27);
}

.footer-social i {
    margin-right: 10px;
    transition: 0.5s all ease;
}

.footer-social i:hover {
    color: rgb(230, 175, 27);
}

.container-footer .col-md-2 a {
    text-decoration: none;
    color: white;
}



/*--------Media query---------*/

@media screen and (max-width: 1100px) {
    html {
        font-size: 80%;
    }

    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 20px;
        /*top: 85%;*/
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 4rem;
        margin-top: 20px;
        color: black;
    }

    .top-contact p,
    .top-contact i {
        font-size: 10px;
        color: black;
    }

    .container-footer .row .col-md-2 {
        margin-right: 10px;
    }

}



@media screen and (max-width: 980px) {
    html {
        font-size: 80%;
    }

    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 20px;
        /*top: 95%;*/
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 4rem;
        /*margin-top: 20px;*/
        color: black;
    }

    .top-contact p,
    .top-contact i {
        font-size: 10px;
        color: black;
    }

    .container-footer .row .col-md-2 {
        margin-right: 10px;
    }

}


@media screen and (max-width: 766px) {
    html {
        font-size: 80%;
    }

    .h1 {
        margin: 0;
    }


    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 10px;
        /*top: 85%;*/
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 4rem;
        /*margin-top: 20px;*/
        color: black;
    }


    .top-social-media {
        display: none;
    }

    .top-contact p,
    .top-contact i {
        font-size: 10px;
        color: black;
    }

    .container-footer .row .col-md-2 {
        width: 100%;
        margin-top: 10px;
    }
}


@media screen and (max-width: 580px) {
    html {
        font-size: 80%;
    }


    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 10px;
        /*top: 85%;*/
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 3rem;
        /*margin-top: 20px;*/
        color: black;
    }

    .top-contact p,
    .top-contact i {
        font-size: 10px;
        color: black;
    }

    .container-footer .row {
        flex-wrap: wrap;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: center;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: center;
    }

    .footer-top-jbs p {
        margin: 0 auto;
    }

    .footer-top-xyz .footer-social-media {
        text-align: center;
        margin: 20px 0;
    }

    .container-footer .row .col-md-2 {
        margin-right: 10px;
        width: 35%;
        text-align: center;
        margin-right: 20px;
    }
}

@media screen and (max-width: 420px) {
    html {
        font-size: 80%;
    }

    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 10px;
        /*top: 85%;*/
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 3rem;
        margin-top: 10px;
        color: black;
    }


    .top-contact p,
    .top-contact i {
        font-size: 8px;
        color: black;
    }

    .container-footer .row {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: left;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: left;
    }

    .footer-top-jbs p {
        margin: 0;
    }

    .footer-top-xyz .footer-social-media {
        text-align: left;
        margin: 20px 0;
    }

    .container-footer .row .col-md-2 {
        margin-right: 10px;
        width: 100%;
        text-align: left;
        margin-right: 20px;
    }
}

@media screen and (max-width: 380px) {
    html {
        font-size: 80%;
    }

    .nav-links {
        display: none;
    }

    .nav-bar {
        padding: 0 10px;
        top: 95%;
        
    }

    .nav-bar .menu-icon {
        display: block;
        font-size: 3rem;
    }


    .top-contact p,
    .top-contact i {
        font-size: 8px;
        color: #000000;
    }



    .container-footer .row {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: left;
    }

    .container-footer .row .col-md-2:nth-child(1) {
        width: 100%;
        text-align: left;
    }

    .footer-top-xyz p {
        margin: 0;
    }

    .footer-top-xyz .footer-social-media {
        text-align: left;
        margin: 20px 0;
    }

    .container-footer .row .col-md-2 {
        margin-right: 10px;
        width: 100%;
        text-align: left;
        margin-right: 20px;
    }

    .company p {
        color: white;
        font-size: 1rem;
    }

    .tilt-span {
        display: none;
    }

    .balcony-span {
        display: none;
    }

    .comp-empt1 {
        height: 100px;
        top: 15%;
    }
}



/*----------------Contact-Us--------------------*/


.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}


input:focus,
textarea:focus,
keygen:focus,
select:focus {
    outline: none;
}

::-moz-placeholder {
    color: #666;
    font-weight: 300;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #666;
    font-weight: 300;
}

.container {
    padding: 0 50px 70px;
}

.textcenter {
    text-align: center;
}

.section1 {
    text-align: center;
    display: table;
    width: 100%;
}

.section1 .shtext {
    display: block;
    margin-top: 100px;
}

.section1 .seperator {
    border-bottom: 1px solid #a2a2a2;
    width: 35px;
    display: inline-block;
    margin: 20px;
}

.section1 h1 {
    font-size: 40px;
    color: rgb(138, 137, 137);
    font-weight: normal;
}

.section2 {
    width: 1200px;
    margin: 25px auto;
}

.section2 .col2 {
    width: 48.71%;
}

.section2 .col2.first {
    float: left;
}

.section2 .col2.last {
    float: right;
}

.section2 .col2.column2 {
    padding: 0 30px;
}

.section2 span.collig {
    color: #a2a2a2;
    margin-right: 10px;
    display: inline-block;
}

.section2 .sec2addr {
    display: block;
    line-height: 26px;
}

.section2 .sec2addr p:first-child {
    margin-bottom: 10px;
}

.section2 .sec2contactform input[type="text"],
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #EDEDED;
    margin: 7px 0;
}

.section2 .sec2contactform textarea {
    width: 100%;
    display: block;
    color: #666;
    resize: none;
}

.section2 .sec2contactform input[type="submit"] {
    padding: 15px 40px;
    color: #fff;
    border: 0;
    background: rgb(138, 137, 137);
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
}

.section2 .sec2contactform h3 {
    font-weight: normal;
    margin: 20px 0;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 19px;
    color: rgb(138, 137, 137);
}

/* @media querries */

@media only screen and (max-width: 1266px) {
    .section2 {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .container {
        padding: 0 30px 70px;
    }

    .section2 .col2 {
        width: 100%;
        display: block;
    }

    .section2 .col2.first {
        margin-bottom: 10px;
    }

    .section2 .col2.column2 {
        padding: 0;
    }

    body .sec2map {
        height: 250px !important;
    }
}

@media only screen and (max-width: 768px) {
    .section2 .sec2addr {
        font-size: 14px;
    }

    .section2 .sec2contactform h3 {
        font-size: 16px;
    }

    .section2 .sec2contactform input[type="text"],
    .section2 .sec2contactform input[type="email"],
    .section2 .sec2contactform textarea {
        padding: 10px;
        margin: 3px 0;
    }

    .section2 .sec2contactform input[type="submit"] {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 420px) {
    .section1 h1 {
        font-size: 28px;
    }
}


/*------------mission-vision-value------------------*/


.flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-image: linear-gradient();
    margin-top: 0px;
}

.flexcard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 20%;
    align-items: baseline;
    height: 400px;
    border-radius: 20px;
    margin-bottom: 5%;
}

.flexcardNumber {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 10px 0px;
    border-radius: 0px 50px 50px 0px;
    font-family: 'Jost', sans-serif;
    color: white;
    text-shadow: 0px 3px 5px black;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.flexcardTitle {
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
}

.flexcardText {
    font-family: 'Jost', sans-serif;
    text-align: justify;
    font-weight: 300;
    padding: 20px;
}

.flexcardNumber:before {
    content: '';
    width: 34px;
    height: 90px;
    position: absolute;
    left: -33px;
    top: 0px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
    /* background: #95B7A2; */
    /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
    background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
    /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
    ;
}

.flexcardNumber:after {
    content: '';
    width: 25px;
    height: 40px;
    position: absolute;
    left: -25px;
    bottom: -40px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
}

.flex {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
}

img.flexcardimgItem {
    width: 50%;
    border: 1px solid black;
    border-radius: 10px;
}

/* GREEN CARD */

.flexcardGreen {
    background: #f9fbfa;
    box-shadow: 4px 4px 4px #AED2BC;
}

.flexcardNumberGreen {
    background: #FCFCFC;
    background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
    background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
    background: linear-gradient(to left, #FCFCFC, #AED2BC);
    box-shadow: 0px 2px 2px #AED2BC;
}

.flexcardNumberGreen:before {
    background: #AED2BC;
}

.flexcardNumberGreen:after {
    background: #95b7a2;
}

/* BLUE CARD */

.flexcardBlue {
    background: #f7ffff;
    box-shadow: 4px 8px 1px #92E8EB;
}

.flexcardNumberBlue {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
    background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
    background: linear-gradient(to left, #FDFFFE, #92E8EB);
    box-shadow: 0px 2px 2px #92E8EB;
}

.flexcardNumberBlue:before {
    background: #92E8EB;
}

.flexcardNumberBlue:after {
    background: #71bdbf;
}

/* ORANGE CARD */

.flexcardOrange {
    background: #fdf8f3;
    box-shadow: 4px -2px 1px #F68404;
}

.flexcardNumberOrange {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
    background: -moz-linear-gradient(right, #FDFFFE, #F68404);
    background: linear-gradient(to left, #FDFFFE, #F68404);
    box-shadow: 0px 2px 2px #F68404;
}

.flexcardNumberOrange:before {
    background: #F68404;
}

.flexcardNumberOrange:after {
    background: #d06f02;
}

/* PİNK CARD */

.flexcardPink {
    background: #fffafd;
    position: relative;
    box-shadow: 2px 2px 1px #F34EAE;
    border-radius: 20px 20px 0px 20px;
}

.flexcardPink:before {
    content: '';
    width: 0px;
    height: 50px;
    /* background: red; */
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 100px solid transparent;
    border-bottom: 90px solid #F34EAE;
}

.flexcardNumberPink {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
    background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
    background: linear-gradient(to left, #FDFFFE, #F34EAE);
    box-shadow: 0px 2px 2px #F34EAE;
}

.flexcardNumberPink:before {
    background: #F34EAE;
}

.flexcardNumberPink:after {
    background: #d24095;
}

/* RESPONSİVE */

@media only screen and (max-width: 800px) {

    .flexcard {
        width: 35%;
        margin-top: 20px;
    }

    img.flexcardimgItem {
        width: 30%;
    }

}

@media only screen and (max-width: 500px) {

    .flexcard {
        width: 70%;
    }


}



/*----------------About-Us Section-------------------*/
.about {
    padding: 50px 15px;
}

.about .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.about .heading h2 span {
    color: rgb(230, 175, 27);
}

.about .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 40px;
    padding: 0;
    text-align: center;
}

.about h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.about p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 15px;
    padding: 0;
}

.about h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

.about h4 i {
    color: rgb(230, 175, 27);
    margin-right: 10px;
}

.read-btn {
    display: block;
    margin: 20px auto;
}

.about .row img {
    margin-top: 6%;
    height: auto;
    width: 100%;
    background: black;
    border: 2px solid rgb(202, 63, 63);
    border-radius: 10px;
	padding: 30px;
} 
 
@media (max-width: 767px) {

    .about .heading p,
    .about p {
        padding: 0 10px;
    }
}



/*----------------home-screen------------------------*/

.home {
    background-image: url('layout/images/prachi101.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -70px;
}



main {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    height: 85vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-image: url('layout/images/WhatsApp\ Image\ 2024-04-22\ at\ 6.17.42\ PM.jpeg');
}

.title {
    font-family: "poppins";
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: bolder;
    color: #ebb411;
    text-align:center;

}

.description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    margin-left: 10px;
    font-size: 1.2rem;
    font-family: 'poppins';
    color: #ef0a0a;
    text-align:center;
}


@keyframes show {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}



@media (width > 650px) and (width < 900px) {
    .title {
        font-size: 1rem;
    }

    .description {
        font-size: 0.7rem;
    }
}

@media (width < 650px) {
    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.0rem;
        display: block;
        margin-left: 10px;
    }

    .about {
        padding: 100px 0;

    }
}

@media (max-width: 767px) {
    .home {
        background-image: url('layout/images/mobile-view-image.jpeg');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/*-----------Our-service-container---------------*/

.hidden-content {
    display: none;
}


.extra-service-block {
    display: none;
}

.service-section.show-all .extra-service-block {
    display: block;
}

.service-block {
    position: relative;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px); /* Three columns layout */
    display: flex;
    flex-direction: column;
}

.service-block .inner-box {
    
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-block .inner-box .image-container {
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.service-block .inner-box .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.service-block .inner-box .lower-content {
    padding: 10px;
    flex: 1;
}

.service-block .inner-box .lower-content h3 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.service-block .inner-box .lower-content h3 a {
    color: #333;
    transition: all 300ms ease;
}

.service-block .inner-box .lower-content .text {
    color: #666;
    text-align: justify;
    margin-bottom: 20px;
    margin: 10px;
}

.service-block .inner-box .lower-content .read-more {
    text-align: center;
    margin-top: auto;
}

.service-block .inner-box .lower-content .read-more a {
  

    display: inline-block;
    width: 100%;
    max-width: 150px; /* Adjust this value as needed */
    padding: 10px 0;
    font-weight: 700;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: all 300ms ease;
}

.service-block .inner-box .lower-content .read-more a:hover {
    color: #0056b3;
}

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 50px;
    text-transform: uppercase;
    z-index: 999;
}

.white-heading {
    color: #454343;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-black.png);
    background-repeat: no-repeat;
    background-position: center;
    color: #454343;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #454343;
}

/*-----------service------------*/
.service-section {
    display: flex;
    flex-wrap: wrap;
}

.service-section:before {
    position: absolute;
    top: -100px;
    left: 0;
    content: " ";
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.service-section .btn {
    text-align: center;
    background: #ffffff;
    color: #3e3d3d;
    padding: 13px 30px;
    display: block;
    max-width: 190px;
    margin: auto;
    border: 1px solid white;
    -webkit-transform: perspective(1px) translateZ(0);
    -moz-transform: perspective(1px) translateZ(0);
    -o-transform: perspective(1px) translateZ(0);
    transform: perspective(122px) translateZ(0);
}

.service-section .btn:hover {
    background: #79b82d;
    color: #ffffff;
    border: 1px solid #79b82d;
}

.service-section .btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #79b82d;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border: 2px solid #79b82d;
}

.service-section .btn:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

@media (max-width: 991px) {
    .service-block {
        flex: 1 1 calc(50% - 20px); 
    }
}

@media (max-width: 767px) {
    .service-block {
        flex: 1 1 100%;
    }
}




/*-----------Our-service-container----------


.extra-service-block {
    display: none;
}

.service-section.show-all .extra-service-block {
    display: block;
}

.service-block {
    position: relative;
    color: #fff;
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
}

.service-block .inner-box {
    position: relative;
}

.service-block .inner-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-block .inner-box .image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-block .inner-box .lower-content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.service-block .inner-box .lower-content h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.service-block .inner-box .lower-content h3 a {
    color: #ffffff;
    transition: all 500ms ease;
}

.service-block .inner-box .lower-content .text {
    color: #ffffff;
    text-align: justify;
}


.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}

.white-heading {
    color: white;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}


.service-section {
    background: rgb(124, 117, 117);
    padding-bottom: 50px;
    padding-top: 50px;
}

.service-section:before {
    position: absolute;
    top: -100px;
    left: 0;
    content: " ";
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.service-block {
    position: relative;
    color: #fff;

}

.service-block .inner-box {
    position: relative;
    overflow: hidden;

}

.service-block {
    border: 2ps solid white;
}

.service-block .inner-box .image {
    position: relative;
}

.service-block .inner-box .image .read-more {
    position: absolute;
    right: 0px;
    bottom: 26px;
    left: 60%;
    color: #252525;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    padding: 15px 25px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: rgba(255, 255, 255, 0.80);
}

.service-block .inner-box:hover .image .read-more {
    left: 40%;
    opacity: 1;
    visibility: visible;
}

.service-block .inner-box .image .read-more a {
    position: relative;
    color: #252525;
    font-weight: 700;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block .inner-box .image .read-more a .icon {
    position: relative;
    top: 1px;
    margin-left: 5px;
    font-size: 16px;
    display: inline-block;
}

.service-block .inner-box .image .read-more a:hover {
    color: #d7a449;
}

.service-block .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
}

.service-block .inner-box .lower-content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 40px;
    text-align: justify;
}

.service-block .inner-box .lower-content h3 {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.service-block .inner-box .lower-content h3 a {
    position: relative;
    color: #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-section .btn {
    text-align: center;
    background: #ffffff;
    color: #3e3d3d;
    padding: 13px 30px;
    display: block;
    max-width: 190px;
    margin: auto;
    border: 1px solid white;
    -webkit-transform: perspective(1px) translateZ(0);
    -moz-transform: perspective(1px) translateZ(0);
    -o-transform: perspective(1px) translateZ(0);
    transform: perspective(122px) translateZ(0);
}

.service-section .btn:hover {
    background: #79b82d;
    color: #ffffff;
    border: 1px solid #79b82d;
}

.service-section .btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #79b82d;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border: 2px solid #79b82d;
}

.service-section .btn:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

-----*/

/*-----------service Close------------*/
/*---------------------Center Line---------------------------*/
.border-line {
    display: flex;
    margin-top: 50px;
}

.centerline {
    border-top: 80px solid rgb(11, 27, 100);
    width: 100%;
}

.rating {
    width: 100%;
    height: 90px;
    background: rgb(88, 86, 86);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 20px;
}

.rating-content {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.count {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: azure;
}

.label {
    font-size: 14px;
    color: whitesmoke;
}




/*--------------Testimonial-section--------------*/
.section-testmonials {
    font-family: Poppins;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 10%;
    padding: 20px;
}

.column-testmonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 15%;
}

.section-details {
    border-left: 10px solid #FFCB00;
    padding-left: 20px;
}


.name-section {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    color: black !important;
    line-height: 1.2em;
    margin: 0;
}

.title-section b {
    color: black;
}

.title-section {
    color: #000;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.navigation-testmonials {
    display: flex;
    gap: 10px;
}


.swiper-testmonials {
    width: 80%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .section-testmonials {
        flex-direction: column;
        align-items: flex-start;
    }

    .swiper-testmonials {
        width: 100%;
    }
}

.swiper-testmonials .swiper-slide {
    border-radius: 10px;
    background: linear-gradient(118deg, black 30.88%, rgb(230, 175, 27) 83.88%);
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: scale(0.9) !important;
    filter: blur(1px) grayscale(0.5);
    transition: 0.2s;
}

.swiper-testmonials .swiper-slide * {
    margin: 0;
}

.swiper-testmonials .swiper-slide-active {
    filter: blur(0px) !important;
    transform: scale(1) !important;
}

.card-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.head-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-slide {
    display: flex;
    align-items: center;
    gap: 20px
}

.title-slide h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}

.title-slide h6 {
    color: #FFCB00;
    font-size: 14px;
    font-weight: 500;
}

.text-slide {
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

.swiper-button-testmonials-next,
.swiper-button-testmonials-prev {
    cursor: pointer;
}


@media (max-width: 768px) {
    .header-slide svg {
        width: 50px;
    }

    .title-slide h4 {
        font-size: 14px;
    }

    .swiper-testmonials .swiper-slide {
        padding: 20px;
    }
}




/*-------------------Gallery.html---------------------------------*/


/*--------------gallery-container--------------*/

.gallery-container {
    padding: 50px;
}

.col-md-4 img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

.col-md-4:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-container h2 {
    text-align: center;
    margin-top: 30px;
    color: black;
    font-size: 50px;
    font-weight: bold;
}

.gallery-container .row {
    margin-top: 50px;
}

.gallery-container p {
    text-align: center;
    margin-top: 30px;
}

.breadcrumbs {
    background: rgba(104, 100, 100, 0.5);
    height: 200px;
    width: 100%;

}

.breadcrumbs a {
    color: #333;
    font-size: 30px;
    margin-left: 20px;
    margin-top: 20px;

}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
    color: red;
}


/*----------------------------About.html------------------*/




#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(145, 168, 243);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
}

#myBtn:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    #myBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 75px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: rgb(145, 168, 243);
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 25px;
        font-size: 20px;
    }
}







/*------------------------------Youtube Video---------------------------------*/
.blog-intro {
    text-align: center;
    padding: 20px;
}

.blog-intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.blog-intro h1 span {
    color: rgb(230, 175, 27);
}

.blog-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-video video {
    max-width: 100%;
    height: auto;
    border: 2px solid black;
	border-radius: 10px;
}


.read-btn {
    padding: 10px;
    margin-top: 40px;
    margin-left: 120px;
    background-color: rgb(230, 175, 27);
    border: none;
    font-size: 15px;
}

.read-btn:hover {
    background-color: red;
}


.read-btn-serv {
    padding: 15px;
    margin-top: 40px;
    background-color: rgb(230, 175, 27);
    margin-left: 42%;
    border: none;
    font-size: 15px;
}

.read-btn-serv:hover {
    background-color: red;
}



/*------------Breadcrumbs----------------*/

/* Breadcrumbs */
.breadcrumb {
    height: 300px;
    background-image: url('layout/images/indust-7.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.breadcrumb::before {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb ol li {
    margin-right: 5px;
    color: floralwhite;
}

.breadcrumb ol li:last-child {
    margin-right: 0;
}

.breadcrumb ol li a {
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    color: floralwhite;
    font-weight: 500;
}

.breadcrumb ol li a:hover {
    color: #ffd700;
}

.breadcrumb ol li::after {
    content: '/';
    margin-left: 5px;
    color: floralwhite;
    font-size: 20px;
}

.breadcrumb ol li:last-child::after {
    content: '';
    margin-left: 0;
}

.breadcrumb ol li.active {
    color: rgb(230, 175, 27);
    font-size: 20px;

}

.breadcrumb ol li::after {
    content: none;
    /* Remove the default separator */
}

/* Alternatively, to change the color of the default separator to yellow */
.breadcrumb ol li::after {
    content: '/';

}

/*----------------about-Page-section-----------------------*/

.page-section {
	
    background: #fff;
    color: #000;
    padding: 30px 0;
}

.timeline {
    list-style: none;
    padding: 0;
}

.timeline>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.timeline-panel {
    flex-basis: 50%;
    padding: 0 20px;
}

.timeline-image {
    flex-basis: 40%;
    text-align: center;
}

.timeline-image img {
    max-width: 100%;
    height: auto;
    background: rgb(85, 84, 84);
    border-radius: 10px;
	padding: 20px;
}

.timeline-inverted .timeline-panel {
    order: 2;
    text-align: left;
}

.timeline-inverted .timeline-image {
    order: 1;
}

.timeline-heading h4 {
    margin-bottom: 10px;
}

.timeline-heading .subheading {
    font-style: italic;
}

.timeline-body p {
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 992px) {
    .timeline>li {
        flex-direction: column;
        align-items: center;
    }

    .timeline-panel,
    .timeline-image {
        flex-basis: 100%;
        text-align: center;
    }

    .timeline-inverted .timeline-panel {
        order: 1;
    }

    .timeline-inverted .timeline-image {
        order: 2;
    }
}


.timeline-button{
    padding: 20px;   
    text-align: center;
}

.timeline-button button{
    padding: 20px;
    margin: 20px;
    border: none;
    background: rgb(230, 175, 27);
    border-radius: 10px;
}


/*----------------about-Page-section---------------

.page-section {
    background: #000;
    color: orange;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: "";
    background-color: #e9ecef;
}

.timeline>li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px;
}

.timeline>li:after,
.timeline>li:before {
    display: table;
    content: " ";
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    position: relative;
    float: right;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    text-align: center;
    color: white;
    border: 7px solid #e9ecef;
    border-radius: 100%;
    background-color: #ffc800;
}

.timeline>li .timeline-image h4,
.timeline>li .timeline-image .h4 {
    font-size: 10px;
    line-height: 14px;
    margin-top: 12px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4,
.timeline .timeline-heading .h4 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h4.subheading,
.timeline .timeline-heading .subheading.h4 {
    text-transform: none;
}

.timeline .timeline-body>ul,
.timeline .timeline-body>p {
    margin-bottom: 0;
}


@media (max-width:768px) {

    .timeline-image img {
        height: 50px;
        width: 50px;
        margin-top: 10px;
    }
}

@media screen and (min-width: 769px) {
    .timeline-image img {
        height: 70px;
        width: 60px;
        margin-top: 10px;
    }
}


@media (min-width: 768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        min-height: 100px;
        margin-bottom: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4,
    .timeline>li .timeline-image .h4 {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }

}

@media (min-width: 992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4,
    .timeline>li .timeline-image .h4 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 30px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media (min-width: 1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline-image img {
        height: 120px;
        width: 90px;
        margin-top: 20px;
    }

    .timeline>li .timeline-image h4,
    .timeline>li .timeline-image .h4 {
        margin-top: 40px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}

.page-section {
    padding: 6rem 0;
}

.page-section h2.section-heading,
.page-section .section-heading.h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.page-section h3.section-subheading,
.page-section .section-subheading.h3 {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 4rem;
}


.text-center {
    text-align: center !important;
}

.page-section h2.section-heading,
.page-section .section-heading.h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.page-section h3.section-subheading,
.page-section .section-subheading.h3 {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 4rem;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

p {
    line-height: 1.75;
    text-align: justify;
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }

}

@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }

}

@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }

}

@media (min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px;
    }
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

user agent stylesheet div {
    display: block;
}--------*/

/*---------------------Our Team section-----------------------------*/

.text-team {
    color: rgb(230, 175, 27);
}

.team-section {
    text-align: center;
    background-color: #f4f4f4;
    padding-top: 3%;
}

.team-section-heading {
    font-size: 35px;
    margin-bottom: 10px;
}

.team-section-para {
    font-size: 15px;
    text-align: center;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.team-card {
    position: relative;
    width: 250px;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 5%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 80%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-details {
    padding: 15px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.card-details-head {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-align: center;
}

.card-details-para {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .overlay {
    opacity: 1;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .overlay-content {
    opacity: 1;
}