/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #daccb3; /* Updated background color */
    color: #fff; /* Change text color to white for better contrast */
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for theme change */
    scroll-behavior: smooth; /* Smooth scrolling */
    overflow-x: hidden;
}

header {
    background-color: #073b34; /* Header background */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%; /* Full width */
    z-index: 1000; /* Ensure it stays above other content */
    position: sticky; /* Ensure it overlays content */
    font-family: 'Roboto', sans-serif; /* Use Roboto font for header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background-color 0.3s; /* Smooth transition for background */
    flex-wrap: nowrap; /* Prevents items from wrapping */
}

/* Make the logo bigger without affecting layout */
.logo {
    width: 240px; /* Set the desired width for the logo */
    height: auto; /* Maintain aspect ratio */
    flex-shrink: 0; /* Prevent logo from shrinking */
    margin-top: -10px; /* Adjust the position to keep the header height consistent */
}

/* Ensure the nav stays aligned to the right */
nav {
    display: flex;
    justify-content: flex-end; /* Align nav items to the right */
    align-items: center; /* Keep them vertically centered */
    flex-grow: 1; /* Allows nav to fill remaining space */
    gap: 20px; /* Adds spacing between menu items */
}

nav ul {
    list-style: none;
    padding: 0;
    position: relative; /* Position relative for the sliding line */
    display: flex; /* Use flexbox for horizontal alignment */
}

nav ul li {
    margin: 0 15px;
    position: relative; /* Position relative for the dropdown */
}

nav ul li a {
    color: #fff; /* Link color */
    text-decoration: none;
    padding: 10px; /* Adjust padding for better click area */
    transition: color 0.3s ease; /* Smooth transition for color */
    font-family: 'Open Sans', sans-serif; /* Change font to Open Sans */
}

/* Keep the text color white on hover */
nav ul li a:hover {
    color: #fff; /* Keep text color white on hover */
    /* Remove background color */
}

/* Sliding line effect */
nav ul li::after {
    content: '';
    position: absolute;
    width: 0; /* Start with no width */
    height: 2px; /* Height of the sliding line */
    background: #FFC107; /* Color of the sliding line */
    bottom: -5px; /* Position below the text */
    left: 50%; /* Start from the center */
    transition: width 0.3s ease, left 0.3s ease; /* Animation for width and position */
}

nav ul li:hover::after {
    width: 100%; /* Full width on hover */
    left: 0; /* Align to the left */
}

#theme-toggle {
    color: #FFD700; /* Icon color */
    font-size: 1.5em; /* Icon size */
    cursor: pointer;
    margin-left: 20px; /* Space between nav and icon */
    transition: color 0.3s; /* Smooth transition */
}

#theme-toggle:hover {
    color: #FFC107; /* Icon hover color */
}

/* Hero Section Styles */
.hero {
    display: flex; /* Use flexbox for layout */
    height: 100vh; /* Full viewport height */
    background-color: #daccb3; /* Dark green background */
    position: relative; /* Position relative for overlapping */
}

.hero-content {
    position: absolute; /* Position absolutely to overlay on the image */
    top: 30%; /* Adjust vertical position */
    left: 5%; /* Adjust horizontal position */
    z-index: 1; /* Ensure content is above the image */
    text-align: left; /* Align text to the left */
}

.hero-content h2 {
    font-size: 6em; /* Increase heading size */
    line-height: 1; /* Adjust line height for stacking */
    margin-bottom: 20px; /* Space below heading */
    text-transform: uppercase; /* Uppercase text */
    color: #073b34; /* Set to the desired orange color */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for text */
}

.hero-content p {
    font-size: 1.5em; /* Subtitle size */
    margin-bottom: 30px; /* Space below subtitle */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for text */
    color: #000000
}

.more-link {
    color: #073b34; /* Warm color for text */
    font-size: 1.5em; /* Increase font size */
    text-decoration: none; /* Remove underline */
    position: relative; /* Position relative for the pseudo-element */
    padding-bottom: 5px; /* Add space for the line */
    transition: color 0.3s ease; /* Smooth transition for color */
}

.more-link::after {
    content: ''; /* Create a pseudo-element for the underline */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align to the left */
    bottom: 0; /* Position at the bottom */
    width: 100%; /* Full width for the underline */
    height: 2px; /* Height of the underline */
    background-color: #FFC107; /* Color for the underline */
    transform: scaleX(0); /* Start with no width */
    transition: transform 0.3s ease; /* Smooth transition for the animation */
}

.more-link:hover::after {
    transform: scaleX(1); /* Expand to full width on hover */
}

.more-link:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.hero-image {
    flex: 1; /* Take up available space */
    overflow: hidden; /* Hide overflow */
    display: flex; /* Use flexbox for layout */
    justify-content: flex-end; /* Align image to the right */
}

.hero-image img {
    width: auto; /* Maintain aspect ratio */
    height: 100%; /* Full height */
    object-fit: cover; /* Cover the area while maintaining aspect ratio */
    object-position: center; /* Center the image */
}


.additional-content {
    padding: 20px;
    text-align: center;
}

.notion-style-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.notion-card {
    background: #444; /* Dark background for notion cards */
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; /* Animation on hover */
}

.notion-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

footer {
    background: transparent; /* Transparent footer */
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    color: #fff; /* White text for footer */
}
h2 {
    font-size: 2em;
    margin: 20px 0;
}

p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero {
        height: auto; /* Allow height to adjust on smaller screens */
        flex-direction: column; /* Stack content vertically */
    }

    .hero-content {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .hero-content h2 {
        font-size: 2.5em; /* Adjust heading size */
    }

    .hero-content p {
        font-size: 1.2em; /* Adjust subtitle size */
    }

    
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Light Mode Styles */
body.light-mode {
    background-color: #f4f4f4; /* Light mode background */
    color: #333; /* Light mode text color */
}

header.light-mode {
    background: transparent; /* Ensure header is transparent in light mode */
}

footer.light-mode {
    background: #3c763d; /* Light mode footer */
}

nav ul li a.light-mode {
    color: #333; /* Dark text for links in light mode */
}

nav ul li a.light-mode:hover {
    color: #FFD700; /* Hover color in light mode */
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #333; /* Dark mode background */
    color: #f4f4f4; /* Dark mode text color */
}

.notion-card.dark-mode {
    background: #444; /* Dark background for notion cards in dark mode */
}

/* Advanced Features */
.testimonials blockquote {
    transition: transform 0.3s; /* Smooth transition */
}

.testimonials blockquote:hover {
    transform: scale(1.02); /* Slight lift effect on hover */
}

/* Additional Features */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFD700;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: none; /* Hidden by default */
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.back-to-top:hover {
    background: #FFC107; /* Hover color */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* For the translation button */
#translate-btn:hover + #language-dropdown {
    display: flex; /* Show dropdown when hovering over the button */
    flex-direction: column; /* Stack dropdown items vertically */
}

/* Additional sections styling */
main {
    background-color: #073b34; /* Darkish green background for main content */
    padding: 20px; /* Add padding to main content */
}

/* Why Choose Us Section Styles */
.why-choose-us {
    text-align: center; /* Center text */
    padding: 50px 20px; /* Add padding */
    background-color: #073b34; /* Light background color */
}

.why-choose-us h2 {
    font-size: 2.5em; /* Heading size */
    margin-bottom: 20px; /* Space below heading */
    color: #073b34; /* Change heading color */
}

.why-choose-us p {
    font-size: 1.2em; /* Subtitle size */
    margin-bottom: 40px; /* Space below subtitle */
    color: #ffffff; /* Change paragraph color if needed */
}

.card-container {
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: space-between; /* Space between cards */
    max-width: 1200px; /* Max width for the container */
    margin: 0 auto; /* Center the container */
    gap: 20px; /* Space between cards */
}

.card {
    background: #ffad5f; /* White background for cards */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Padding inside cards */
    flex: 1; /* Allow cards to grow equally */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.card h3 {
    font-size: 1.5em; /* Card title size */
    margin-bottom: 10px; /* Space below title */
}

.card p {
    font-size: 1em; /* Card description size */
    color: #ffffff; /* Description color */
}

/* Main Circle */
.main-circle {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border-radius: 50%; /* Circular shape */
    width: 450px; /* Increased width for main circle */
    height: 450px; /* Increased height for main circle */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content */
    justify-content: center; /* Center content */
    margin-right: 40px; /* Space between main circle and sub circles */
    backdrop-filter: blur(15px); /* Blur effect for background */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}

/* Main Circle Text */
.main-circle h2 {
    font-size: 3em; /* Larger heading */
    text-transform: uppercase; /* Uppercase text */
    font-weight: bold; /* Bold text */
    margin-bottom: 10px; /* Space below heading */
    color: #FFD700; /* Gold color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
}

.main-circle h2 span {
    font-weight: normal; /* Lighter weight for 'CHOOSE US' */
    color: rgba(255, 255, 255, 0.8); /* Lighter white color */
}

/* Main Circle Paragraphs */
.main-circle p {
    text-align: center; /* Center text */
    margin: 5px 10px; /* Margin for spacing */
    font-size: 1.2em; /* Increased font size */
}

/* Sub Circles */
.sub-circles {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around; /* Space cards evenly */
    align-items: flex-start; /* Align cards to the top */
    width: 100%; /* Full width */
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    border-radius: 15px; /* Rounded corners */
    padding: 25px; /* Increased padding for card */
    width: 200px; /* Increased width for cards */
    height: 200px; /* Increased height for cards */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
    display: flex; /* Use flexbox for card content */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content */
    justify-content: center; /* Center content */
    margin: 20px; /* Space between cards */
}

/* Card Hover Effect */
.card:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

.card i {
    font-size: 3em; /* Increased icon size */
    margin-bottom: 10px; /* Space below icon */
    color: #FFD700; /* Gold color for icons */
}

.card h3 {
    font-size: 1.5em; /* Increased heading size */
    margin-bottom: 5px; /* Space below heading */
}

.card p {
    font-size: 1em; /* Increased paragraph size */
}

/* Responsive Design */
@media (max-width: 600px) {
    .main-circle {
        width: 80%; /* Full width for smaller screens */
        height: auto; /* Allow height to adjust */
    }

    .sub-circles {
        width: 100%; /* Full width for smaller screens */
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards */
    }

    .card {
        width: 80%; /* Full width for cards on smaller screens */
        height: auto; /* Allow height to adjust */
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0; /* Start fully transparent */
        transform: translateY(20px); /* Start slightly lower */
    }
    to {
        opacity: 1; /* End fully opaque */
        transform: translateY(0); /* End at original position */
    }
}

/* Slide-in Animation for the hero text */
@keyframes slideIn {
    from {
        opacity: 0; /* Start fully transparent */
        transform: translateX(-50px); /* Start from the left */
    }
    to {
        opacity: 1; /* End fully opaque */
        transform: translateX(0); /* End at original position */
    }
}

/* Apply animation to the content */
.why-choose-us .content {
    animation: fadeIn 1s ease-in-out; /* Apply fade-in animation */
}

/* Apply animation to any element with the fade-in class */
.fade-in {
    animation: fadeIn 1s ease-in-out; /* Apply fade-in animation */
}

/* Apply animation to the hero content */
.hero-content {
    animation: slideIn 1s ease-in-out; /* Apply slide-in animation */
}

/* Apply animation to the subtitle */
.hero-content p {
    animation: fadeIn 1s ease-in-out 0.5s forwards; /* Fade-in with delay */
    opacity: 0; /* Start fully transparent */
    transform: translateY(20px); /* Start slightly lower */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}

/* Dropdown Menu Styles */
nav ul li {
    position: relative; /* Position relative for the dropdown */
}

/* Remove or comment out this section if it exists */
nav ul li .dropdown {
    display: none; /* Hide dropdown by default */
}

nav ul li:hover .dropdown {
    display: block; /* Show dropdown on hover */
}

nav ul li .dropdown li {
    margin: 5px 0; /* Space between dropdown items */
}

nav ul li .dropdown li a {
    color: #fff; /* White text for dropdown items */
    padding: 5px 10px; /* Padding for dropdown items */
    display: block; /* Make the entire area clickable */
    transition: background 0.3s; /* Smooth transition for background */
}

nav ul li .dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1); /* Change background on hover */
}

/* Location Section Styles */
.location {
    background-color: #073b34; /* Match the dark green background */
    padding: 40px; /* Padding for the section */
    border-radius: 0px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    color: #f4f4f4; /* Light text color */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space items evenly */
    align-items: flex-start; /* Align items to the top */
    
}

.location-content {
    flex: 1; /* Allow text to take available space */
    max-width: 400px; /* Limit width for better readability */
}

.location-content h2 {
    font-size: 2.5em; /* Heading size */
    margin-bottom: 20px; /* Space below heading */
    color: #ffad5f; /* Gold color for heading */
}

.location-content p {
    font-size: 1.1em; /* Paragraph size */
    margin: 5px 0; /* Space between paragraphs */
}

/* Map Container */
.map-container {
    flex: 1; /* Allow map to take available space */
    margin-left: 20px; /* Space between text and map */
    border-radius: 10px; /* Rounded corners for the map */
    overflow: hidden; /* Hide overflow */
}

.map-container iframe {
    width: 100%; /* Full width for responsiveness */
    height: 400px; /* Fixed height for the map */
    border: 0; /* Remove border */
}

/* Responsive Design */
@media (max-width: 600px) {
    .location {
        flex-direction: column; /* Stack content vertically on small screens */
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .map-container {
        margin-left: 0; /* Remove left margin on small screens */
        margin-top: 20px; /* Add top margin for spacing */
    }
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}  

section {
    opacity: 0; /* Makes animations smoother */
    transition: opacity 0.5s ease-out;
}
/* If you have a specific heading for this section */
.why-choose-us h2 {
    color: #ffad5f; /* Set heading color to #073b34 */
}

.category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow {
    transition: transform 0.3s; /* Smooth transition for arrow */
}

/* Main Styles */
main {
    padding: 20px;
}

/* Main Styles */
main {
    padding: 20px;
}


.branding-identity {
    color: #ffad5f; /* Change the color of Branding Identity */
}

.ui-ux-design {
    color: #ffad5f; /* Change the color of UI/UX Design */
}

.illustration {
    color: #ffad5f; /* Change the color of Illustration */
}
/* About Section - Alternating Layout */
.about-section {
    padding: 80px 5%;
    background-color: #daccb3; /* Match your site's background */
}

.about-container {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space items evenly */
    gap: 50px; /* Space between text and image */
    margin-bottom: 60px; /* Space between sections */
}

.about-text {
    flex: 1; /* Allow text to take available space */
    text-align: left; /* Align text to the left */
}

.about-text h2 {
    font-size: 2.5em; /* Heading size */
    color: #073b34; /* Match your site's primary color */
    margin-bottom: 15px; /* Space below heading */
}

.about-text p {
    font-size: 1.2em; /* Paragraph size */
    color: #000000; /* Ensures readability */
    max-width: 600px; /* Limit width for better readability */
}

.about-image {
    flex: 1; /* Allow image to take available space */
    display: flex; /* Use flexbox for image alignment */
    justify-content: center; /* Center the image */
}

.about-image img {
    width: 100%; /* Makes the image full width */
    max-width: 800px; /* Increase max width to make images larger */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Rounded corners for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for images */
}

/* Reverse Layout for Alternating Sections */
.about-container.reverse {
    flex-direction: row-reverse; /* Reverse the order for alternating layout */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack content vertically on small screens */
        text-align: center; /* Center text on small screens */
    }

    .about-image {
        margin-bottom: 20px; /* Space below image */
    }
}
.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    background: #073b34;
    padding: 30px;
    border-radius: 10px;
}

.stat {
    text-align: center;
    color: #ffad5f;
}

.stat h2 {
    font-size: 2.5em;
}
.hero-video {
    flex: 1; /* Allows video to take its space */
    display: flex;
    justify-content: flex-end; /* Aligns video to the right */
    align-items: center; /* Keeps it aligned */
    width: 100%; /* Ensures it takes the full width */
}

.video-element {
    width: 100%; /* Makes the video full width */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
}

.tab {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    margin: 0 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab.active {
    color: #ffffff;
}

.tab.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -2px;
    left: 0;
}

.category-icons {
    display: flex;
    justify-content: center; /* Center the icons */
    gap: 50px; /* Space between icons */
    padding: 20px;
}

.category-option {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: transparent; /* Remove background */
    padding: 10px; /* Add some padding */
    border-radius: 5px; /* Optional: Rounded corners */
    box-shadow: none; /* Remove any shadow */
}

.category-option p {
    font-weight: bold;
    font-size: 1.2em; /* Adjust font size */
    color: #666; /* Text color */
    margin: 0; /* Remove default margin */
}

.category-option img {
    width: 80px; /* Increase icon size */
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.category-option.active img {
    filter: grayscale(0%);
}

.category-option.active p {
    color: #1a1a8c;
}

@font-face {
    font-family: 'Bariol';
    src: url('path/to/Bariol-Regular.woff2') format('woff2'),
         url('path/to/Bariol-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

product-category {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px  rgba(0, 0, 0, 0.1);
}

details {
    border-bottom: 1px solid #ddd;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    background: #ffffff;
    color: #333;
    outline: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

summary::after {
    content: '▶';
    font-size: 16px;
    transition: transform 0.3s;
}


details[open] summary::after {
    transform: rotate(90deg);
}

summary:hover {
    background: #eef2f7;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between product items */
    justify-content: left; /* Center items */
    align-items: stretch; /* Make all items same height */
    padding: 20px;
}

.product-item {
    flex: 0 1 calc(30% - 20px); /* Adjust width for three items per row */
    background: #daccb3;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 320px; /* Limit width to ensure uniformity */
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 300px; /* Full width inside the box */
    max-width: 300px; /* Keep image large */
    height: auto;
    align-self: center;
    border-radius: 5px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #073b34;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.product-description {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 90%;
}


.productsmore-link {
    color: #073b34; /* Warm color for text */
    font-size: 1.5em; /* Increase font size */
    text-decoration: none; /* Remove underline */
    position: relative; /* Position relative for the pseudo-element */
    padding-bottom: 5px; /* Add space for the line */
    transition: color 0.3s ease; /* Smooth transition for color */
}

.productsmore-link::after {
    content: ''; /* Create a pseudo-element for the underline */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align to the left */
    bottom: 0; /* Position at the bottom */
    width: 100%; /* Full width for the underline */
    height: 2px; /* Height of the underline */
    background-color: #FFC107; /* Color for the underline */
    transform: scaleX(0); /* Start with no width */
    transition: transform 0.3s ease; /* Smooth transition for the animation */
}

.productsmore-link:hover::after {
    transform: scaleX(1); /* Expand to full width on hover */
}

.productsmore-link:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    background: #ddd;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #0073e6;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 30px;
    padding: 40px;
    justify-content: center;
}

/* Product Card - Big & Uniform */
.product-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 320px; /* Large width */
    height: 520px; /* Large height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    margin: auto;
    overflow: hidden;
}

/* Product Image - Large & Clearly Visible */
.product-card img {
    width: 300px; /* Large image */
    height: 300px; /* Uniform size */
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.product-card img:hover {
    transform: scale(1.1);
}

/* Product Title */
.product-card h3 {
    font-size: 1.4em; /* Bigger text */
    font-weight: bold;
    color: #333;
    margin: 15px 0;
    text-align: center;
}

/* Product Description - Fully Visible */
.product-card p {
    font-size: 1em; /* Readable size */
    color: #666;
    text-align: center;
    max-width: 90%;
    height: auto; /* No fixed height - ensures full description is shown */
    overflow: visible; /* Ensures text never gets cut off */
    display: block;
}

/* Hover Effect - Smooth Lift */
.product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 per row on medium screens */
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 per row on mobile */
    }
}

.contact-section {
    font-family: 'Roboto', sans-serif;
    padding: 60px 20px;
    width: 100%;
    margin: 20px 0;
    background: #073b34;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.contact-section h1 {
    text-align: left;
    margin-bottom: 40px;
    font-size: 64px; /* HUGE main heading */
    font-weight: 800; /* Extra bold */
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: 5px solid #daccb3;
    padding-left: 30px;
}

.contact-method h2 {
    margin-bottom: 10px;
    font-size: 48px; /* MUCH bigger subtitle */
    font-weight: 700;
    color: #daccb3;
}

.contact-method h3 {
    margin-top: 8px;
    font-size: 32px; /* WAY bigger info text */
    font-weight: 500;
    color: #e0e0e0;
}


/* GLOBAL RESPONSIVE FIXES */

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    nav a {
        font-size: 16px;
        padding: 8px;
    }

    .hero-content {
        padding: 20px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        color: white;
        font-size: 22px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    h1 {
        font-size: 28px;
        text-align: center;
    }

    h2, h3 {
        font-size: 22px;
        text-align: center;
    }

    p {
        font-size: 16px;
        padding: 0 10px;
        text-align: center;
    }

    .contact-method,
    .feature,
    .card,
    .box {
        width: 90%;
        margin: 12px auto;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }

    .container, .section, .content {
        padding: 10px;
    }
}

/* ========== GLOBAL CLEANUP ========== */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* ========== FIXED HEADER FOR ALL DEVICES ========== */
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    width: 100%;
    overflow-x: hidden;
    background-color: #073b34;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  nav a {
    width: 100%;
    font-size: 14px;
    white-space: nowrap;
    padding: 6px 10px;
    color: white;
    text-decoration: none;
  }
  
  /* ========== FIX IMAGES AND VIDEOS ========== */
  img,
  video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* ========== MOBILE FIXES (REMOVED HEADER RULES) ========== */
  @media (max-width: 600px) {
    /* Fix hero section text/image */
    .hero-content {
      text-align: center;
      padding: 20px;
    }
  
    .hero-content h1,
    .hero-content p {
      color: white;
      font-size: 22px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
  
    .hero-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  
    /* Fix section box layout */
    .contact-method,
    .feature,
    .card,
    .box {
      width: 90%;
      margin: 10px auto;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }
  
    /* Prevent box parent from overflowing */
    .feature-section,
    .box-wrapper,
    .card-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    h1 {
      font-size: 28px;
    }
  
    h2,
    h3 {
      font-size: 20px;
    }
  
    p {
      font-size: 16px;
      padding: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 24px;
    }
  
    h2,
    h3 {
      font-size: 20px;
    }
  
    p {
      font-size: 14px;
      padding: 0 8px;
    }
  
    .contact-method,
    .feature,
    .card,
    .box {
      width: 95%;
      padding: 12px;
      margin: 10px auto;
    }
  
    /* Slightly larger font for very small screens */
    nav a {
      font-size: 10px;
    }
  }

/* Mobile Header Fix */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .logo {
    width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #073b34;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

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

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }
  .hero-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    word-break: break-word;
  }
  
  .hero-content p {
    font-size: 1.1em;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 1.4;
  }
  
  .impact-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }
  
  .stat h2 {
    font-size: 2em;
  }
  
  .stat p {
    font-size: 1em;
  }
  .hero-content {
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    text-align: center;
    padding: 20px;
  }
  
  .hero-content h2 {
    color: #073b34;
  }
  
  .hero-content p {
    color: #000000;
  }
  
  
  .hero-image {
    position: relative;
  }
  
  .hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* soft dark overlay */
    z-index: 1;
  }
  
  .hero-content {
    position: absolute;
    z-index: 2;
  }
  .hero-image {
    position: relative;
  }
  
  .hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* subtle dark layer */
    z-index: 1;
  }
  
  .hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 20px;
  }
  .lang-switcher-wrapper {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }

  #lang-switcher {
    width: 130px;
    margin: auto;
  }
}


.lang-switcher-wrapper {
    margin-left: 20px;
    display: flex;
    align-items: center;
  }

  #lang-switcher {
    background-color: #073b34;
    color: #fff;
    border: 2px solid #ffad5f;
    border-radius: 10px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 40px;
  }
  
  #lang-switcher:hover {
    background-color: #055c4c;
    border-color: #ffc107;
  }
  .contact-heading {
    color: #F79751 !important;
  }
  .header-tagline {
    font-family: 'Great Vibes', cursive;
    color: #ffad5f;
    font-size: clamp(1.8rem, 2vw, 3.2rem);
    font-weight: 600;
    margin-top: 90px;
    margin-left: -20px;
    display: inline-block;
  }
  
  /* Header tagline mobile */
  @media (max-width: 768px) {
    .lang-switcher-wrapper {
      margin-top: 10px;
      justify-content: center;
      width: 100%;
    }
  
    .header-tagline {
      display: block;
      margin: 40px 0 0 0;
      text-align: left;
      font-size: 1.1rem;
      position: relative;
      left: -20px;
    }
  }