.hero-banner{
  background: rgb(153, 130, 119)!important;
    height:270px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}


.hero-overlay{
    width:100%;
    text-align:center;
}

.hero-content{
    color:#ffffff;
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.hero-content h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518);
    border-radius:5px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:18px;
    letter-spacing:1px;
    opacity:0.9;
}

.breadcrumb-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:992px){
    .hero-banner{
        min-height:300px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }
}

@media(max-width:576px){
    .hero-banner{
        min-height:250px;
        padding:30px 15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .hero-content p{
        font-size:14px;
    }

    .breadcrumb-box{
        font-size:12px;
    }
}
.contact-left {
  background: linear-gradient(135deg, rgb(192, 192, 192), rgb(255, 255, 255));
  color:black;
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 10px;
}

.contact-section .btn-primary {
  background: linear-gradient(90deg, #1e4ed8, #2563eb);
  border: none;
}

.contact-section .btn-primary:hover {
  opacity: 0.9;
}
.social-icons a {
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700 !important;
  transform: scale(1.2);
}


.contact-map-section {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-section {
        height: 300px;
    }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 22px;
}
.contact-map-section{
    width:100%;
    margin-top:70px;
}

.map-container{
    position:relative;
}

.map-container iframe{
    width:100%;
    height:550px;
    border:0;
}

/* Desktop */
.map-address{
    position:absolute;
    bottom:190px;
    left:30px;
    background:#ffffff;
    padding:20px 25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    max-width:280px;
}

.map-address h4{
    margin:0 0 10px;
    font-size:20px;
    font-weight:600;
}

.map-address p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}

.map-phone{
    margin-top:10px;
    font-weight:500;
}
@media (max-width:991px){

    .map-address{
        bottom:120px;
        left:20px;
        max-width:300px;
        padding:18px 20px;
    }

}

@media (max-width:768px){

    .map-address{
        position:absolute;
        bottom:250px;
        left:50%;
        transform:translateX(-50%);
        max-width:320px;
        padding:15px 18px;
    }

    .map-address p{
        font-size:13px;
        line-height:1.4;
    }

}