/* General Styles */

body {
    font-family: "Segoe UI", Tahoma, Verdana, Geneva, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color:  #1a1a1a;
}

/* Header Section */
header {
 background: linear-gradient(135deg, #f9f9f9, #f9f9f9);
    color: #1a1a1a;
  
       margin-top: -23px;
}

nav {
    height: 80px;
    border-radius: 20px;
    border-style: dashed;
    border-width: 0 0 1px;
    border-color: #ff6f61;
       box-shadow: rgba(23, 43, 99, .3) 1px 1px 8px;
   display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    align-content: stretch;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
   display: flex;
    gap: 15px;
    list-style: none;
    margin: 10px 0;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.nav-links a {
    color: #1D2A5D;
    font-weight: 600;
    font-size: 1rem;
}
.nav-links a:hover {
    color:#24cd77;
   
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.hero-text {
    max-width: 100%;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 35px;
}

.hero-image img {
    border-radius: 10px;
    max-width: 100%;
    margin-top: 10px;
      box-shadow: rgba(23, 43, 99, .3) 1px 1px 8px;
}

/* Features Section */
.features {
   
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}
a.download-btn {
    color: white;
}
.download-btn{
        font-weight: 600;
     background:#AD0F00;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}
.download-btn:hover {
    box-shadow: 0 0 20px #ff6f61;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3.3rem;
    color: #ff6f61;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Screenshots Section */
.screenshots {
    padding: 60px 0;
    text-align: center;
}

.screenshots h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.screenshot-grid img {
    max-width: 100%;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    background: #f4f4f9;
    padding: 60px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    max-width: 300px;
    width: 100%;
}

.step img {
    max-width: 100%;
    border-radius: 10px;
}

.step h3 {
    font-size: 1.3rem;
    margin: 15px 0;
}

.step p {
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-item h4 {
    font-size: 1.1rem;
    color: #AD0F00;
}

/* Footer Section */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
  display: flex
;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-around;
  

}

.footer-logo h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 10px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
        gap: 10px;
    }

    .feature-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .feature-item, .testimonial-item {
        padding: 15px;
    }

    .screenshot-grid img {
        width: 100%;
    }
}