/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}


h1, h2, h3 {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #000000, #9aaca9);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo img {
    height: 120px;
    margin-top: -30px;
}

.logo {height: 50px;}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.nav-links li a:hover {
    color: #f17420; /* Changes text color on hover */
    transform: scale(1.1); /* Slightly enlarges the text */
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #f17420; /* Underline color */
    transition: width 0.3s ease, left 0.3s ease;
    z-index: 0;
}

.nav-links li a:hover::before {
    width: 100%; /* Expands underline */
    left: 0; /* Aligns underline with the text */
}


/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flags img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s;
}

.flags img:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container input {
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    outline: none;
    font-size: 16px;
    transition: width 0.3s ease;
    width: 250px;
    background: #fff;
    color: #333;
}

.search-container input:focus {
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.search-container i {
    position: absolute;
    right: 10px;
    color: #9d412a;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 70px;
        right: 0;
        width: 200px;
        height: calc(100vh - 70px);
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-right {
        flex-direction: column;
        gap: 10px;
    }

    .search-container input {
        width: 100px;
    }

    .search-container input:focus {
        width: 150px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('img/h3.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
}

.primary-btn {
    background: #b67429;
    color: #fff;
}

.primary-btn:hover {
    background: #9d6f2a;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #a56028;
    transform: translateY(-3px);
}

/* Hero Section */
.hero4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('img/hero4-bg.jpg') no-repeat center/cover;
    color: #fff;
    text-align: left;
}

.hero4-text {
    flex: 1;
    margin-right: 20px;
    animation: fadeInLeft 1.2s ease-out;
}

.hero4-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.container10 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.what-we-offer {
    display: flex;
    padding: 50px;
    position: relative;
  }
  
  /* ... (keep the previous content) */
  
  /* .offer-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
  } */
  
  .offer-text {
    flex: 1;
    text-align: left;
  }
  
  .offer-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    /* border: 10px solid rgba(0, 0, 0, 0.562); */
    width: 50%;
  }
  
  .what-we-offer h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .what-we-offer h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .what-we-offer p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
.export-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.export-content img {
    width: 100%;
    max-width: 100%;
}

.export-content div {
    width: 80%;
    max-width: 100%;
    margin-right: 10px;
}

.export-content h2 {
    font-size: 2em;
}

.export-content p {
    font-size: 2em;
}

.container11 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.specifications-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.specification {
    margin-left: 100px;
    width: 45%;
    max-width: 500px;
    line-height: 2.5;
}

.specification img {
    width: 100%;
    height: auto;
}


.products-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.products-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.products-text {
    flex: 1;
    padding-right: 20px;
}

.products-text ul {
    padding-left: 20px;
}

.products-text ul li {
    margin-bottom: 10px;
}

.products-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.products-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


#diesel-section {
    width: 80%;
    margin: auto;
    font-family: Arial, sans-serif;
}

#diesel-section h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
}

#diesel-section p {
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.6;
}


#gasoil-section {
    margin-bottom: 50px;
    width: 80%;
    margin: auto;
    font-family: Arial, sans-serif;
}

#gasoil-section h1 {
    margin-top: 50px;
    text-align: center;
    color: #333;
}

#gasoil-section table {
    width: 100%;
    margin-top: 2em;
    border-collapse: collapse;
}

#gasoil-section th, #gasoil-section td {
    padding: 1em;
    border: 1px solid #ccc;
    text-align: center;
}

#gasoil-section p {
    margin-top: 10px;
    text-align: left;
    line-height: 2.0;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #111, #222);
    color: #fff;
    padding: 60px 20px;
    overflow: hidden;
    z-index: 1;
}

/* Layered Background Shapes */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(42, 157, 143, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    z-index: 0;
}

/* Diagonal Separator */
.footer::before,
.footer::after {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(42, 157, 143, 0.2));
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #9d412a;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ccc;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #e63946;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #9d412a;
}

/* Social Media Links */
.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: #fff;
    font-size: 20px;
    background: #9d412a;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

.social-media a:hover {
    transform: scale(1.2);
    background: #e63946;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-bottom: -30px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}