.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 Elegant - New Design */
.contact-elegant {
  background: #f4f7fb;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.elegant-wrapper {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left Panel */
.contact-info-panel {
  background: linear-gradient(145deg, #1e2b3a, #15232e);
  color: white;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.info-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.info-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: #f0b800;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.info-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.info-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
}

.info-details {
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  animation: slideIn 0.8s ease backwards;
}

.detail-item:nth-child(1) { animation-delay: 0.2s; }
.detail-item:nth-child(2) { animation-delay: 0.4s; }
.detail-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f0b800;
  transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
  background: #f0b800;
  color: #1e2b3a;
  transform: scale(1.1) rotate(5deg);
}

.detail-text strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.detail-text span {
  font-size: 16px;
  color: white;
  line-height: 1.6;
}

/* Social Icons */
.info-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: #f0b800;
  color: #1e2b3a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(240, 184, 0, 0.3);
}

/* Right Panel */
.contact-form-panel {
  background: white;
  padding: 60px 50px;
  display: flex;
  align-items: center;
}

.form-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.form-title {
  font-size: 32px;
  font-weight: 600;
  color: #1e2b3a;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgb(26, 20, 0);
  border-radius: 2px;
}

/* Form Groups */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #e0e7ef;
  background: transparent;
  font-size: 16px;
  color: #1e2b3a;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-group textarea {
  min-height: 90px;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #8f9eb5;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
}
.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(55, 43, 0);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  background: #1e2b3a;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(30, 43, 58, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  background: #15232e;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 43, 58, 0.3);
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .info-heading {
    font-size: 40px;
  }
  
  .contact-info-panel,
  .contact-form-panel {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .info-heading {
    font-size: 36px;
  }
  
  .detail-item {
    gap: 15px;
  }
  
  .form-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 40px 25px;
  }
  
  .info-heading {
    font-size: 32px;
  }
  
  .submit-btn {
    font-size: 16px;
    padding: 14px 25px;
  }
}
.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;
    }

}