* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    width: 100%;
    padding: 6px 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    font-size:14px;
}

.logo img {
    height: 50px;
    margin-left: 27%;
}

/* NAV MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    font-size:14px;

}

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #cc6300;
    transition: color .18s ease;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease 0.15s,
        visibility 0.2s ease 0.15s;

    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #111;
    text-decoration: none;
}
/* Show on hover */
.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition-delay: 0s;

    
}



.dropdown:hover .dropdown-menu {
    transition-delay: 0s;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #111;
}

.dropdown-menu li:hover {
    background: #f3f3f3;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* PARTNER BUTTON */
.partner-btn {
    margin-right: 5%;
    background: #282626;
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
}

.partner-btn:hover {
    background: #cc6300;
}

/* Hide mobile button on desktop */
.partner-btn-mobile {
    display: none;
}

/* HAMBURGER */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* RESPONSIVE */
@media (max-width: 850px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
    }

    .partner-desktop {
        display: none;
    }

    .partner-btn-mobile {
        display: block;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.about-hero {
    position: relative;
    height: 450px;
    background: url("../mb-refinery/img-17.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: left;
    color: #fff;
    width: 100%;
}

.about-container {
    width: 80%;
    margin: auto;

}


/* Breadcrumb */
.breadcrumb {
    position: absolute;
    top: 35px;
    left: 10%;
    font-size: 14px;
    z-index: 2;
}

.breadcrumb a {
    color: #cc6300;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
    color: #000;
}

/* Hero text */
.hero-content {
    position: relative;
    text-align: left;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
   
}

.hero-content p {
    font-size: 16px;
    line-height: 22px;
    opacity: 0.9;
    color:#cc6300;
}
.about-us-section {
    padding: 90px 20px;
    background: #ffffff;
}

.about-us-container {
    max-width: 900px;
    margin: auto;
    color: #444;
}

.about-us-container h1 {
    font-size: 36px;
    color: #cc6300;
    text-align: center;
}

.about-us-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #555;
}
.our-story-section {
display: flex;

justify-content: center;
}

/* 🔑 Inline image styling */
.about-inline-img {
    
    height: 250px;
    object-fit: cover;
    float: left;
    margin: 5px 25px 20px 0;
    border-radius: 10px;

}

.about-inline-img {
    
    height: 250px;
    object-fit: cover;
    float: left;
    margin: 5px 25px 20px 0;
    border-radius: 10px;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-inline-img:hover {
    transform: scale(1.08) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    

}
.about-us-container h3 {
    font-size: 22px;
    margin: 30px 0 12px;
    color:#555;
    text-align: left;
}

.about-us-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: justify;
    color: #111;
}

.about-us-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-us-container ul li {
    margin-bottom: 10px;
}

.about-highlight {
    font-weight: 600;
    color: #222;
    margin-top: 30px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .about-inline-img {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }
}


/* Mobile fix */
@media (max-width: 768px) {
    .history-inline-img {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }
}

.hse-section {
    background: #f7f9fa;
    padding: 80px 20px;
    color: #333;
    font-family: Arial, sans-serif;
}

.hse-section .container {
    max-width: 900px;
    margin: auto;
}

.hse-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #cc6300;
    text-align: center;
}

.hse-section h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #111;
}

.hse-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.hse-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.hse-section ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.footer {
  background-image: url(../mb-refinery/img-14.jpg);
  background-size: cover;
  color: #fff;
  padding: 85px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  height:400px ;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.footer-text {
 
  margin-bottom: 20px;
  opacity: 0.9;
  
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  line-height: 50px;
}

.footer-social a:hover {
  color: #f4b400;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
 line-height: 30px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f4b400;
}

.footer-address {
  line-height: 1.6;
  margin-top: 10px;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
  padding-left: 5%;
}


