body {
    font-family: 'Roboto', sans-serif;
    color: #333; /* Adjust text color to make it more readable */
    line-height: 1.6; /* Improve readability by adding space between lines */
  }
  
  /* Apply Lora to headings (h1, h2, etc.) */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #000; /* Ensure headings stand out */
    font-weight: 700; /* Make headings bold */
  }
body, html {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}
* {
    max-width: 100%;
    box-sizing: border-box;
}


/* ===== Header Section ===== */
/*
.header {
    background-color: #3d4654;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
*/
.header{
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    align-items: center; /* Ensures vertical alignment of items */
    justify-content: space-between; /* Keeps logo and navbar at opposite ends */
    position: absolute; /* Layer above the video */
    width: 100%;
    z-index: 10; /* Keeps it above the video */
    padding: 10px 20px;
}
/* New: Group logo and navbar together */
.logo-nav {
    display: flex;
    align-items: center;
}

/* Logo */
.header img {
    max-height: 50px;
    height: auto;
    margin-right: 20px; /* Add spacing between logo and nav */
}

/* Navigation */
.navbar {
    display: flex;
}

.navbar a {
    font-family: 'Roboto', sans-serif;
    color: #F0F0F0;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

.navbar a:hover {
    color: #1ab555;
    text-decoration: underline;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher .flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.language-switcher .flag:hover {
    transform: scale(1.1);
}


/* ===== Hero Section ===== */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.hero h1 {
    font-family: 'Lora', serif;
    color: white;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Enhanced shadow for better readability */
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin: 10px 0;
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Enhanced shadow for better readability */
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

  
/* ===== Learn More Button ===== */
.learn-more {
    display: inline-block;
    color: 1A3553;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px; /* Rounded corners */
    margin-top: 20px;
}

/* ===== Photo Section ===== */
.photo-section {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}
.photo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
.photo-card {
    position: relative;
    width: 400px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-grow: 0;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.learn-more-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.photo-overlay h3 {
    font-size: 1.5rem;
    text-align: center;
    color: white; /* Ensure the heading text inside the overlay is white */
}


.photo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #013076;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}
/* Add initial animation state for images */
.photo-card {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Scroll Animation - Reveal Elements */
.reveal {
    opacity: 1 !important;
    transform: translateX(0) !important;
}


/* ===== Trust and Delivery Section ===== */
.trust-delivery {
    background-color: #d9e2da; /* Light background color */
    padding: 40px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.trust-delivery h2 {
    font-family: 'Lora', serif; /* Use Lora for a more professional and elegant feel for the heading */
    font-size: 2.5rem;
    color: #333; /* Dark color for heading */
    margin-bottom: 20px;
}

.trust-delivery p {
    font-size: 1.2rem;
    color: #555; /* Slightly lighter text color for readability */
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-delivery p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .trust-delivery h2 {
        font-size: 2rem;
    }

    .trust-delivery p {
        font-size: 1rem;
    }
}

/* ===== ISO Certification Section ===== */
.iso-certification {
    background-color: #d9e2da;
    padding: 40px 0;
    text-align: center;
}

.iso-container {
    position: relative;
    display: inline-block;
}

.iso-link {
    display: inline-block;
    position: relative;
}

.iso-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.iso-image:hover {
    transform: scale(1.05);
}

.iso-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 59, 50, 0.6); /* Dark green tint */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.plus-sign {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.iso-image {
    width: 300px;
    height: auto;
    object-fit: cover;
    background-color: transparent;
    mix-blend-mode: multiply;
}

/* ===== Footer Section ===== */
.footer {
    background-color: #222; /* Dark background for the footer */
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-family: 'Lora', serif; /* Elegant font for the logo */
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 1rem;
    color: #f1f5f2;
}

.footer-contact p {
    font-size: 1.1rem;
    color: #f1f5f2;
    margin: 5px 0;
}

.footer-contact a {
    color: #377968; 
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline; /* Underline on hover for better user experience */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Spacing between icons */
}

.social-icons a {
  color: #377968;
  font-size: 35px; /* Icon size */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row; /* Arrange content horizontally for larger screens */
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-contact {
        text-align: right;
    }
}


.hero-image {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero video {
        display: none;
    }

    .hero-image {
        display: block;
    }
}
