/* ================= GLOBAL FIXES ================= */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; }

/* ================= HEADER ================= */
header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: .3s ease-in;
}
header.dark { position: fixed; background: #ffffff; }

header nav ul { text-align: right; text-transform: capitalize; }
header nav li { display: inline-block; }
header nav li a {
    color: #6aa039;
    display: block;
    padding: 25px 10px;
}
header nav li a:hover { color: #535353; }

/* ================= HERO ================= */
.hero-area {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-area h2 {
    color: #fff;
    line-height: 1.4;
    font-weight: 500;
}

.hero-btn {
    color: #fff;
    font-size: 18px;
    border: 2px solid #fff;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
}

.hero-btn:hover {
    background: #fff;
    color: #022240;
}

.section-heading h2 {
    margin-bottom: 25px;
}


/* ================= ABOUT ================= */
.about-area h2 { padding-bottom: 20px; }
.about-area .col-lg-6 { display: flex; align-items: center; }
.about-detail { padding-left: 10px; }

.about-area h4 {
    font-size: 22px;
    color: #16793f;
    font-weight: 600;
    padding-bottom: 15px;
}

.about-detail p { padding-bottom: 15px; }

.about-detail ul { font-size: 20px; }
.about-detail li { display: inline-block; }

.about-detail li a {
    display: block;
    font-size: 16px;
    color: #bbbbbb;
    height: 40px;
    width: 40px;
    border: 1px solid #bbbbbb;
    text-align: center;
    line-height: 40px;
}

/* ================= MEDIANS / SERVICE ================= */
.service-area {
    background: #f7f7f7;
    padding-bottom: 80px;
}

.section-heading { padding-bottom: 40px; }

.single-service {
    background: #fff;
    padding: 25px 15px;
    margin: 15px;
}

.single-service img {
    border: 1px solid #16793f;
    padding: 10px;
}

/* ================= CONTACT ================= */
.contact-area.contact-2 {
    background-color: #77904f;
    position: relative;
}

.contact-area.contact-2:after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #148643;
    opacity: .85;
    z-index: -1;
}

.contact-area .container {
    background: #fff;
    padding: 80px 40px;
}

.contact-area input,
.contact-area textarea {
    width: 100%;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    padding: 8px 0;
}

.rakika-btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 0 10px -5px #022240;
}

/* ================= CONTACT INFO BOX ================= */
.contact-box {
    padding: 15px;
    border: 1px solid #a4a5aa;
    margin-bottom: 40px;
}

.contact-box i {
    color: #466b8f;
    font-size: 22px;
    margin-right: 10px;
}

/* ================= FOOTER ================= */
footer {
    background: #001a32;
    color: #aec3d6;
    text-align: center;
    padding: 20px 0;
}
.footer-social {
    list-style: none;
    padding: 0;
    margin: 15px 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #16793f;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.footer-social a:hover {
    background: #0f5f30;
    transform: translateY(-3px);
}


/* ================= IMAGE OPTIMIZATION ================= */
img { max-width: 100%; height: auto; }

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    header nav ul { text-align: center; }
    .hero-area { height: 70vh; }
    .contact-area .container { padding: 50px 20px; }
}
