/* Define Color Palette */
:root {
    --dark-green: #1A4D2E; /* Primary */
    --teal: #4F9D9A;       /* Secondary */
    --amber: #FFBF00;      /* Accent / CTA */
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-text: #333333;
}

/* Basic Reset & Body Styling */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Example font */
    line-height: 1.6;
    color: var(--dark-text);
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--teal);
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: var(--dark-green);
}

/* Ensure the map container has a defined height */
#world-map-section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #map-container {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
svg {
    width: 100%;
    height: 100%;
    display: block;
}
.country {
    fill: #1A4D2E;
    stroke: #1A4D2E;
    stroke-width: 0.5px;
}
.country:hover {
    fill: #4F9D9A;
    stroke: #1A4D2E;
    cursor: pointer;
}
.city-pin {
fill: #FFBF00;
stroke: white;
stroke-width: 1px;
r: 20;
animation: pulse 1.5s infinite ease-in-out;
}

/* Top Bar */
.top-bar {
    background-color: var(--teal);
    color: var(--white);
    padding: 5px 0;
    font-size: 0.9em;
    text-align: right; /* Simple alignment */
}

.top-bar a {
    color: var(--white);
    margin-left: 15px;
}
.top-bar a:hover {
    text-decoration: underline;
}


/* Header */
.main-header {
    background-color: var(--white);
    color: var(--dark-green);
    padding: 15px 0;
    position: sticky; /* Makes header stick on scroll */
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height:100px; /* Adjust as needed */
    display: block;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--dark-green);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.main-nav ul li a:hover {
    color: var(--teal);
    text-decoration: none;
}

/* Call to Action Button Styling */
.cta-button {
    background-color: var(--amber);
    color: var(--dark-text); /* Darker text on Amber for contrast */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block; /* Make it behave like a block but flow inline */
    text-align: center;
}

.cta-button:hover {
    background-color: #e6a100; /* Darker amber on hover */
    color: var(--dark-text);
    text-decoration: none;
}

.header-cta {
    margin-left: 20px; /* Space it from the nav */
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
  }
  
  .dropdown-content a:hover {
    background-color: #f0f0f0;
    color: var(--teal);
  }
  
  .dropdown-toggle {
      color: var(--white);
      font-weight: bold;
      text-transform: uppercase;
      font-size: 0.9em;
      cursor: pointer;
      display: inline-block;
      padding: 0;
  }

/* Hero Section */
.hero-section {
    /* Replace with your actual background image */
    background: url('imgs/hero-background.jpeg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero-section-seafreight {
    /* Replace with your actual background image */
    background: url('imgs/hero-seafreight.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section-airfreight {
    /* Replace with your actual background image */
    background: url('imgs/hero-airfreight.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section-custom {
    /* Replace with your actual background image */
    background: url('imgs/hero-custom.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section-projectcargo {
    /* Replace with your actual background image */
    background: url('imgs/hero-projectcargo.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}


.hero-section-warehousing {
    /* Replace with your actual background image */
    background: url('imgs/hero-warehousing.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}


.hero-section-landfreight {
    /* Replace with your actual background image */
    background: url('imgs/hero-landfreight.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section-aboutus {
    /* Replace with your actual background image */
    background: url('imgs/hero-aboutus.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section-careers {
    /* Replace with your actual background image */
    background: url('imgs/hero-careers.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.7); /* Dark Green overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3em; /* Adjust as needed */
    margin-bottom: 15px;
    color: var(--white); /* Override default heading color */
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-cta {
    font-size: 1.1em;
    padding: 15px 30px;
}

        /* Contact Email */
        .contact-email {
            display: flexbox;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 20px;
            padding: 20px;
            background: #f0f0f0;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .contact-email div {
            padding: 15px;
            background: white;
            border-radius: 8px;
        }
/*Global presence Overview*/

.global-presence h2 {
    margin-bottom: 30px;
    font-size: 2.2em;
}

/*Clients Overview*/
.clients-carousel {
    padding: 30px 0;
    background-color: #f8f9fa; /* Or any background you prefer */
    text-align: center;
}


.clients-carousel h2 {
    margin-bottom: 30px;
    color: var(--dark-green);
    font-size: 2.2em;
}


.carousel-inner {
    display: flex;
    align-items: center;
}


.carousel-logo-row {
    display: flex;
    justify-content: space-around; /* Distribute logos evenly */
    align-items: center;
    width: 100%;
    height: 150px; /* Adjust as needed */
}


.carousel-logo-row img {
    max-height: 80%; /* Adjust logo height */
    max-width: 20%;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease-in-out;
}


.carousel-logo-row img:hover {
    opacity: 1;
}


.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Adjust control width */
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--dark-text); /* Control icon color */
    border-radius: 50%;
    padding: 10px;
}

/* About us Overview */
.aboutus-overview {
    padding: 30px 0;
    background-color: var(--light-gray);
    text-align: center;
    
}

.aboutus-overview h2 {
    margin-bottom: 40px;
    font-size: 2.2em;
}



/* Services Overview */
.services-overview {
    padding-bottom: 30px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.services-overview h2 {
    margin-bottom: 40px;
    font-size: 2.2em;
}

.service-items {
    display: flex;
    justify-content: space-around; /* Or space-between */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Space between items */
}

.service-item {
    flex-basis: 22%; /* Roughly 4 items per row, adjust as needed */
    background-color: var(--white);
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px; /* Minimum width before wrapping */
}

.service-icon {
    height: 150px; /* Adjust icon size */
    width:250px;
    margin-bottom: 1px;
    color: var(--teal); /* If using SVG icons that accept color */
}

.service-item h3 {
    margin-bottom: 10px;
    color: var(--dark-green);
}

.learn-more {
    color: var(--teal);
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.service-menu-column {
    flex: 1 1 250px;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-menu-column h3 {
    margin-top: 0;
    color: var(--dark-green);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.service-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu-list li {
    margin-bottom: 12px;
}

.service-menu-list a {
    text-decoration: none;
    color: var(--teal);
    font-weight: 600;
    transition: color 0.3s;
}

.service-menu-list a:hover {
    color: var(--amber);
}
        /* Specific styles for this layout */
        .service-page-container {
            display: flex;
            flex-wrap: wrap;
            /* Allow wrapping for responsiveness */
            gap: 30px;
            /* Space between columns */
            padding: 40px 20px;
            /* Padding around the container */
            max-width: 1400px;
            /* Max width for larger screens */
            margin: 20px auto;
            /* Center the container */
        }

        .image-column {
            flex: 1 1 250px;
            /* Flex basis 250px, can grow/shrink */
            min-width: 250px;
        }

        .image-column img {
            width: 80%;
            height: auto;
            display: block;
            border-radius: 8px;
            /* Optional: rounded corners */
            object-fit: contain;
            /* Ensures image covers the area */
            max-height: 600px;
            /* Optional: limit image height */
        }

        .content-column {
            flex: 2 1 500px;
            /* Takes up more space, basis 500px */
            min-width: 300px;
        }

        .form-column {
            flex: 1 1 300px;
            /* Flex basis 300px */
            min-width: 300px;
            background-color: #f0f7f7;
            /* Very light teal background */
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Form specific styles */
        .quote-form h3 {
            margin-top: 0;
            color: var(--dark-green);
            text-align: center;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--dark-text);
            font-size: 0.9em;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            /* Include padding in width */
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-submit-button {
            background-color: var(--amber);
            color: var(--dark-text);
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: block;
            width: 100%;
            font-size: 1em;
            margin-top: 10px;
        }

        .form-submit-button:hover {
            background-color: #e6a100;
            /* Darker amber */
        }

        /* Content Column Styles */
        .content-column h2 {
            color: var(--dark-green);
            margin-top: 0;
        }

        .content-column h3 {
            color: var(--teal);
            /* Subheadings in Teal */
            margin-top: 25px;
            margin-bottom: 10px;
        }

        .content-column ul {
            list-style: disc;
            margin-left: 20px;
            padding-left: 10px;
        }

        .content-column ul li {
            margin-bottom: 8px;
        }

        .content-column .cta-button-service {
            /* Specific class for buttons here */
            background-color: var(--amber);
            color: var(--dark-text);
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            margin-right: 10px;
            margin-top: 15px;
        }

        .content-column .cta-button-service:hover {
            background-color: #e6a100;
        }

        .content-column .cta-link-service {
            /* Specific class for links */
            color: var(--teal);
            font-weight: bold;
            text-decoration: underline;
            margin-top: 15px;
            display: inline-block;
        }

        /* Basic Responsiveness */
        @media (max-width: 992px) {
            .service-page-container {
                flex-direction: column;
            }

            /* Image could take full width or stay constrained */
            .image-column {
                max-width: 600px;
                /* Example constraint */
                margin: 0 auto 30px auto;
                /* Center image when stacked */
            }

            .form-column {
                order: 3;
                /* Move form to the bottom if needed */
            }
        }

        @media (max-width: 768px) {
            .image-column {
                max-width: 100%;
                /* Full width on small mobile */
            }
        }

/* Custom styles for the 2-column layout */
.two-column-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}


.left-menu {
    flex: 1;
    min-width: 200px;
}

.left-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-menu ul li {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.left-menu ul li:hover {
    background-color: #f0f0f0;
    color: var(--teal);
}

.left-menu ul li.active {
    background-color: var(--teal);
    color: var(--white);
}

.left-menu ul li a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}


.right-content {
    flex: 3;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    
}

@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }
    .left-menu {
        width: 100%;
        margin-bottom: 20px;
    }
    .right-content {
        width: 100%;
    }
}

/* CTA Block */
.cta-block {
    background-color: var(--teal);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.cta-block h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2em;
}
.cta-block p {
    margin-bottom: 25px;
}
.cta-block-button {
     font-size: 1.1em;
     padding: 12px 25px;
}

.two-column-layout-aboutus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center; /* Vertically center the columns */
    justify-content: center;
  }

  .aboutus-left-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    justify-content: center;
    text-align: left; /* Left align the text */  
  }
  .aboutus-right-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left; /* Left align the text */  
    justify-content: center;
  }
.two-column-layout-map {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center; /* Vertically center the columns */
  }



  .text-column {
    flex: 1;
    min-width: 300px;
    text-align: left; /* Left align the text */  
  }
  /*map*/
  .global-presence {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  #map-container {
    flex:1;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
  }
  svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .country {
    fill: #1A4D2E;
    stroke: #1A4D2E;
    stroke-width: 0.5px;
  }
  .country:hover {
    fill: #4F9D9A;
    cursor: pointer;
  }
  .location-pin {
    fill: #FFBF00;
    stroke-width: 1.5;
    animation: pulse 1.5s infinite ease-in-out;
  }
  @keyframes pulse {
    0% { r: 4; opacity: 0.8; }
    50% { r: 8; opacity: 0.3; }
    100% { r: 4; opacity: 0.8; }
  }

/* Footer */
.main-footer {
    background-color: var(--dark-green);
    color: var(--light-gray); /* Lighter text on dark background */
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--teal); /* Teal accent */
    padding-bottom: 5px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a, .footer-col p a {
    color: var(--light-gray);
}
.footer-col ul li a:hover, .footer-col p a:hover {
    color: var(--amber);
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px; /* Adjust as needed */
    margin-bottom: 15px;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
}

.social-icons li a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    transition: color 0.3s;
}

.social-icons li a:hover {
    color: #FFBF00;
}


/* Basic Responsiveness (Example) */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        align-items: center;
    }
    .main-nav ul {
        margin-top: 15px;
        flex-wrap: wrap; /* Allow nav items to wrap */
        justify-content: center;
    }
    .main-nav ul li {
        margin: 5px 10px;
    }
     .header-cta {
        margin-top: 15px;
    }
    .service-items {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        flex-basis: 80%; /* Take more width on smaller screens */
        margin-bottom: 20px;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    #map-container {
        max-width: 100%;
        /* Full width on smaller screens */
        height: 300px;
        /* Or adjust height for mobile */
        
    }
    .global-presence {
        flex-wrap:wrap;
    }
 
     .footer-grid {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }
    .footer-col h4 {
        display: block; /* Center heading */
        text-align: center;
    }
    

}
