body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}
.logo{
        width: 160px;
}
.navbar {
    background: #730403 !important;
    border-bottom: 1px solid #ffffff;
}
.nav-link {
    font-weight: 500;
    margin-right: 18px;
}
.nav-link:hover {
    color: #0a7d6c !important;
}
.btn-outline-dark {
    border-radius: 0;
    font-weight: 600;
}
.hero-section-custom {
    background: linear-gradient(to bottom, #e8f4f1 55%, #ffffff 45%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-title {
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}
.hero-text {
    font-size: 1.05rem;
    color: #4e5b58;
}
.grid-img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: .3s;
}
.grid-img:hover {
    transform: translateY(-5px);
}
.service-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0a7d6c;
    margin-top: 10px;
}

/* Smooth Dropdown Animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease-in-out;
}
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
/*/////////////////  Animated Dropdown  /////////*/

.dropdown-menu {
opacity: 0;
visibility: hidden;
transform: translateY(20px) scale(0.95);
transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
transform-origin: top;
}
.nav-item.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0px) scale(1);
}
.nav-item.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0px);
}

/*/////////////////  Contact Us  /////////*/

.contact-header {
background: #e8f4f1;
padding: 80px 0;
text-align: center;
}
.contact-header h1 {
font-size: 2.8rem;
font-weight: 800;
}
.contact-wrapper {
padding: 60px 0;
}
.form-control {
border-radius: 0;
padding: 12px;
}
.btn-primary {
background: #0a7d6c;
border: none;
padding: 12px 25px;
border-radius: 0;
font-weight: 600;
}
.btn-primary:hover {
background: #066657;
}
.contact-info-box {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.icon-box {
width: 50px;
height: 50px;
background: #e8f4f1;
display: flex;
justify-content: center;
align-items: center;
border-radius: 8px;
font-size: 22px;
color: #0a7d6c;
}

/* Hero */
.hero {
    background: linear-gradient(to right, #dff3ed, #f9fdfc);
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0a7d6c;
}
.hero p {
    color: #4a5b58;
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 80px 0;
}
.section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0a7d6c;
}
.section p {
    font-size: 1.1rem;
    color: #3d4745;
    line-height: 1.8;
}

/* Cards with icons */
.icon-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    transition: .3s;
}
.icon-card:hover {
    transform: translateY(-6px);
}
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #e8f7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a7d6c;
    font-size: 2rem;
}

/* Image Styling */
.img-rounded {
    border-radius: 26px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
