/* General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    color: #fff;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Accent Color: Dark Red */
.text-dark-red {
    color: rgb(139, 0, 0) !important;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
}

.btn-dark-red {
    background-color: rgb(139, 0, 0);
    color: #fff;
    border: 2px solid rgb(139, 0, 0);
}

.btn-dark-red:hover {
    background-color: #fff;
    color: rgb(139, 0, 0);
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navbar-brand img {
    border-radius: 50%;
}

.navbar-brand .fw-bold {
    font-size: 1.25rem;
}

.nav-link {
    color: rgb(139, 0, 0);
}

.nav-link:hover {
    text-decoration: underline;
}

/* Sections */
section {
    display: flex;
    align-items: center;
    padding-top: 60px; /* Adjust for navbar height */
}

.hero-section {
    min-height: calc(100vh - 60px); /* Subtract navbar height */
}

.feature-section {
    min-height: 100vh;
}

/* Limit the size of feature images */
.feature-section img {
    max-width: 100%; /* Ensure the image does not exceed the container's width */
    max-height: 350px; /* Set a maximum height for the images */
    object-fit: cover; /* Adjust the image to fit within the specified dimensions */
    margin: auto; /* Center the image */
}


.call-to-action-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Feature Images */
img.rounded-shadow {
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15), 0 4px 10px rgba(0, 0, 0, 0.15);
	max-width: 350px;
    height: auto;
}

/* Footer */
footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-link {
    font-size: 0.85rem;
    color: #aaa;
}

.footer-link:hover {
    color: #fff;
}

.footer-text {
    font-size: 0.75rem;
    color: #aaa;
}

footer a {
    color: #aaa;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Adjustments for mobile devices */
@media (max-width: 991.98px) {
    section {
        padding-top: 80px; /* Increase padding-top to prevent overlap with navbar */
    }
    .hero-section {
        min-height: auto;
    }
    .feature-section {
        min-height: auto;
    }
    .call-to-action-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .call-to-action-section p {
        font-size: 1.65rem;
    }
    .col-lg-5,
    .col-lg-6 {
        max-width: 100%;
    }
    .offset-lg-1 {
        margin-left: 0;
    }
    /* Add spacing between image and text */
    .feature-section img {
        margin-bottom: 1.5rem;
    }
    /* Add spacing below feature text */
    .feature-section .col-lg-5,
    .feature-section .col-lg-6 {
        margin-bottom: 1.5rem;
    }
    .feature-section h2 {
        margin-bottom: 1rem;
    }
    .feature-section p {
        margin-bottom: 1.5rem;
    }
	
	    .contact-section .row {
        flex-direction: column-reverse;
    }
    .contact-section .col-lg-6 {
        margin-bottom: 30px;
    }
}

/* App Store Buttons */
.app-store-button {
    height: 50px; /* Set a consistent height */
    object-fit: contain; /* Maintain aspect ratio */
    display: inline-block;
}

@media (max-width: 991.98px) {
    /* Add space above "Unleash" text */
    .hero-section .display-5 {
        margin-top: 2rem; /* Extra space above the heading */
    }

    /* Add space above and below App Store buttons */
    .hero-section .mt-4 {
        margin-top: 2.5rem !important; /* Ensure extra space above the buttons */
    }
	
	    /* Add space below the app screenshot */
    .hero-section img {
        margin-bottom: 2rem; /* Extra space below the app screenshot */
    }
}

/* Existing styles remain unchanged */

/* Contact Section Styles */
.contact-section {
    padding-top: 100px !important; /* Increased space between header and the section */
    padding-bottom: 100px;
}

/* Button Styles */
.btn-dark-red {
    background-color: rgb(139, 0, 0);
    color: #fff;
    border: 2px solid rgb(139, 0, 0);
}

.btn-dark-red:hover {
    background-color: #fff;
    color: rgb(139, 0, 0);
    text-decoration: none;
}

/* Existing styles remain unchanged */

/* Sticky Footer Styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.contact-section .btn-dark-red {
    margin-top: 20px;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: rgb(139, 0, 0); /* Dark red color for the "Contact Us" title */
}

.contact-section p.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem; /* Reduced spacing between "Contact Us" and the paragraph */
}

.contact-section h2 {
    font-size: 2rem;
}

.contact-section .btn-dark-red {
    margin-top: 20px;
}

/* Image Styles */
img.rounded-shadow {
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 350px; /* Restrict maximum width of the image */
    height: auto; /* Maintain aspect ratio */
    align-self: flex-start; /* Align image with the top of the left content */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-section .row {
        flex-direction: column-reverse;
    }
    .contact-section .col-lg-6 {
        margin-bottom: 30px;
    }
}

.contact-support-section {
    padding-top: 5rem; /* Keeps spacing above consistent */
    padding-bottom: 5rem; /* Add sufficient space below the button */
    text-align: center; /* Ensure content stays centered */
}

.privacy-policy-section {
    padding-top: 8rem !important; /* Ensures the section starts below the header */
    padding-bottom: 5rem; /* Provides room above the footer */
}

.privacy-policy-section h1 {
    color: rgb(139, 0, 0); /* Matches the dark red theme */
    text-align: center;
}

.privacy-policy-section h2 {
    color: rgb(139, 0, 0); /* Change to dark red or any visible color */
    margin-top: 1rem; /* Adjust spacing above the title */
    margin-bottom: 1.2rem !important; /* Adjust spacing below the title */
}

.terms-of-service-section h1 {
    color: rgb(139, 0, 0); /* Matches the dark red theme */
    text-align: center;
}

.terms-of-service-section h2 {
    color: rgb(139, 0, 0); /* Change to dark red or any visible color */
    margin-top: 1rem; /* Adjust spacing above the title */
    margin-bottom: 1.2rem !important; /* Adjust spacing below the title */
}