.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-section{
    background:#f8f9fc;
}

.contact-box{
    border-radius:18px;
    overflow:hidden;
}
.contact-right{
    background:linear-gradient(135deg,#f4f8f5,#e6f0ea);
    color:#174c2e;
    padding:70px 60px !important;
    display:flex;
    justify-content:center;
    align-items:center;
}
.contact-form-box{
    background:rgb(0, 0, 0);
    padding:60px !important;
}

.inquiry-title{
    font-size:40px;
    line-height:1.3;
}

.inquiry-subtext{
    font-size:18px;
    color:rgb(0, 64, 0) !important;
}

.contact-form-box .form-control{
    border-radius:10px;
    padding:12px;
    border:1px solid #e5e7eb;
    transition:0.3s ease;
}

.contact-form-box .form-control:focus{
    box-shadow:none;
    border-color:#2563eb;
}

.contact-form-box .btn-primary{
    background:black;
    border:none;
    font-weight:600;
    padding:12px;
    border-radius:30px;
    transition:0.3s ease;
}

.contact-form-box .btn-primary:hover{
    background:#222;
    transform:scale(1.03);
}


@media(max-width:768px){

    .contact-right{
        padding:50px 25px !important;
        text-align:center;
    }

    .contact-form-box{
        padding:40px 25px !important;
    }

    .inquiry-title{
        font-size:28px;
    }

}
.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;
}
.cert-slider {
  overflow: hidden;
  position: relative;
}

.cert-track {
  display: flex;
  gap: 20px;
  animation: scrollCerts 20s linear infinite;
}

@keyframes scrollCerts {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media(max-width:768px){
  .cert-track{
    animation: scrollCerts 8s linear infinite;
  }
}

.cert-card {
  min-width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.cert-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.cert-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.cert-modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 15px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cert-card { min-width: 220px; height: 220px; }
  .close-modal { font-size: 45px; }
}

@media (min-width: 1024px) {
  .cert-card { min-width: 240px; height: 240px; }
  .close-modal { font-size: 50px; }
}