
.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:rgb(255, 255, 255);
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:18px!important;
    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;
    }

}
.section-title {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    color: #6A4E42;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(0, 64, 0);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInDivider 1s 0.5s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDivider {
    0% { opacity: 0; width: 0; }
    100% { opacity: 1; width: 80px; }
}
.why-us {
    background: #f4f7fb;
    padding: 90px 0;
}

.why-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #e9f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.icon-box i {
    font-size: 28px;
    color: rgb(0, 0, 0);
    transition: 0.4s ease;
}

.why-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.why-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.why-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgb(192, 192, 192), rgb(255, 255, 255));
    color: rgb(0, 0, 0);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.why-card:hover h5,
.why-card:hover p {
    color: rgb(0, 0, 0);
}

.why-card:hover .icon-box {
    background: rgb(0, 0, 0);
}

.why-card:hover .icon-box i {
    color: #fff;
}

@media (max-width: 992px) {
    .why-us h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 15px;
    }

    .why-us h2 {
        font-size: 24px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-card p {
        font-size: 14px;
    }
}
.mv-section{
    background:#f8f9fa;
}

.section-title{
    font-weight:700;
    font-size:32px;
    color:#222;
}

/* Card Design */
.mv-card{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
    height:100%;
}

.mv-card h4{
    font-weight:600;
    margin-bottom:15px;
    color:#222;
}

.mv-card p{
    font-size:15px;
    color:#666;
}

.icon-circle{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#e9ecef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:rgb(64, 0, 0);
    transition:0.4s ease;
}

.mv-card:hover .icon-circle{
    background:rgb(128, 64, 0);
    color:#fff;
    transform:rotate(10deg) scale(1.1);
}

.mv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

@media(max-width:768px){
    .section-title{
        font-size:26px;
    }
}

.about-hero-section{
    background:#f3f4f2;
}

.tagline{
    background:#dcefe1;
    color:#1e6a3c;
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.main-heading{
    font-size:44px;
    font-weight:800;
    color:#1c4c2b;
    margin-top:20px;
    max-width:950px;
    margin-left:auto;
    margin-right:auto;
}

.image-bg{
    border-radius:25px;
    overflow:hidden;
    border:10px solid #fff;  
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.image-front{
    position:absolute;
    bottom:-50px;
    right:-50px;
    width:75%;
    border-radius:20px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);

    transform: translateX(-50px); 
}

.about-card{
    background:#ffffff;
    padding:45px 15px;
    border-radius:25px;
    border:10px solid #fff;  
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.about-card h3{
    font-weight:700;
    color:#1c4c2b;
}

.divider{
    width:70px;
    height:3px;
    background:#c9a227;
    margin:15px 0 25px 0;
}

.about-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
}

.right-image-wrapper{
    border-radius:25px;
    overflow:hidden;
    border:10px solid #fff;   
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

@media(max-width:992px){

    .main-heading{
        font-size:30px;
    }

    .image-front{
        position:relative;
        bottom:0;
        right:0;
        width:100%;
        margin-top:20px;
    }

    .about-card{
        margin:40px 0;
    }
	
}
@media (max-width: 768px){

    .image-front{
        position:relative;   
        bottom:0;
        right:0;
        width:100%;
        margin-top:20px;
    }

    .image-bg{
        margin-bottom:20px;
    }

}
@media (max-width:768px){

    .image-front{
        display:none;
    }

}
.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;
}