/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
}
h2 {
    margin:  2rem;
}
/* Header and Navigation */
header {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .9)), url('assets/background.jpg') no-repeat center center/cover;
    background-blend-mode:multiply;
}

nav {
    width: 100%;
    background: transparent;
    background-blend-mode:multiply;
    padding: 1rem 2rem;
    position: relative;
    top: 0;
    left: 0;
    z-index: 3
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    flex: 1;
}

nav .logo a {
    display: block;
}

nav .logo-img {
    max-height: 50px;
    width: auto;
}


nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
/* Add this to your CSS */

nav .nav-links {
    /* transform: translateX(100%); */
    transition: transform 0.3s ease;
}

nav .nav-links.active {
    transform: translateX(0);
}

.menu-toggle.active .hamburger {
    transform: rotate(90deg);
}


nav .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav .nav-links li a:hover {
    /* color: #000000; */
    border-bottom: 2px solid #ffffff;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    nav .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

    .menu-toggle .hamburger {
        font-size: 2rem;
    }

    nav .nav-links li a {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
   
  
 
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative; */
}

.hero-overlay {
   
    /* position: absolute;
    top: 0;
    left: 0; */
  
    min-height: fit-content;
    max-height:max-content;
    /* background: rgba(0, 0, 0, 0.5);  */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    margin-top: 2rem;
}

/* Add this to your CSS */

.hero-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-content.fade-in {
    opacity: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid #ffffff; /* White border */
    margin: 1rem 0;
}
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        font-size: 1.1rem; /* Smaller font size for mobile screens */
        padding: 8px 16px; /* Adjust padding if needed */
    }
}

.btn-primary {
    background: #000000;
    color: #fff;
}

.btn-primary:hover {
    background: #363536;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #4a4a4a;
    color: #fff;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Section */
/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust column count based on available space */
    gap: 2rem; /* Space between grid items */
    text-align: center;
    margin: 0 auto; /* Center the grid container */
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Add this to your CSS */

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card.zoom {
    transform: scale(1.05);
}

.feature-card i {
    color: #000000; /* Icon color */
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
}


/* Screenshots */
.screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-evenly;

    align-items: start;
    
}

.screenshot-gallery img {
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 100%;
    max-width: 200px;
    height: auto;    align-self:flex-start;
    


}

/* Testimonials */
.testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
   
}
/* Add this to your CSS */

.testimonial {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.testimonial.fade-in {
    opacity: 1;
}

.testimonial p {
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #777;
}
#download .container ,#contact .container {
    display: flex;
    flex-direction: column;
    align-items:center;
}
/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}
/* Add this to your CSS */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}
