/* Basic Reset */
body, ul, li {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Header Styling */
#myHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFFFF0 0%, #F4F1E9 100%);
    padding: 0.5rem 1.5rem; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    height: 11.4vh; /* Slightly increased to accommodate the larger logo */
    box-sizing: border-box; 
}

/* Logo and Brand */
.logo-container {

    display: flex;
    align-items: center;
    height: auto; /* Ensure the container adjusts based on the logo size */
    flex-shrink: 0; 
}

.logo {
    height: 4rem; /* Increased logo height */
    width: 4rem; /* Increased logo width */
    margin-right: 0.8rem; /* Adjust spacing between logo and brand name */
    object-fit: contain;
}

.brand-name {
    font-size: 1rem; /* Increased font size for the brand text */
    font-weight: 600;
    color: #6B8E23;
    padding-left: 1rem;
    border-left: 1px solid #000;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Navigation */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FFFFF0 0%, #F4F1E9 100%);
    padding: 1rem;
    border-bottom: none; /* Removed unnecessary border */
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 1rem; /* Adds proper spacing */
    position: relative; /* Required for dropdown positioning */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    border-radius: 0.8rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D84315;
    background-color: rgba(244, 247, 249, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Dropdown Styling */
.dropdown {
    position: relative; /* Required for positioning the dropdown */
}

.dropdown-toggle {
    display: inline-flex; /* Ensures proper alignment */
    align-items: center; /* Centers text and arrow */
    cursor: pointer; /* Indicates clickable element */
}

.dropdown-toggle::after {
    content: ' ▾'; /* Sleek downward arrow */
    font-size: 0.8rem; /* Adjusted size for balance */
    color: #666; /* Subtle gray color */
    margin-left: 0.3rem; /* Spacing between text and arrow */
    vertical-align: middle; /* Keeps arrow aligned with text */
    transition: transform 0.3s ease; /* Smooth rotation */
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* Rotate arrow on hover */
}

/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Positions dropdown directly below parent */
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 10;
    min-width: 200px; /* Ensures consistent dropdown width */
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 4px solid transparent; /* Adds space and hover effect */
}

.dropdown-menu a:hover {
    background-color: rgba(244, 247, 249, 0.9);
    color: #D84315;
    border-left: 4px solid #D84315; /* Highlight active link */
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
    animation: fadeIn 0.3s ease; /* Smooth fade-in effect */
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it directly below the parent */
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 10;
    min-width: 200px; /* Ensures consistent dropdown width */
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 4px solid transparent; /* Adds space and hover effect */
}

.dropdown-menu a:hover {
    background-color: rgba(244, 247, 249, 0.9);
    color: #D84315;
    border-left: 4px solid #D84315; /* Highlight active link */
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown when hovering over parent */
    animation: fadeIn 0.3s ease; /* Smooth fade-in effect */
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-btn {
    padding: 1rem 1.6rem; /* Increased padding for better touch */
    background: linear-gradient(135deg, #333333 0%, #000000 100%); /* Dark gradient from charcoal to black */
    color: #ffffff; /* White text for better contrast */
    text-decoration: none;
    border-radius: 30px; /* Uniform rounded corners */
    font-weight: 700; /* Bolder text */
    font-size: 14px; /* Larger font size */
    transition: all 0.3s ease; /* Smooth transition for all properties */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25); /* More pronounced shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 73%; /* Fixed height for consistent appearance */
    white-space: nowrap; /* Prevents text wrapping */
    margin-right: 1rem; /* Consistent margin */
}

.download-btn:last-child {
    margin-right: 0; /* Remove margin for the last button */
}

.download-btn .icon {
    width: 24px; /* Adjusted width */
    height: 24px; /* Adjusted height */
    margin-right: 10px; /* More space between the icon and text */
    object-fit: contain; /* Ensure icons maintain their aspect ratio */
}

.android-icon {
    width: 35px; /* Larger width for Android icon for visibility */
    height: 35px; /* Proportional height for Android icon */
    margin-right: 8px; /* Adjusted space between Android icon and text */
}

/* Hover effect that lifts and changes the gradient direction */
.download-btn:hover {
    background: linear-gradient(135deg, #434343 0%, #000000 100%); /* Reverse gradient on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}


/* Basic styles for the hamburger menu */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 0.25rem;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hide the checkbox input */
#menu-toggle {
    display: none;
}

/* Home Section Desktop Styling */
#home-section {
    padding: 5vh 5vw; /* Adjusted padding for a more balanced layout */
    background-color: #968645;
    display: flex;
    background-image: url(images/background.png);
    background-size: cover; 
    background-position: center 20px; /* Adjusts the image upwards */
    justify-content: space-between; /* Keep space between main content and feature box */
    align-items: center; /* This centers the feature box relative to home content */
    text-align: start;
    min-height: 90vh;
}

.home-content {
    flex: 0 0 47%; /* Maintain the width for the home content */
    text-align: left;
}

/* Headings and Paragraphs */
#home-section h1 {
    font-size: 3rem; /* Adjust size */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2; /* Adjust line height */
    margin-bottom: 3vh; /* Added margin for spacing */
    margin-top: 8vh;
    
}

.home-paragraph {
    font-size: 1.4rem; /* Adjust for better readability */
    font-weight: 400;
    color: #ffffff;
    margin: 7.5vh 0; /* Reduced margin */
    line-height: 1.4; 
}

/* Button Base Style */
.download-btn-home {
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #F4A100, #DAA520);
    color: #fff;
    text-decoration: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Text Styling */
.btn-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}

/* Logo Styling (Hidden by Default) */
.btn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px; /* Adjust logo size */
    height: 40px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; /* Prevent interaction */
}

/* Hover Effects */
.download-btn-home:hover {
    background: linear-gradient(135deg, #DAA520, #C4871A);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Text Disappear and Logo Appear */
.download-btn-home:hover .btn-text {
    transform: translateY(-10px); /* Subtle upward lift */
    opacity: 0;
}

.download-btn-home:hover .btn-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Smooth logo scaling */
}

/* Add a Ripple Effect on Hover */
.download-btn-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.download-btn-home:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(15); /* Expands smoothly */
}
/* Feature Box Styling */
.feature-box {
    flex: 0 0 90%; /* Try reducing to 90% */
    max-width: 35%; /* Limit to a max width */
    height: 43vh; /* Let the height adjust automatically */
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 1.2rem; 
    padding: 2vh 2vw; /* Adjust padding for mobile */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1vh auto; /* Center the box with margin auto */
    color: #fff; 
    position: relative;
    overflow: hidden;
    align-self: center; 
}

.feature-content {
    text-align: center;
    width: 90%; /* Adjust to fit the content properly */
}

.feature-icons {
    display: flex;
    justify-content: space-around; /* Space icons evenly */
    margin-bottom: 6vh; /* Increase bottom margin to create more space */
}

.feature-icons img {
    width: 6vw; /* Increase icon size */
    max-width: 40px; /* Increase the max size */
    height: auto; 
}

.feature-divider {
    width: 90%; /* Adjust line width */
    border: none;
    border-top: 1px solid #fff; 
    margin: 2vh auto; /* Increase vertical spacing */
}

.feature-text {
    font-size: 1.1rem; /* Maintain the font size */
    font-weight: 300; 
    line-height: 1.5; /* Increase line height for better readability */
    margin: 2.5vh 0; /* Increase margin to create more space around the text */
    letter-spacing: 0.02rem;
    text-align: center; 
    color: #fff; 
}

/* Pagination Indicators */
.pagination-indicators {
    margin-top: 3vh; /* Increase top margin for more spacing above */
}

.indicator {
    display: inline-block;
    width: 0.6rem; /* Increase dot size */
    height: 0.6rem;
    background-color: rgba(255, 255, 255, 0.6); 
    border-radius: 50%; 
    margin: 0 0.3rem; /* Increase spacing between indicators */
}

.indicator.active {
    background-color: #fff; 
}

/* Features Section Styling */
#features-section {
    padding: 5vh 5vw;
    background-color: #F5F5DC;
    text-align: start;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10vh;
}

/* Grid Styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 290px); /* Ensure 3 cards per row */
    gap: 3rem; /* Gap between columns and rows */
    column-gap: 3rem; /* Horizontal gap between cards */
    justify-content: center; /* Center the grid */
    max-width: 1400px; /* Adjust the max-width to fit 3 cards */
    margin: 0 auto; /* Center the grid in the viewport */
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(77, 23, 23, 0.1); 
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 80vh; /* Keep the height from the 4 card layout */
    width: 23vw; /* Keep the width from the 4 card layout */
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.2);
}

.feature-card-link {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Ensures the text inherits the parent's color */
    display: block; /* Makes the link behave as a block-level element */
}


/* Fix for Video Thumbnail */
.feature-video {
    position: relative;
    width: 100%;
    height: 200px; /* Set height for the video section */
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the image cover the whole space */
    display: block; /* Ensures image takes full space */
    border-radius: 1rem 1rem 0 0; /* Round only the top-left and top-right corners */
}

/* Icon and Content Styling */
.features-content {
    padding: 1rem;
}

.features-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.features-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 70px;
}

/* Learn More Button */
.learn-more-btn {
    padding: 0.6rem 1.2rem;
    background: none;
    color: #333; /* Default dark text */
    border: 0.1rem solid #333; /* Default border */
    border-radius: 0.5rem; /* Smooth rounded edges */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease; /* Smooth transition */
    text-align: center;
    margin-top: auto;
    display: inline-flex; /* Flexbox for alignment */
    align-items: center; /* Center icon and text vertically */
    justify-content: center; /* Center everything */
    gap: 0.5rem; /* Space between icon and text */
    position: relative;
    overflow: hidden; /* Hide overflowing content */
    cursor: pointer;
}

/* Text Span Styling */
.learn-more-btn span {
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade and slide */
}

/* Initially Hide YouTube Icon */
.learn-more-btn i {
    position: absolute; /* Stack icon on top */
    font-size: 0; /* Initially hidden size */
    opacity: 0; /* Invisible */
    color: #FF0000; /* YouTube red */
    transform: scale(0); /* Completely scaled down */
    transition: all 0.4s ease-in-out; /* Smooth animation */
}

/* Hover Effect */
.learn-more-btn:hover {
    background-color: #1a1a1a; /* Darker charcoal gray */
    color: #ffffff; /* White text */
    border-color: #1a1a1a; /* Match border to hover background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Subtle hover shadow */
}

/* Fade Out Text and Slide it Up */
.learn-more-btn:hover span {
    opacity: 0; /* Fade out */
    transform: translateY(-10px); /* Slide text upwards */
    pointer-events: none; /* Prevent interactions with hidden text */
}

/* Enlarge and Center YouTube Icon */
.learn-more-btn:hover i {
    font-size: 2rem; /* Make the icon visible and large */
    opacity: 1; /* Fully visible */
    transform: scale(1); /* Restore size */
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background overlay */
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    height: 450px;
    background-color: #000;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.close-btn:hover {
    color: #f00;
}

/* Spinner Styling */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); /* Light gray border */
    border-left-color: #4E9F3D; /* Green border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    
    /* Centering the spinner */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#youtube-video {
    display: none; /* Hide the video initially */
}

/* Base Styles (applies to desktop by default) */
#howitworks-section {
    background-color: #968645;
    padding: 5vh 5vw;
    text-align: center;
}

.works-heading {
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Desktop for how it works */
.works-feature-container {
    display: flex;
    justify-content: center; /* Center the icons and arrows */
    align-items: flex-start;
    gap: 3rem; /* Space between each feature */
}

.works-feature {
    display: flex;
    flex-direction: column; /* Stack elements vertically within each feature */
    align-items: center;
    text-align: center;
    max-width: 250px; /* Constrain the width for better alignment */
}

.works-feature img {
    height: 4.3rem;
    width: auto; /* Maintain aspect ratio */
    margin-bottom: 1rem; /* Space between the icon and text */
}

.works-feature h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem; /* Space between heading and paragraph */
}

.works-feature p {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.5;
}

/* Arrows between features */
.arrow-icon {
    width: 6.5rem; /* Increased size for better visibility */
    height: auto; /* Maintain aspect ratio */
    margin-top: 2rem; /* Add spacing above the arrows */
    margin-bottom: 2rem; /* Add spacing below the arrows */
    align-self: center; /* Ensure arrows align vertically in the middle between features */
}

/* Button styling */
.learn-more-works-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: none;
    color: #ffffff;
    border: 0.1rem solid #FFFFFF;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.learn-more-works-btn:hover {
    background-color: #000;
    color: #fff;
    border: 0.1rem solid #000;
}

#aboutus-up-section {
    background-color: #261509;
    background-image: url(images/aboutus.png);
    padding: 5vh 5vw;
    text-align: center; /* Ensure the section content is centered */
    background-size: cover; 
    background-position: center -30px; /* Adjusts the image upwards */
    min-height: 40vh;
}

.about-heading {
    font-size: 3rem;
    justify-content: center; /* Evenly distribute headings */
    gap: 1rem;
    font-weight: bold;
    margin-bottom: 3.3rem; /* Space between headings and paragraphs */
    color: #968645;
    text-transform: uppercase;
}

.about-subheading {
    font-size: 1.5rem;
    justify-content: center; /* Evenly distribute headings */
    gap: 1rem;
    margin-bottom: 3.3rem; /* Space between headings and paragraphs */
    color: #ffffff;
    font-weight: 400;
}

.try-now-btn {
    display: inline-block;
    padding: 0.8rem 2rem; /* Increased padding for a larger button */
    background-color: #968645; /* Gold-ish background color */
    color: #ffffff; /* White text */
    border-radius: 2rem; /* Rounded corners for a pill-shaped button */
    text-decoration: none; /* Remove underline */
    font-weight: 500; /* Bold font */
    font-size: 1rem; /* Increase font size for better readability */
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Add subtle shadow for depth */
    margin-top: 1rem; /* Space above the button */
}

.try-now-btn:hover {
    background-color: #000; /* Darker background on hover */
    color: #fff; /* Ensure the text stays white */
    border: 0.1rem solid #fff; /* Border on hover */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
    transform: translateY(-3px); /* Slight lift effect on hover */
}

/* Section Background and Padding */
#about-us-down-section {
    background-color: #F5F5DC;
    padding: 5vh 5vw; /* Viewport height and width for responsive padding */
    position: relative; /* Needed to position the line relative to the entire section */
}

/* Mission container as flexbox */
.mission {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vw; /* Gap between Mission and Story using viewport width */
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    width: 100%;
}

/* Line between Mission and Story */
#about-us-down-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.1rem; /* Line thickness */
    background-color: #968645; /* Line color */
    height: 100%; /* Full height of the entire section */
    transform: translateX(-50%); /* Center the line */
    z-index: 1; /* Ensure the line stays behind the content */
}

/* Individual Content Boxes */
.mission-content, .story-content {
    width: 48%; /* Use percentage for flexible width */
    text-align: center; /* Center the text */
    margin-bottom: 3vh; /* Responsive bottom margin for spacing */
    position: relative; /* To keep content above the line */
    z-index: 2; /* Ensures the content stays on top of the line */
}

/* Headings for Mission and Story */
.mission-heading, .story-heading {
    color: #968645;
    font-size: 2.5rem; /* Use rem for scalable font size */
    font-weight: bold; /* Add boldness for stronger headings */
    margin-bottom: 1.5rem; /* Space below the headings */
}

/* Paragraphs for Mission and Story */
.mission-content p, .story-content p {
    font-size: 1.3rem; /* Slightly larger, scalable text */
    font-weight: 200;
    line-height: 1.6; /* Line spacing for better readability */
    color: #000; /* Black or near black text color for contrast */
    margin-bottom: 1.2rem;
}

/* Story Button Styling */
.story-content button {
    display: flex;
    background-color: #000;
    color: #FFF;
    padding: 0.8rem 1.8rem; /* Adjusted padding to match the design */
    border: none;
    justify-content: center;
    align-items: center;
    border-radius: 1.5rem; /* Softer rounded corners */
    font-size: 1rem; /* Slightly smaller font for the button text */
    cursor: pointer;
    height: 2.5rem;
    position: absolute; /* Absolute positioning for the button */
    right: 5%; /* Position it 5% away from the right edge */
}

/* Hover Effect */
.story-content button:hover {
    background-color: #224093; /* Background changes to white */
    color: #ffffff; /* Text changes to black */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Adds a shadow effect */
    transform: scale(1.05); /* Slight scaling effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Adds a subtle text shadow */
    border-radius: 1.5rem; /* Increase border radius for a softer look */
}

/* Contact Section */
#contact-upper-section {
    background-color: #705D33; /* A more subtle earthy tone */
    padding: 5rem 3rem; /* Increased padding for breathing space */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* For decorative elements if needed */
}

/* Container for the demo booking */
.book-demo {
    background: #1f2937; /* Dark slate gray */
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Slightly stronger shadow */
    max-width: 600px;
    width: 100%;
}


/* Heading */
.contact-heading {
    font-size: 3rem;
    color: #FFF; /* Bright white */
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}


/* Description text */
.contact-content {
    font-size: 1.2rem;
    color: #E2E8F0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8; /* Improve readability */
    margin-bottom: 2rem;
}

/* Add Icon inside the button */
.demo-button i {
    font-size: 1.5rem; /* Icon size */
    color: #ffffff; /* Icon matches the text color */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover animation */
}

/* Demo Button */
.demo-button {
    background-color: #6B8E23; /* Olive green for the button */
    color: #ffffff; /* White text for contrast */
    padding: 0.8rem 2rem; /* Balanced padding */
    border: none; /* Clean borderless design */
    border-radius: 2rem; /* Smooth rounded corners */
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: inline-flex; /* Flexbox for alignment */
    align-items: center; /* Center icon and text vertically */
    gap: 0.6rem; /* Spacing between icon and text */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

/* Background Animation on Hover */
.demo-button:hover {
    background: linear-gradient(135deg, #FFA500, #FF6347); /* Vibrant orange to red gradient */
    color: #ffffff; /* Keep text white */
    box-shadow: 0 8px 20px rgba(255, 99, 71, 0.6); /* Glow-like shadow */
    transform: translateY(-3px); /* Slight lift */
    transition: all 0.4s ease-in-out; /* Smooth animation */
}

/* Hover Effect on Icon */
.demo-button:hover i {
    color: #ffffff; /* Keep icon white on hover */
    transform: scale(1.3) rotate(10deg); /* Slightly enlarge and rotate icon */
    animation: bounce 0.6s infinite; /* Add bounce effect */
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: scale(1.3) translateY(0); /* Default position */
    }
    50% {
        transform: scale(1.3) translateY(-5px); /* Move up slightly */
    }
}

/* Text Animation on Hover */
.demo-button:hover span {
    transform: translateY(-3px); /* Slight upward motion for the text */
    transition: transform 0.3s ease;
}

/* General Styles for Popup */
    .popup {
        display: none;
        position: fixed;
        z-index: 100;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .popup-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 40%;
        max-width: 500px;
        border-radius: 8px;
    }

    .close-demo-popup {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-demo-popup:hover,
    .close-demo-popup:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        box-sizing: border-box;
    }

    .send-button {
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }

    .send-button:hover {
        background-color: #45a049;
    }

    /* Styles for Larger Screens (Web) */
    @media (min-width: 768px) {
        .popup-content {
            width: 40%;
        }
    }

    /* Styles for Smaller Screens (Mobile) */
    @media (max-width: 767px) {
        .popup-content {
            width: 90%;
            margin: 20% auto;
        }

        input, textarea {
            font-size: 16px;
        }

        .send-button {
            font-size: 16px;
            padding: 12px;
        }
    }

/* Contact Lower Section Styling */
#contact-lower {
    background-color: #F5F5DC;
    display: flex;
    justify-content: space-between; /* Space between image, form, and info box */
    align-items: center; /* Center everything vertically */
    gap: 3vw; /* Gap between form and info box */
    position: relative;
}

/* Image Styling */
.contact-image {
    width: 34%; /* Reduced image size */
}

/* Form Section Styling */
.contact-form {
    width: 35%; /* Reduced form width */
    height: 40%;
    display: flex;
    flex-direction: column;
    padding: 1rem; /* Reduced padding */
    position: relative; /* To ensure the divider is positioned relative to the form */
}

/* Divider After Form */
.contact-form::after {
    content: ''; /* Empty content for the divider */
    display: block;
    width: 1px; /* Thin vertical line */
    height: 101%; /* Adjust height to match the visual requirement */
    background-color: #968645; /* Gold/yellow color to match the branding */
    position: absolute;
    right: -4.5rem; /* Place it just after the form, adjust the spacing as needed */
    top: -5px;
}

/* Heading in Form */
.contact-heading-demo {
    font-size: 1.5rem; /* Adjusted heading size */
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form p {
    margin-bottom: 1rem; /* Reduced space below text */
    font-size: 1rem; /* Text size */
    color: #555;
}

/* Form Field Styling */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem; /* Reduced padding */
    margin-bottom: 1rem;
    border: 1px solid #ddd; /* Light border */
    border-radius: 0.25rem; /* Rounded corners */
    font-size: 0.7rem; /* Smaller font size */
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #888;
}

/* Submit Button Styling */
.send-button {
    background-color: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8rem; /* Smaller button font size */
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #444;
}

/* Contact Info Box Styling */
.contact-info {
    width: 20%; /* Reduced width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem; /* Padding around the box */
    text-align: center;
}

.clock-icon {
    width: 40%; /* Icon size */
    margin-bottom: 1rem;
}

.response-text {
    font-size: 1rem; /* Text size in the info box */
    color: #000;
    font-weight: bold;
}


/* Footer Section */
#custom-footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    display: flex;
    justify-content: space-between; /* Space between logo, title, and download sections */
    align-items: center; /* Vertically center content */
    padding: 1rem 5vw; /* Padding around the footer */
    height: auto;
    position: relative; /* To ensure the divider is placed correctly */
}

/* Logo Section */
.footer-logo {
    display: flex; /* Align logo and divider in a row */
    align-items: center;
}

.footer-logo img {
    width: 180px; /* Adjust the size of the logo */
    height: 180px;
    margin-right: 1rem; /* Add space between the logo and the divider */
}

/* Divider Styling */
.footer-logo::after {
    content: ''; /* Empty content for the divider */
    display: block;
    width: 1px; /* Thin vertical line */
    height: 23vh; /* Height of the divider */
    background-color: #968645; /* Gold/yellow color to match the branding */
    margin-left: 2rem; /* Space between logo and the divider */
}

/* Title Section */
.footer-title {
    text-align: center;
}

.footer-title h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.footer-title p {
    font-size: 1.2rem;
    color: #f4c842; /* Gold/yellow color for tagline */
    margin-top: 0.5rem;
}

/* Download Section */
.footer-download {
    text-align: right;
}

.footer-download p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* App Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem; /* Space between download buttons */
    margin-bottom: 2rem;
}

.download-buttons button {
    display: flex;
    align-items: center;
    background-color: #fff; /* White background for buttons */
    color: #000; /* Black text */
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-buttons button img {
    width: 20px; /* Adjust icon size */
    height: 20px;
    margin-right: 0.5rem;
}

.download-buttons button:hover {
    background-color: #f4c842; /* Gold/yellow hover effect */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem; /* Space between social icons */
}

.social-icons a img {
    width: 25px; /* Icon size */
    height: auto;
    transition: opacity 0.3s ease;
}

.social-icons a:hover img {
    opacity: 0.7; /* Slight opacity on hover */
}

.footer-privacy-policy {
    text-align: center; /* Center the text */
    margin: 0; /* Remove any extra margins */
    padding: 1rem 0; /* Add vertical padding */
    font-size: 0.9rem; /* Slightly larger text for readability */
    color: #333; /* Dark gray text color */
    background-color: #f5f5f5; /* Light gray background */
    border-top: 1px solid #ddd; /* Subtle top border for separation */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Add subtle shadow for separation */
}

.footer-privacy-policy a {
    text-decoration: none; /* Remove underline */
    color: #007bff; /* Blue color for links */
    margin: 0 0.5rem; /* Space between links */
    transition: color 0.3s ease; /* Smooth color transition */
}

.footer-privacy-policy a:hover {
    color: #0056b3; /* Darker blue on hover */
}


/* Global reset and box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

/* Responsive styles for mobile */

/* Header on Mobile */
@media (max-width: 768px) {

    /* Hide the regular nav-links on mobile */
    nav {
        display: none;
    }

    .dropdown-menu {
        font-size: 0.8rem; /* Default smaller text size */
        padding: 0.3rem 0; /* Default padding for dropdown */
        min-width: 150px; /* Default minimum width */
    }

    .dropdown-menu a {
        padding: 0.3rem 0.8rem; /* Default padding inside links */
        font-size: 0.8rem; /* Default smaller text size for links */
    }

    /* Specific adjustments for the "Features" dropdown menu */
    .nav-links .dropdown .dropdown-menu {
        font-size: 0.7rem; /* Slightly smaller text size */
        padding: 0.2rem 0.5rem; /* Compact padding for dropdown */
        min-width: 120px; /* Narrower dropdown width */
        position: absolute; /* Position the dropdown absolutely */
        right: 0; /* Align it to the right edge */
        top: 100%; /* Position it below the parent item */
        background-color: #ffffff; /* Ensure a clear background */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
        z-index: 1000; /* Ensure it appears above other elements */
    }

    .nav-links .dropdown {
        position: relative; /* Ensure parent is positioned for absolute children */
    }

    .nav-links .dropdown .dropdown-menu a {
        padding: 0.2rem 0.5rem; /* Adjusted padding inside links */
        font-size: 0.7rem; /* Smaller font size for links */
        text-align: left; /* Default text alignment */
    }

    /* Show the hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Show the navigation when the checkbox is checked */
    #menu-toggle:checked ~ nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #F5F5DC;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        width: 100%;
    }

    /* Hide the download button on mobile */
    .download-btn {
        display: none; /* This hides the button */
    }
}

/* Mobile styles for Home Section */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
        margin: 0; /* Remove default margin */
        padding: 0; /* Remove default padding */
    }

    #home-section {
        display: flex; /* Ensure it's a flex container */
        flex-direction: column; /* Stack the content vertically */
        padding: 10vh 2vw; /* Adjust padding for better layout */
        text-align: center; /* Center text on mobile */
        min-height: 80vh; /* Ensure it covers the full screen */
        justify-content: center; /* Center items vertically */
        max-width: 100%; /* Prevent overflow */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .home-content {
        flex: 0 0 100%; /* Take full width on mobile */
        text-align: center; /* Center-align text */
        margin-bottom: 3vh; /* Add space between content and feature box */
    }

    #home-section h1 {
        font-size: 2rem; /* Adjust heading size */
        margin-bottom: 2vh; /* Adjust margin for spacing */
        line-height: 1.2; /* Adjust line height */
    }

    .home-paragraph {
        font-size: 1.2rem; /* Adjust for readability */
        margin: 3vh 0; /* Adjust margins for better layout */
        line-height: 1.4;
    }

    .download-btn-home {
        padding: 0.6rem 1.8rem; /* Adjust button padding */
        font-size: 1rem; /* Slightly reduce button font size */
    }

    /* Make the feature box more compact */
    .feature-box {
        flex: 0 0 auto;
        width: 75%; /* Take full width */
        height: auto; /* Let the height adjust automatically */
        background-color: rgba(0, 0, 0, 0.9); /* Keep background color */
        border-radius: 1rem; /* Slightly rounded corners */
        padding: 1.5rem; /* Adjust padding for better compactness */
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); /* Adjust shadow */
        margin: 0 auto 3vh; /* Center and add space below */
        text-align: center; /* Center-align the text inside */
        max-width: 100%; /* Ensure it doesn't exceed viewport width */
        overflow-x: hidden; /* Prevent overflow */
    }

    .feature-icons {
        display: flex; /* Ensure flex display */
        justify-content: center; /* Center icons */
        flex-wrap: wrap; /* Allow wrapping for smaller screens */
        margin-bottom: 2vh; /* Reduce bottom margin */
    }

    .feature-icons img {
        width: 35px; /* Adjust icon size for better mobile view */
        height: 35px; /* Maintain aspect ratio */
        margin: 0 0.5rem; /* Add spacing between icons */
    }

    .feature-text {
        font-size: 0.8rem; /* Reduce font size */
        margin: 2vh 0; /* Adjust margin */
    }

    .pagination-indicators {
        margin-top: 2vh; /* Adjust margin for better spacing */
        display: flex; /* Ensure flex display for dots */
        justify-content: center; /* Center the pagination dots */
    }

    .indicator {
        width: 0.6rem; /* Adjust dot size */
        height: 0.6rem;
        margin: 0 0.2rem; /* Spacing between dots */
    }
}

/* Mobile Styles For Feature Section */
@media (max-width: 768px) {
    #features-section {
        padding: 3vh 2vw; /* Adjusted padding for mobile */
        max-width: 100%; /* Ensure it doesn't exceed viewport width */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .section-heading {
        font-size: 1.8rem; /* Smaller font size for mobile */
        margin-bottom: 5vh; /* Reduced margin */
    }

    .features-grid {
        display: grid; /* Use grid for layout */
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Responsive grid with reduced width */
        gap: 2rem; /* Adjusted gap for mobile */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .feature-card {
        height: auto; /* Flexible height for mobile */
        width: 70%; /* Full width */
        margin: 0 auto; /* Center the card */
        max-width: 100%; /* Ensure it doesn't exceed viewport */
    }

    .features-content h3 {
        font-size: 1.15rem; /* Slightly smaller for mobile */
    }

    .features-content p {
        font-size: 0.9rem; /* Reduced font size for mobile */
        margin-bottom: 50px; /* Adjusted margin for mobile */
    }

    .learn-more-btn {
        padding: 0.5rem 1rem; /* Button padding */
    }
}

/* Mobile Styles for "How It Works" */
@media (max-width: 768px) {
    #howitworks-section {
        display: flex;
        flex-direction: column; /* Stack features vertically */
        align-items: center; /* Center elements */
        padding: 2rem 1rem; /* Add padding for breathing room */
    }

    .works-heading {
        font-size: 2rem; /* Keep heading slightly bold for prominence */
        margin-bottom: 2rem; /* Add space below heading */
        text-align: center; /* Center the heading */
    }

    .works-feature-container {
        flex-direction: column; /* Stack each feature vertically */
        gap: 2rem; /* Add more space between features */
        align-items: center; /* Center each feature */
        width: 100%; /* Make the container full width */
    }

    .works-feature {
        max-width: 90%; /* Constrain feature width for better readability */
        text-align: center; /* Center-align text within each feature */
        margin-bottom: 2rem; /* Space between each feature */
    }

    .works-feature img {
        width: 60px; /* Slightly larger icon size */
        margin-bottom: 1rem; /* Space between the icon and text */
    }

    .works-feature h3 {
        font-size: 1.4rem; /* Larger heading for better emphasis */
        font-weight: 600; /* Make it a bit bolder for readability */
        margin-bottom: 1rem;
    }

    .works-feature p {
        font-size: 1rem; /* Maintain readability for text */
        max-width: 95%; /* Slightly wider for more breathing room */
        margin: 0 auto; /* Center-align paragraphs */
        line-height: 1.6; /* Improve spacing between lines */
    }

    .arrow-icon {
        width: 6.5rem; /* Adjust arrow size */
        height: auto; /* Maintain aspect ratio */
        margin: 1rem 0; /* Add space around arrows */
        transform: rotate(90deg); /* Rotate arrow to point downwards */
    }
}


/* Mobile Styles for About Us Section */
@media (max-width: 768px) {
    #aboutus-up-section {
        background-color: #261509;
        background-image: none;
        padding: 5vh 3vw; /* Reduced padding for mobile */
        text-align: center;
        background-size: cover;
        background-position: center -20px; /* Adjust image position for mobile */
        min-height: 30vh; /* Adjust height for mobile */
    }

    .about-heading {
        font-size: 1.8rem; /* Smaller font size for mobile */
        margin-bottom: 2rem; /* Reduced space for mobile */
        color: #968645;
    }

    .about-subheading {
        font-size: 1rem; /* Smaller font size for mobile */
        margin-bottom: 2rem; /* Reduced space for mobile */
        color: #ffffff;
    }

    .try-now-btn {
        padding: 0.6rem 1.5rem; /* Adjusted padding for a smaller button */
        font-size: 0.8rem; /* Smaller font size */
        border-radius: 1.5rem; /* Reduced border radius */
        margin-top: 1rem;
    }
}

/* Mobile Styles for About Us Down Section */
@media (max-width: 768px) {
    #about-us-down-section {
        padding: 5vh 3vw; /* Reduced padding for mobile */
    }

    .mission {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center; /* Center-align items */
        gap: 3vh; /* Adjust gap for vertical stacking */
    }

    #about-us-down-section::before {
        display: none; /* Hide the line divider on mobile */
    }
    

    .mission-content, .story-content {
        width: 100%; /* Full width for mobile */
        margin-bottom: 2vh; /* Adjust margin for mobile */
    }

    .mission-heading, .story-heading {
        font-size: 1.8rem; /* Smaller font size for mobile */
        margin-bottom: 1rem;
    }

    .mission-content p, .story-content p {
        font-size: 1rem; /* Reduced font size for readability */
        line-height: 1.4;
    }

    .story-content button {
        width: 50%; /* Set the width of the button */
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem; /* Smaller font size */
        height: auto; /* Auto height */
        margin-top: 1rem; /* Add margin above */
        margin-left: 0.8rem; /* Center button */
        margin-right: auto; /* Center button */
        display: block; /* Ensure button is a block element */
    }
}

/* Mobile Styles for Contact Section */
@media (max-width: 768px) {
    #contact-upper-section {
        padding: 5vh 3vw; /* Adjusted padding for mobile */
    }

    .contact-heading {
        font-size: 1.8rem; /* Reduced font size for mobile */
        display: flex;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .contact-content {
        font-size: 0.8rem; /* Smaller font size */
        width: 100%; /* Full width */
        font-weight: 400;
        text-align: center;
        margin-bottom: 2rem; /* Adjust margin */
    }

    .demo-button {
        padding: 0.6rem 1.2rem; /* Reduced padding */
        font-size: 0.8rem; /* Smaller font size */
        border-radius: 1rem; /* Adjusted for mobile */
    }

    #contact-lower {
        flex-direction: column; /* Stack items vertically */
        gap: 3vh; /* Space between elements */
    }

    .contact-form {
        display: flex; /* Make the container a flex container */
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center align all children horizontally */
        text-align: center; /* Center text for all elements inside */
    }
    
    .contact-heading-demo {
        font-size: 1.5rem; /* Adjust the font size if needed */
        margin: 0; /* Reset any default margin */
        padding: 1rem 0; /* Optional: Add some padding */
    }

    .contact-image {
        display: none;
    }

    .contact-form {
        width: 100%; /* Full width */
        padding: 1rem; /* Adjusted padding */
        margin-bottom: 2rem;
    }

    .contact-form::after {
        display: none; /* Hide divider on mobile */
    }

    .contact-info {
        width: 100%; /* Full width */
        padding: 0rem; /* Adjusted padding */
    }

    .clock-icon {
        display: none;
    }

    .response-text {
        display: none;
    }
}

@media (max-width: 768px) {
    #custom-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 1rem 2vw 0;
        background-color: #000;
        border: none;
    }

    .footer-logo img {
        width: 100px;
        height: auto;
        margin: 0 auto 1rem;
    }

    .footer-title {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer-title h2 {
        font-size: 1.5rem;
        margin: 0.3rem 0;
        color: #fff;
    }

    .footer-title h2::after, 
    .footer-logo::after {
        display: none;
    }

    .footer-title p {
        font-size: 1rem;
        margin: 0;
        color: #ffd700;
    }

    .footer-download {
        text-align: center;
        margin: 1rem 0;
    }

    .download-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .download-buttons button {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
        color: #000;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .download-buttons button:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .social-icons a img {
        width: 30px;
        height: auto;
    }

    .footer-privacy-policy {
        text-align: center;
        margin: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        color: #333;
        background-color: #f5f5f5;
        border-top: 1px solid #ddd;
    }

    .footer-privacy-policy a {
        text-decoration: none;
        color: #2c3e50;
        margin: 0 0.5rem;
        transition: color 0.3s;
    }

    .footer-privacy-policy a:hover {
        color: #e74c3c;
    }
}
