body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

/* section title */

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    font-family: "Courgette", cursive;
}

.section-title span {
    color: #dc6a00;
}

.section-subtitle {
    font-size: 16px;
    color: #222;
    margin: 0 auto;
}


@media (max-width: 575px) {
    .section-title {
        font-size: 30px;
    }
}

/* section title end*/




/* header start */

.navbar-custom {


    position: relative;
    position: fixed;
    top: 0;

    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */

    transition: top 0.3s, background-color 0.3s;

}

.navbar-brand img {
    width: 150px;
}

.nav-link,
.navbar-brand,
.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

.offcanvas-end {
    background-color: #ffffff;
}

.sticky-scroll {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.sticky-scroll .navbar-nav a {
    color: #000000 !important;
}

/* .offcanvas-body {

    display: flex !important;
    justify-content: center !important;
} */


.navbar-nav {
    display: flex;
    justify-content: end;
}

.navbar-nav a {
    color: #ffffff !important;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;

}


.navbar-nav a:hover {
    color: #dc6a00 !important;
}


.navbar-nav .active a {
    color: #dc6a00 !important;
}


.navbar-toggler span {
    color: #ffffff !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;

}

.header-btn a{
    border: 1px solid #dc6a00;
    padding: 7px 26px;
    border-radius: 50px;
    color: #dc6a00;
}

.header-btn a:hover{
    background-color: #dc6a00;
    color: #ffffff;
}


@media(max-width:1200px){
    .header-btn{
        display: none;
    }
}


@media(max-width:992px) {
    /* .offcanvas-body {
        display: flex !important;
        justify-content: left !important;
    } */

   

    .header-right-section {
        display: none;
    }

    .navbar-nav .active {
        background-color: transparent !important;

    }

    .navbar-nav a {
        color: #000000 !important;
    }

    .navbar-nav .active a {
        color: #000000 !important;
    }
}


@media(max-width:432px) {
    .navbar-brand img {
        width: 150px;
    }
}



/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */



/* banner section */


.hero-banner {
    position: relative;
    background: url('../image/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Courgette", cursive;
}

.hero-content span{
    color: #dc6a00;
}

.hero-content p {
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 7px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.hero-buttons .btn-primary {
    background: #dc6a00;
    color: #ffffff;
    border: 2px solid #dc6a00;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: #dc6a00;
}


.hero-buttons .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: #000000;
}



@media (max-width: 991px) {
    .hero-banner {
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {

    .hero-banner{
        min-height: 90vh;
        background-position: center !important;
    }

    .hero-content h1 {
        font-size: 30px;
        text-align: center;
    }

    .hero-content p {
        font-size: 15px;
        text-align: center;
    }

    .hero-buttons {
        /* flex-direction: column;
        align-items: flex-start; */
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width:375px) {
    .hero-buttons .btn{
        padding: 7px 18px !important;
    }
}

/* banner end */




/* pages banner start */

.pages-banner-bg{
    position: relative;
    background-image: url("../image/banner-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
}


.pages-banner-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}


.pages-banner-bg .container{
    position: relative;
    z-index: 2;
}

.page-banner-content{
    text-align: center;
    padding-top: 40px;
}

.page-banner-content h2{
    color: #b9b9b9;
    font-weight: 500;
    font-style: italic;
    font-size: 36px;
    line-height: 1;
}

.page-banner-content ul{
    padding: 0;
    color: #ffffff;
}

.page-banner-content li{
    display: inline-block;
    margin: 10px;
}

.page-banner-content a{
    color: #ffffff;
    text-decoration: none;
}

.page-banner-content ul li a.active{
    color: #dc6a00 !important;
}

/* pages banner end */





/* footer start */


.footer-section {
    padding-bottom: 15px;
    background-color: #f7f7f7;
}


/* .footer-section {
    position: relative;
    padding-bottom: 15px;
    background: url('../');
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(36, 15, 126, 0.85);
}

.footer-section > * {
    position: relative;
    z-index: 2;
} */

.footer-bg {

    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

/* .footer-row{
    border-bottom: 1px solid #ffffff;
} */



.footer-logo img {
    width: 150px;
}

.footer-about p {
    margin-top: 15px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #000000;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #dc6a00;
}


.footer-menu{
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #000000;

    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #dc6a00;
}

.copy-right {
    display: flex;

    justify-content: center;
    padding-top: 25px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;

}

.copy-right a {
    color: #000000;
}





@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
        display: flex;
        justify-content: left;
    }

    .footer-content {
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p {
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */





/* about start */

.about-section {
    padding: 50px 0px;
}



.about-btn {
    padding-top: 10px;
}

.about-btn a {
    padding: 7px 26px 7px 26px;
    /* background-color: #dc6a00; */
    border: 1px solid #dc6a00;
    color: #dc6a00;
    border-radius: 50px;
    font-size: 15px;
}

.about-btn a:hover {
    background-color: #dc6a00;
    color: #ffffff;
    
}

.about-image-col{
    display: flex;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #b9b9b9;
    margin-bottom: 15px;
    font-family: "Courgette", cursive;

    
}

.about-content span {
    color: #dc6a00;
}

.about-content p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}


.about-points{
    display: flex;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.about-points p{
    display: flex;           
    align-items: center;     
    gap: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #000000;
}

.about-points i{
    color: #dc6a00;
    font-size: 18px;
    line-height: 1;
}





@media(max-width:992px) {
    .about-content {
        padding-top: 30px;
    }
}

@media(max-width:768px) {
    .about-points{
        display: flex;
        flex-wrap: wrap;
    }
}


@media(max-width:432px) {
    .about-section {
        padding-top: 27px;
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 37px;
    }

    .about-content p {
        font-size: 15px;
        text-align: left;
    }

    .about-points li{
        font-size: 15px;
    }
}

/* about end */







/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #dc6a00;
}
/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #dc6a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}
/* end */




/* service section */

.services-section {
    background: #f9f9f9;
    padding: 80px 0;
}


.service-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.service-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-link:hover .service-img img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 22px;
}


.read-more {
    display: inline-block;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 500;
    color: #dc6a00;
    border: 1px solid #dc6a00;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-link:hover .read-more {
    background: #dc6a00;
    color: #ffffff;
}


@media (max-width: 991px) {
    /* .section-title {
        font-size: 30px;
    } */

    .service-img img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 60px 0;
    }


    .service-content {
        padding: 20px;
    }

    .service-img img {
        height: 180px;
    }
}

/* service end */


/* why choose star */

.why-choose-section{
    padding: 70px 0;
    background-color: #ffffff;
}

.why-card{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover{
    background-color: #dc6a00;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-card:hover h5,
.why-card:hover p{
    color: #ffffff;
}


.why-card i{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc6a00;
    color: #ffffff;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}


.why-card:hover i{
    background: #000000;
    transform: scale(1.1);
}


.why-card h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}


.why-card p{
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}


@media (max-width: 767px){
    .why-card{
        padding: 30px 20px;
    }
}

/* why chose ens */


/* service detail page */

.service-detail-section{
    padding: 70px 0;
    background: #ffffff;
}


.service-detail-image{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-detail-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img{
    transform: scale(1.08);
}


.service-detail-content{
    padding-left: 15px;
}

.service-detail-content h2{
    font-size: 34px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
}

.service-detail-content h2::after{
    content: "";
    width: 70px;
    height: 4px;
    background: #dc6a00;
    display: block;
    margin-top: 10px;
}

.service-detail-content p{
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 20px;
}



@media (max-width: 991px){
    .service-detail-content{
        padding-left: 0;
    }

    .service-detail-content h2{
        font-size: 25px;
    }
}

/* detail page end */


/* our work secton */

.work-process-section{
    padding: 50px 0;
    background: linear-gradient(135deg, #f9f9f9 60%, #fff 40%);
}


.process-card{
    position: relative;
    background: #ffffff;
    padding: 45px 25px 35px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


.process-number{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 700;
    color: rgba(220,106,0,0.15);
}


.process-card i{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #dc6a00;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.process-card:hover i{
    background: #000000;
    transform: rotate(360deg);
}


.process-card h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.process-card p{
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}


@media (max-width: 991px){
    .process-title{
        font-size: 28px;
    }

    .process-card{
        padding: 40px 20px 30px;
    }
}

/* our work section end */


/* mission and vision */

.mvt-section{
    padding: 60px 0;
    background: #f9f9f9;
}


.mvt-card{
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}


.mvt-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #dc6a00;
}


.mvt-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


.mvt-card i{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc6a00;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mvt-card:hover i{
    background: #000000;
    transform: scale(1.1);
}


.mvt-card h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.mvt-card p{
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}


@media (max-width: 991px){
    .mvt-title{
        font-size: 28px;
    }

    .mvt-card{
        padding: 40px 25px;
    }
}
/* mission end */


/* our company */

.company-profile-strip{
    padding: 40px 0;
    background: #ffffff;
}


.profile-box{
    background: #f7f7f7;
    padding: 50px 40px;
    border-left: 6px solid #dc6a00;
    height: 100%;
    transition: all 0.3s ease;
}

.profile-box:hover{
    transform: translateY(-6px);
}


.dark-box{
    background: #f7f7f7;
    color: #ffffff;
    border-left-color: #dc6a00;
}

.dark-box p,
.dark-box h2{
    color: #ffffff;
}


.profile-tag{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #dc6a00;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.profile-box h2{
    font-size: 32px;
    font-weight: 500;
    font-family: "Courgette", cursive;
    margin-bottom: 15px;
    color: #000000;
}

.profile-box p{
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 15px;
}


@media (max-width: 991px){
    .profile-box{
        padding: 40px 30px;
    }

    .profile-box h2{
        font-size: 24px;
    }
}
/* our company end */


/* contact page */

/* .contact-section{
    padding: 90px 0;
    background: #f9f9f9;
}


.contact-title{
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.contact-title span{
    color: #dc6a00;
}

.contact-subtitle{
    max-width: 650px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #666666;
}


.contact-card{
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.contact-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.contact-card i{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #dc6a00;
    color: #ffffff;
    font-size: 28px;
    border-radius: 50%;
}

.contact-card h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.contact-card p{
    font-size: 15px;
    color: #555555;
    margin: 0;
}

.contact-card a{
    color: #555555;
    text-decoration: none;
}

.contact-card a:hover{
    color: #dc6a00;
}

.contact-form-box{
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-form-box h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.contact-form-box input,
.contact-form-box textarea{
    width: 100%;
    padding: 14px 18px;
    border-radius: 50px;
    border: 1px solid #dddddd;
    font-size: 15px;
    outline: none;
}

.contact-form-box textarea{
    border-radius: 20px;
    resize: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color: #dc6a00;
}

.contact-form-box button{
    padding: 14px 40px;
    background: #dc6a00;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-box button:hover{
    background: #000000;
    transform: translateY(-3px);
}


.contact-map{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-map iframe{
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}


@media (max-width: 991px){
    .contact-title{
        font-size: 28px;
    }

    .contact-form-box{
        padding: 35px 25px;
    }
} */



.contact-section{
    background: #f9f9f9;
    padding: 50px 0;
}


.contact-info-panel{
    height: 100%;
    padding: 80px 50px;
    background: linear-gradient(180deg, #000000, #1c1c1c);
    color: #ffffff;
}

.contact-info-panel h3{
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: "Courgette", cursive;
}

.contact-info-panel h3 span{
    color: #dc6a00;
}

.info-item{
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.info-item .icon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #dc6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-item h6{
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p{
    font-size: 15px;
    margin: 0;
    color: #dddddd;
}

.info-item a{
    color: #dddddd;
}


.contact-form-glass{
    height: 100%;
    padding: 70px 40px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form-glass h3{
    font-size: 30px;
    font-weight: 500;
    color: #000;
}

.contact-form-glass p{
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

.contact-form-glass input,
.contact-form-glass textarea{
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 12px 5px;
    margin-bottom: 20px;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.contact-form-glass input:focus,
.contact-form-glass textarea:focus{
    border-color: #dc6a00;
}

.contact-form-glass button{
    width: 100%;
    padding: 14px;
    background: #dc6a00;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.contact-form-glass button:hover{
    background: #000000;
}


.map-panel{
    position: relative;
    height: 100%;
    margin-top: 30px;
}

.map-panel iframe{
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* .map-overlay{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc6a00;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
} */


@media(max-width:991px){
    .contact-info-panel,
    .contact-form-glass{
        padding: 50px 25px;
    }
}


@media(max-width:425px){

    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-panel h3{
        text-align: center;
    }

    .info-item h6{
        text-align: center;
    }

    .info-item p{
        text-align: center;
    }
}
