html {
    scroll-behavior: smooth;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.7;
    color: #4f4f4f;
    background-color: #fdfdfd;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #3498db;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

header a:hover {
    color: #3498db;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(52, 152, 219, 0.85), rgba(41, 128, 185, 0.9)), url('https://images.unsplash.com/photo-1603136808432-909434552525?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px; /* Offset for fixed header */
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #fff;
    background: #fff;
    color: #2980b9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* About Section */
#about {
    background: #fff;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
}

/* About Section */
#about {
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image, .about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text li {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #4f4f4f;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: #3498db;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-top: 0;
    color: #3498db;
}

/* Founder Section */
#founder {
    background: #f9f9f9;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.founder-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.founder-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    header ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 15px;
    }

    #hero {
        height: auto;
        padding: 100px 0;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content, .founder-content {
        flex-direction: column;
        text-align: center;
    }
}
