/* .navbar {
  transition: background-color 0.4s, box-shadow 0.4s;
  background-color: transparent !important;
  color: black;
}

.navbar.scrolled {
    transition: ease-in-out 2s;

  background-color: rgb(2, 71, 45) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.navbar-brand{
    color: white;
}
.nav-link{
    margin: 20px;
margin-top: 10px;
margin-bottom: 10px;
    color: white;
 font-size: 1.1rem;
 
}

.nav-link:hover{
color: chocolate;
cursor: pointer;
transform: scale(1.1);
transition: ease-out 2s;

}

.navbar-brand:hover{
color: chocolate;


} */

.navbar {
    background: transparent !important;
    transition: all .4s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgb(2, 71, 45) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.navbar-brand img {
    height: 65px;
    width: auto;
}

.nav-link {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    transition: all .3s ease;
}

.nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

#navIcon {
    color: white;
    font-size: 1.5rem;
}

/* Mobile Menu */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(2, 71, 45, 0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
        padding: 10px;
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 55px;
    }

    .navbar-nav {
        gap: 5px;
    }
}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 45px;
    }

    .nav-link {
        font-size: .95rem;
    }
}




.contact-banner {
    position: relative;
    min-height: 100vh;
    background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa")
                center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
    margin-bottom: 25px;
}

.breadcrumb-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-banner a {
    color: #ffd166;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-banner span {
    color: #fff;
}

/* Tablet */
@media (max-width: 768px) {
    .contact-banner {
        min-height: 50vh;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 2.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-banner {
        min-height: 70vh;
        padding: 30px 15px;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .breadcrumb-banner {
        font-size: 14px;
        padding: 10px 18px;
    }
}





.contact-main-icons{
    width: 50px;
    height: 50px;
    background-color: rgb(3, 90, 60);
    display: flex;
    padding: 20px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.contact-icons{
    font-size: 20px;
    color: white;
    padding: 20px;
}
h5{
    color: rgb(3, 90, 60);
}
p{
        padding-bottom: 20px;

     font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.7;
    justify-content: flex-start;
    text-align: justify;
}

.contact-form{
    
    background-color: rgb(3, 90, 60);
    border-radius: 10px;
}
.form-div{
    padding: 10px;
    margin: 10px;
}
.form-label{
    color: white;
}
.form-contact{
    /* outline: none !important; */
    box-shadow: none !important;
color: white !important;

   border: none;
   background-color: transparent;
       border-radius: 0px;

   border-bottom: 3px solid white;
}
.form-contact:focus{
    background-color: transparent;
}
.form-control::placeholder {
  color: #ffffff;
  font-size: 14px;
}

.btn-form{
    border: none;
    width: 120px;
    color: rgb(3, 90, 60);
    padding: 10px;
    border-radius: 5px;
}





footer{
    background-color: rgb(2, 71, 45);
}
footer h5,a{
    color: white;
   text-decoration: none;
}


.fa-brands{
    background-color: white;border-radius: 50px;
    padding: 10px;
    color:rgb(2, 71, 45);
}

.fa-brands:hover{
transform: rotate(4turn);
transition: ease-out 2s;
box-shadow: 0px 5px 15px 5px rgba(255, 0, 0, 0.384);
}
p i{
    background-color: white;border-radius: 50px;
    padding: 10px;
    color:rgb(2, 71, 45);
}


