/* Variables for easy color changes */
:root {
    --primary-color: #fb8500;
    /* Your specified orange color */
    --secondary-color: #023047;
    /* A deep blue for contrast */
    --text-color: #333;
    /* Standard text color */
    --light-bg: #f4f7f6;
    /* Light background color */
    --dark-bg: #023047;
    --white: #fff;
    --grey-text: #555;
}

/* Basic Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    /* Use Nunito Sans as primary font */
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    /* Prevent horizontal scroll issues with animations */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    /* Add padding to all sections */
}

h1,
h2,
h3 {
    font-family: 'Nunito', sans-serif;
    /* Use Nunito for headings */
    color: var(--secondary-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8em;
    text-align: center;
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
}

.section-title,
.section-title2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2,
.section-title2 h2 {
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background-color: #f57c00;
    /* Slightly darker shade on hover */
}

/* Header Styling */
header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    /* Reduce padding to make the navbar smaller */
    position: sticky;
    /* Make header sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure header is on top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.logo {
    font-size: 1.5em;
    /* Reduce logo font size */
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    /* Reduce space between navigation items */
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    /* Reduce font size for nav links */
    transition: color 0.3s ease;
    position: relative;
    /* Needed for underline effect */
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    /* Position below the text */
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2em;
    /* Reduce toggle button size */
    cursor: pointer;
    padding: 5px;
    /* Reduce padding for the toggle button */
}

/* Hero Section */
.hero {
    background: url('./images/3137882.jpg') no-repeat center center/cover;
    /* Replace with your background image */
    color: var(--white);
    text-align: center;
    padding: 150px 0;
    position: relative;
    z-index: 99;
    /* Ensure hero is above other sections */
    opacity: 1;
    /* Set initial opacity */
    transition: opacity 0.5s ease;
    /* Smooth transition for opacity */
}

/* #home{
    
} */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); Example: 50% dark overlay */
    z-index: 0;
    /* Send overlay behind content */
    opacity: 0.9;
    /* Adjust opacity for the overlay */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    /* Gradient overlay */


}

.hero-container {
    position: relative;
    /* Bring content above overlay */
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about,
.about2 {
    background-color: var(--light-bg);
}

.about-content,
.about-content2 {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping */
}

.about-text,
.about-text2 {
    flex: 1;
    /* Take up available space */
    min-width: 300px;
    /* Prevent shrinking too much */
}

.about-image,
.about-image2 {
    flex: 1;
    min-width: 300px;
    text-align: center;
    /* Center image/content */

}

.about-image2 {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--white);
}

.about-image2 h4 {
    color: var(--white);
}

.about-image2 p {
    color: var(--white);
}

.about-image2:hover {
    transform: translateY(-5px);
    /* Lift card on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#text1,
#text2,
#text3 {
    /* font-size: 1.2em; */
    margin-bottom: 10px;
    color: var(--secondary-color);
    border: #555 0.2px;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* font-family: 'Poppins', sans-serif; */

}
#text1 h3,
#text2 h3,
#text3 h3{
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--dark-bg);
     
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-weight: bold;
}

.services-list li p {
    font-weight: normal;
    margin-top: 5px;
    color: var(--grey-text);
}


.services-list li::before {
    content: '✓';
    /* Checkmark icon */
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.about-image2 h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.about-image2 p {
    color: var(--white);
    margin-bottom: 30px;
}


.btn1 {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
}

.btn1:hover {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: var(--white);
    color: var(--primary-color);
    /* border: 2px solid var(--primary-color); */
    /* Change border color on hover */
}


/* Partnering Section */
.partnering {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.Partner-tile {
    max-width: 700px;
}

.Partner-tile h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 2em;
}

.Partner-tile span {
    font-size: 1.1em;
}

.btn-partner {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-partner:hover {
    background-color: var(--light-bg);
    color: #d67400;
}


/* Services Section (Expertise) */
.services{
    margin-top: 120px;
    background-color: #edf2fb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid */
    gap: 30px;
}

.service-card {
    background-color: #0a9396;
    color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    /* Lift card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-icon img {
    width: 3em;
    height: auto;
    vertical-align: middle;
    /* Align image nicely */
}


.service-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.4em;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-size: 0.95em;
}

.service-card ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.service-card ul li::before {
    content: '-';
    /* Simple dash or could use a small icon */
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}


/* Team Section (currently commented out, but styling provided) */
/*
.team {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
     transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.member-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.member-position {
    font-size: 0.9em;
    color: var(--grey-text);
    margin-bottom: 10px;
}
*/


/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 2;
    /* Form takes more space */
    min-width: 300px;
}

.contact-info {
    flex: 1;
    /* Info takes less space */
    min-width: 250px;
    background-color:#e9ecef ;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.google-form {
    width: 100%;
    /* Make iframe responsive */
    height: 700px;
    /* Adjust height as needed */
    border-radius: 10px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    margin-bottom: 30px;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8em;
    color: var(--primary-color);
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--grey-text);
    font-size: 0.95em;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    margin-bottom: 20px;
    font-size: 1.6em;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    .hero {
        padding: 100px 0 80px;
        /* Reduce padding for smaller screens */
    }

    .hero h1 {
        font-size: 2.5em;
        /* Adjust font size */
    }

    .hero p {
        font-size: 1em;
        /* Adjust font size */
    }

    .header-container {
        flex-direction: row;
        /* Keep logo and toggle on one row */
        justify-content: space-between;
        padding: 0 15px;
        /* Add some horizontal padding */
    }

    #nav-toggle {
        display: block;
        /* Show the toggle button */
    }

    #nav-menu {
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: var(--secondary-color);
        /* Background for dropdown menu */
        position: absolute;
        top: 100%;
        /* Position below header */
        left: 0;
        right: 0;
        padding: 20px 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default, controlled by JS */
    }

    #nav-menu.show {
        display: flex;
        /* Show when 'show' class is added */
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        padding: 10px 0;
        /* Add padding for click area */
    }

    nav a::after {
        left: 50%;
        /* Center the underline */
        transform: translateX(-50%);
    }

    .about-content,
    .about-content2,
    .contact-content {
        flex-direction: column;
        /* Stack elements */
        gap: 30px;
    }

    .about-image,
    .about-image2,
    .contact-form,
    .contact-info {
        min-width: unset;
        /* Remove minimum width constraint */
        width: 100%;
        /* Allow them to take full width */
    }

    .partner-container {
        flex-direction: column;
        gap: 20px;
    }

    .Partner-tile h3 {
        font-size: 1.6em;
    }

    .Partner-tile span {
        font-size: 1em;
    }

    .google-form {
        height: 600px;
        /* Adjust form height on smaller screens */
    }

    .footer-links {
        flex-direction: column;
        /* Stack links vertically */
        gap: 10px;
        /* Add spacing between links */
    }

    .social-icons {
        margin-bottom: 20px;
        /* Add spacing below social icons */
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .contact-content {
        flex-direction: column;
        /* Stack elements vertically */
        gap: 30px;
        /* Add spacing between stacked elements */
    }

    .contact-form,
    .contact-info {
        width: 100%;
        /* Full width for stacked elements */
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* Single column layout */
        gap: 20px;
        /* Reduce gap between cards */
    }

    .service-card {
        padding: 20px;
        /* Reduce padding inside cards */
    }

    .service-card h3 {
        font-size: 1.2em;
        /* Adjust font size */
    }

    .service-card ul {
        font-size: 0.9em;
        /* Adjust font size */
    }
}

/* Optional: Add a subtle hover effect to service icons */
.service-icon {
    transition: transform 0.3s ease;
    display: inline-block;
    /* Ensure icon is inline-block for scaling */
    margin-bottom: 15px;
    /* Space between icon and text */
    color: var(--primary-color);
    /* Icon color */
    font-size: 3em;
    /* Icon size, adjust as needed */

}

.service-card:hover .service-icon {
    transform: scale(1.1);
    /* Slightly enlarge icon on card hover */
}

/* Add these styles to your existing sample2_trial.css file */

/* Careers Page Specific Styles */
.careers-page {
    padding: 80px 0; /* Match padding of other sections */
    background-color: var(--light-bg); /* Use a light background */
}

.job-vacancy {
    background-color: var(--white); /* White background for job cards */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px; /* Space between job listings */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    /* border-left: 5px solid var(--primary-color); Accent color on the left */
    transition: transform 0.3s ease; /* Add a subtle hover effect */
}

.job-vacancy:hover {
    transform: translateY(-5px); /* Lift the card slightly on hover */
}


.job-vacancy h2 {
    color: var(--secondary-color); /* Use secondary color for job title */
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.job-vacancy ul {
    list-style: none; /* Remove default list bullets */
    padding: 0;
    margin-bottom: 20px;
}

.job-vacancy ul li {
    margin-bottom: 12px; /* Space between list items */
    padding-left: 20px; /* Space for custom bullet */
    position: relative;
    color: var(--grey-text);
    font-size: 1.05em;
    line-height: 1.5;
}

/* Custom bullet point for list items */
.job-vacancy ul li::before {
    content: '\2022'; /* Unicode character for a bullet */
    /* color: var(--primary-color); Bullet color */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.job-vacancy span b {
    color: var(--secondary-color); /* Style for the "Apply Now" label */
}

.job-vacancy a {
    /* color: var(--primary-color); Link color */
    /* text-decoration: none; Remove underline by default */
    font-weight: bold;
    transition: text-decoration 0.3s ease;
}

.job-vacancy a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Add some padding to the footer on this page if needed, though the global padding should be fine */
/* footer {
    margin-top: 50px;
} */


/* Responsive adjustments if necessary (mostly covered by existing styles) */
@media (max-width: 768px) {
    .job-vacancy {
        padding: 20px; /* Adjust padding on smaller screens */
        margin-bottom: 20px;
    }

    .job-vacancy h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .job-vacancy ul li {
        font-size: 1em;
        margin-bottom: 10px;
    }
}
.footer_end {
    border-top: 1px solid var(--white);
    padding: 10px 0;
    margin-bottom: auto;
    margin:10px 20px 0 20px;
    font-size: 1.2em;
    color: var(--white);
}