/* General Styles */
html {
    scroll-behavior: smooth;
}

/* Home Page */
/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-list, .benefits-container, .testimonials-container, .features-list {
        flex-direction: column;
    }
    .service-item, .benefit, .testimonial, .feature {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-section, .problem-solution-section, .benefits-section, .testimonials-section, .features-section, .faqs-section, .cta-section {
        padding: 20px 10px;
    }
    .hero-section h1, .problem-solution-section h2, .benefits-section h2, .testimonials-section h2, .features-section h2, .faqs-section h2, .cta-section h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .text-overlay {
        width: 100%; /* Makes the text overlay cover the full width on small screens */
    }
}

/* Navigation Bar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #87CEEB;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }
}


/* Hero Section */
.hero-section {
    text-align: center; /* Center align the content */
    width: auto;
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
}

.overlay-container {
    position: relative;
    width: auto;
    max-width: 1920px;
    margin: auto;
}

.hero-content, .hero-image {
    display: block;
    text-align: left;
}

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

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Adjust based on how much space you want the text overlay to cover */
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); /* Gradient from dark to transparent */
    padding: 20px; /* Adjust padding as needed */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content in the overlay */
}

.text-overlay * {
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000, /* Outline effect */
         2px 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect */
    color: #FFFFFF; /* Ensures text color is white for better visibility */
}

.service-item {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    margin: 10px;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    text-shadow:
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000, /* Outline effect */
         2px 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect */
}

.service-item:hover {
    transform: scale(1.05); /* Slightly increase size */
    background-color: #444; /* Darken the background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add shadow to the item */
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-content, .hero-image, .services-list {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .service-item {
        width: auto; /* Adjust the width for smaller screens */
    }
}

h1 {
    font-size: 2.5em; /* Larger and more eye-catching */
    margin-bottom: 20px;
}

.hero-section .cta-button {
    display: inline-block; /* Inline-block for left alignment */
    margin-right: 10px; /* Optional: Adjust spacing as needed */
}

.cta-section .cta-button {
    display: block;
    margin: 20px auto; /* Center the button */
}

.cta-button {
    background-color: #000080; /* Blue Button */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions for hover effects */
}

.cta-button:hover {
    background-color: #0000ff; /* Lighter blue on hover */
    transform: translateY(-3px); /* Slightly raise the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}


.services-list {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}
.service-item {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
}

/* Problem/Solution Section Styles */
.problem-solution-section {
    background-color: #242424; /* Slightly lighter dark background */
    color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
}
.problem-solution-section .content, .problem-solution-section .video-placeholder {
    width: 48%;
}
.problem-solution-section h2 {
    margin-bottom: 20px;
    color: #87CEEB; /* Accent color */
}
.pain-point {
    font-size: 1.1em;
    margin-bottom: 15px;
}
.pain-agitation, .solution-intro {
    margin-bottom: 15px;
}
.video-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.testimonials-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.testimonial {
    width: 30%;
    margin: 15px;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
}
.client-photo {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Circular profile pictures */
    margin-bottom: 10px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}
.rating img {
    max-width: 100px; /* Fixed width for star rating images */
}
.review-count {
    margin-top: 20px;
    font-style: italic;
    color: #bbb;
}

/* Features Section Styles */
.features-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns layout */
    gap: 20px;
    padding: 20px;
}
.feature {
    background-color: #333;
    padding: 15px;
    border-radius: 5px;
}

/* FAQs Section Styles */
.faqs-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: left;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq h3 {
    margin-bottom: 5px;
    color: #87CEEB; /* Accent color */
}

/* Call to Action Section Styles */
.cta-section {
    background-color: #242424;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.cta-section h2 {
    margin-bottom: 20px;
    color: #87CEEB; /* Accent color */
}
.cta-section p {
    margin-bottom: 20px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #333;
}

.about-container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}

.company-mission, .founder-description {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.founder-photo {
    float: left; /* Align photo to the left */
    margin-right: 20px; /* Add some space between the photo and the text */
    width: 150px; /* Adjust as needed */
    height: auto;
    border-radius: 50%; /* Circular photo */
}

/* Success Stories Page */
.work-container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
    background: #121212; /* Dark theme background */
    color: #ffffff; /* Light text for readability */
}

.project-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project {
    background: #1e1e1e; /* Slightly lighter than the container for contrast */
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    overflow: hidden;
}

.project-image {
    width: 25%;
    display: block;
    height: auto; /* Changed to maintain aspect ratio */
    object-fit: cover; /* Ensures the image fits nicely */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease; /* Smooth transition for effects */
    border-radius: 10px; /* Rounded corners for a softer look */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    margin: auto 20px; /* Center the image and add space below */
    cursor: pointer; /* Indicates the image is interactive */
}

.project-image:hover {
    transform: scale(1.05); /* Scale up image for emphasis */
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.project-details {
    padding: 15px;
}

.work-container h2 {
    color: #87CEEB; /* Using the given accent color */
}

.project p {
    color: #ccc; /* Light grey for better readability */
    font-size: 1rem;
}

.testimonial {
    background: rgba(135, 206, 235, 0.1); /* Subtle background using accent color */
    border-left: 4px solid #87CEEB; /* Accent color for the quote line */
    margin-top: 15px;
    padding: 10px;
}

blockquote {
    margin: 0;
    font-style: italic;
    color: #ddd; /* Light color for the quote text */
}

cite {
    display: block;
    text-align: right;
    color: #87CEEB; /* Accent color for the attribution */
}

/* Services Page */
.services-container {
    max-width: 960px;
    margin: auto;
    text-align: center;
}

.service h1 h2 {
    color: #87CEEB;
}

.service p {
    color: #f4f4f4;
}

.service-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates a three-column grid layout */
    gap: 20px;
    padding: 20px;
}

.service {
    background: #1c1c1c; /* Slightly lighter dark background for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.service-icon {
    width: 64px; /* Adjust based on actual icon size */
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .service-blocks {
        grid-template-columns: repeat(2, 1fr); /* Adjust to two columns for smaller screens */
    }
}

@media (max-width: 768px) {
    .service-blocks {
        grid-template-columns: 1fr; /* Single column for mobile devices */
    }
}

@media (max-width: 480px) {
    .service {
        width: 100%; /* Single column layout on very small screens */
    }
}

/* About Page */
.about-container {
    font-family: 'Arial', sans-serif;
    background: #121212; /* Dark theme background */
    color: #ffffff; /* Light text for readability */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: block; /* Make sure this is set to block to contain the section */
}

.company-mission {
    display: flex; /* Use flexbox to arrange child elements side by side */
    flex-wrap: wrap; /* Allows items to wrap in smaller viewports */
    align-items: flex-start; /* Align items at the start of the flex container */
    background: #121212; /* Dark background color */
    color: #ffffff; /* Light text color for readability */
}

.mission-text, .mission-image {
    flex-basis: 50%; /* Allocate equal width to both children */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

.mission-text {
    padding: 20px;
}

.mission-image img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional styling */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mission-text, .mission-image {
        flex-basis: 100%; /* Stack on smaller screens */
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mission-text,
    .mission-image {
        width: 100%; /* Stack the text and image on top of each other on small screens */
    }
}

.about-container h1, .about-container h2 {
    color: #87CEEB; /* Accent color for headings */
}

.company-mission, .founder-description {
    background: #1a1a1a; /* Slightly lighter dark background for sections */
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Box shadow for depth */
}

.company-mission p, .founder-description p {
    color: #cccccc; /* Light grey color for paragraph text */
}

.founder-photo {
    max-width: 200px; /* Adjust as necessary */
    height: auto;
    border-radius: 50%; /* Circular shape for the founder photo */
    margin: 20px 0; /* Spacing around the image */
    border: 3px solid #87CEEB; /* Border color accent */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow around photo */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        margin: 20px;
    }

    .founder-photo {
        display: block; /* Center the photo on smaller screens */
        margin: 0 auto 20px; /* Adjust margin for auto centering */
    }

    .company-mission, .founder-description {
        padding: 20px;
    }
}


/* Contact Page */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text */
    line-height: 1.6;
}

.navbar {
    background-color: #1a1a1a; /* Slightly lighter dark shade */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    color: #87CEEB; /* Light blue accent for the logo */
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #ffffff; /* Light text for navigation links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #87CEEB; /* Light blue accent on hover */
}

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1e1e1e; /* Dark background for the container */
    border-radius: 8px;
}

h1, h2 {
    color: #87CEEB; /* Light blue accent for headings */
    margin-bottom: 1rem;
}

.contact-info, .company-info {
    margin-bottom: 2rem;
}

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

input[type="text"], input[type="email"], textarea {
    padding: 10px;
    margin-bottom: 1rem;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: #ffffff;
}

button[type="submit"] {
    background-color: #87CEEB; /* Light blue accent for the submit button */
    color: #121212;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #a0d8ef; /* Lighter blue for hover effect */
}

/* Responsive Design for Navigation */
.burger div {
    display: none; /* Hide burger menu by default */
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links in mobile view */
    }

    .burger div {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #ffffff;
        margin: 5px;
        transition: all 0.3s ease;
    }
}
