/* ==================================
   RESET
================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #111;
}

/* ==================================
   HEADER
================================== */
.header-bar {
    width: 100%;
    padding: 10px 40px;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
}

/* LOGO */
.logo-title {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 100px;
}

.company-text {
    margin-left: 10px;
}

.eco {
    font-size: 35px;
    font-weight: 600;
    color: #86df9e;
}

.dynam {
    font-size: 20px;
    color: #f5f3f3;
}

.motto {
    font-size: 15px;
    color: #86df9e;
}

/* ==================================
   NAVIGATION
================================== */
.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #dad2d2;
    font-weight: 600;
    font-size: 23px;
    padding: 8px 12px;
}

.main-nav a:hover {
    color: #86df9e;
}

/* ==================================
   DROPDOWN (UNIFIED STYLE - REAGENTS STYLE)
================================== */

.dropdown-parent {
    position: relative;
}

/* hidden dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    width: 240px;
    list-style: none;

    background: #fff;
    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    z-index: 100000;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* SHOW DROPDOWN */
.dropdown-parent:hover .dropdown,
.dropdown-parent.open .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ITEMS */
.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
    background: #25D366;
    color: #fff;
}

/* ==================================
   HERO SECTION
================================== */
.audit-hero {
    background: url("images/photo7.jpg") center/cover no-repeat;
    width: 100%;
    height: 60vh;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.audit-hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
}

.audit-hero-content h1 {
    font-size: 45px;
    font-weight: 600;
}

.audit-hero-content p {
    font-size: 20px;
}

/* ==================================
   CONTENT SECTION
================================== */
.audit-content {
    padding: 80px 40px;
    background: #ffffff;
}

.audit-wrapper {
    max-width: 1200px;
    margin: auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.audit-image {
    flex: 1;
}

.audit-image img {
    width: 100%;
    border-radius: 10px;
}

.audit-text {
    flex: 1.2;
}

.audit-text h2 {
    font-size: 32px;
    color: #0b3d2e;
    margin-bottom: 15px;
}

.audit-text h3 {
    color: #0db60d;
    margin: 20px 0 10px;
}

.audit-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.audit-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.audit-text li {
    font-size: 18px;
    line-height: 1.6;
}

/* ==================================
   CONTACT BAR
================================== */
.black-contact-bar {
    background: #000;
    color: #ffffff;
    padding: 35px 40px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 17px;
}

.top-contact-section{
    margin:0;
    padding:0;
}

.black-contact-bar{
    background:#000;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 20px;
    font-size:14px;
}

.social-left,
.contact-right{
    display:flex;
    gap:15px;
    align-items:center;
}

.black-contact-bar a,
.black-contact-bar span{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:6px;
}

/* REMOVE WHITE GAP BELOW BAR */
body{
    margin:0;
    padding:0;
}

.footer {
    background: #0b3d2e;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}

/* ==================================
   RESPONSIVE
================================== */
@media (max-width: 900px) {

    .audit-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .audit-text ul {
        text-align: left;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}