:root {
    --bs-primary: #8B5A2B;
  --bs-primary-rgb: 139, 90, 43;
}

body{
    font-family: 'Poppins', sans-serif;
}

.landing-page .custom-navbar{
    background-color: transparent;
}

.custom-navbar{
    transition:all 0.4s ease;
padding:20px 0;
top: 0;
width:100%;
z-index:1000;
background: #212529;
}

footer .col-md-4 .link{
    color: white;
}

footer .col-md-4 .content{
    list-style-type: none;
}

.custom-navbar.scrolled{
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 12px;
    background-color: #212529;
}

.navbar-center{
position:absolute;
left:50%;
top: 25%;
transform:translateX(-50%);
}

.navbar-brand, .footer-brand{
display:flex;
align-items:center;
gap:10px;
}

.brand-logo{
height:55px;
width:auto;
}

.brand-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.brand-top{
font-size:14px;
font-weight:600;
}

.brand-bottom{
font-size:14px;
font-weight:600;
}

.hero{
background:
linear-gradient(
rgba(0, 0, 0, 0.779),
rgba(0, 0, 0, 0.779)
),
url("../img/bg.webp");
background-size:cover;
background-position:center;
padding-top:200px;
padding-bottom:160px;
color: white;
}

.hero .container{
position:relative;
z-index:2;
top: 0;
}

.btn-primary{
background: #8B5A2B;
border:none;
    transition: ease, 0.5s;
}

.btn-primary:hover, .btn-primary.btn-primary:active{
    background-color: #653d17;
    color: white;
}

.hero .btn-primary:hover{
    transform: scale(1.05);
}

.card{
    transition:0.5s;
}

.big-card{
    transition: ease, 0.5s;
    overflow: hidden;
    height: auto;
}

.btn-outline-primary{
    border: 2px, solid, #8B5A2B;
    color: #8B5A2B;
    transition: ease, 0.5s;
}

.card:hover{
transform:translateY(-10px);
}

.card-img-top{
height:250px;
width:100%;
object-fit:cover;
}

.btn-outline-primary:hover, .btn-outline-primary:active{
    border: solid, rgb(234, 234, 234);
    background-color: #8B5A2B;
    color: white;
}

#about p{
  text-indent: 40px;
  text-align: justify;
}

a{
    text-decoration: none;
    color: #8B5A2B;
}

a:hover, a:active{
    color: #653d17;
}

#why .card{
    background-color: #8B5A2B;
    color: white;
    border: solid, white;
    height: 100px;
    display:flex;
    align-items:center;
    justify-content:center;
}

#why .card:hover{
    background-color: white;
    border: solid, #8B5A2B;
    color: #8B5A2B;
    transform:translateY(-10px);
    transition:0.5s;
}

#why .card-image{
    background-color: #8B5A2B;
}

#why img{
    height: 30px;
    width: auto;
}

#about .new-section{
    padding-top: 200px;
}

.wa-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

.wa-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.fade-section{
opacity:0;
transform:translateY(40px);
transition:all 1s ease;
}

.fade-section.show{
opacity:1;
transform:translateY(0);
}

/* Contact Cards */
.contact-link-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-link-card:hover .contact-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.contact-icon i {
    transition: transform 0.3s;
}

.contact-link-card:hover .contact-icon i {
    transform: scale(1.1);
}

/* Map Container */
.map-container {
    width: 100%;
    line-height: 0; /* Remove iframe gap */
}

.map-container iframe {
    width: 100%;
    filter: grayscale(20%) contrast(1.1); /* Elegant muted look */
    transition: filter 0.3s;
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(1);
}

.wa-button{
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;

    padding: 14px 20px;
    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 6px 16px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: all 0.3s ease;
}

.wa-button:hover{
    background: #1ebe5d;
    transform: translateY(-3px);
}

.clearfix::after{
content:"";
display:block;
clear:both;
}

.about-img{
    float:left;
    width:700px;
    margin-right:20px;
    margin-bottom:10px;
}

#vision .card:hover{
    color: #8B5A2B;
}

#about .container{
overflow:auto;
}

#facility .facility-img{
    width: 300px;
    height: auto;
    margin-right:20px;
    margin-bottom:10px;
}

.float-right{
    float: right;
}
.float-left{
    float: left;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjust for Floating Button */
@media (max-width: 576px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width:768px){

.hero{
padding-top:140px;
padding-bottom:100px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

}
@media (max-width:768px){

.brand-logo{
height:25px;
}

.brand-top,
.brand-bottom{
font-size:12px;

}

}

@media (max-width:991px){

.navbar-center{
position:static;
transform:none;
}

}