/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
}

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #007bff;
        }

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

    .menu-toggle:hover {
        color: #007bff;
    }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5px;
    max-width: 1200px;
    margin: 80px auto 0;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    padding: 20px;
    margin-top:50px;
}

    .hero-content h1 {
        font-size: 2.5rem;
        color: #007bff;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
    }

    .hero-content button {
        background: #007bff;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s;
    }

        .hero-content button:hover {
            background: #0056b3;
        }

.hero-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

/* About Section */
.about-container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    flex-wrap: wrap;
    
}

    .about-container .left,
    .about-container .right {
        flex: 1;
        padding: 20px;
        margin-top:35px;
    }

        .about-container .left img {
            max-width: 100%;
            
            border-radius: 10px;
        }

        .about-container .right h1 {
            font-size: 2rem;
            color: #007bff;
            margin-bottom: 20px;
        }

        .about-container .right p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons i {
        font-size: 1.5rem;
        color: #007bff;
        cursor: pointer;
        transition: color 0.3s;
    }

        .social-icons i:hover {
            color: #0056b3;
        }

/* Product Section */
#product {
    background: #f9f9f9;
}

/* Founder Section */
.team-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    margin-top:100px;
}

    .team-section h2 {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 30px;
    }
.team-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    width: 260px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .team-card .socials {
        margin-top: 10px;
        display: none;
        justify-content: center;
        gap: 10px;
    }

        .team-card .socials i {
            font-size: 18px;
            color: #0077b5;
            cursor: pointer;
        }

    /* Hover Effect */
    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

        .team-card:hover .socials {
            display: flex;
        }

/* Footer Section */
.footer {
    background: #333;
    color: #fff;
    
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left,
.footer-center
 {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}
.footer-right {
    flex: 1;
    padding: 20px;
    min-width: 250px;
    margin-left:10px;
}

    .footer-left img {
        max-width: 100px;
        margin-bottom: 10px;
    }

    .footer-left h2,
    .colorfont {
        color: #007bff;
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .footer-left p {
        font-size: 1rem;
    }

    .footer-center p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-center .green {
        color: #28a745;
    }

    .footer-center .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        margin-right: 15px;
        transition: color 0.3s;
    }

        .footer-center .social-icons a:hover {
            color: #007bff;
        }

    .footer-right h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-right ul {
        list-style: none;
        margin-left: -50px;
    }

        .footer-right ul li {
            margin-bottom: 10px;
        }

            .footer-right ul li a {
                color: #fff;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-right ul li a:hover {
                    color: #007bff;
                }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
}

    .scroll-top.active {
        opacity: 1;
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .team-card {
        width: 100%;
    }

    .footer-left h2,
    .colorfont {
        font-size: 1.2rem;
    }
}

.heading {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.blue {
    color: #007bff;
}

.black {
    color: black;
}




.contact-container {
    padding: 30px;
    max-width: 1000px;
    margin: auto;
}

.info-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 30px;
}
.info-box{
    padding:5px;
    
    border-radius:7px;
}
.info-box h3 {
    margin-bottom: 5px;
    color: #333;
}

.info-box p {
    margin: 0;
    color: #555;
}

.map-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .contact-form button {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

        .contact-form button:hover {
            background-color: #218838;
        }

@media (min-width: 768px) {
    .map-form-container {
        flex-direction: row;
        gap: 40px;
    }

    .map {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }
}
.mt100{
    margin-top:100px;
}
.mt125{
    margin-top: 125px;
}
.mt110{
    margin-top:110px;
}

.certificate-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.certificate-section a {
    text-decoration: none;
    color: #007BFF;
    font-weight: 500;
}

    .certificate-section a:hover {
        text-decoration: underline;
    }

.certificate-section i {
    margin-right: 8px;
    color: #e63946;
}
.size{

    width:200px;
    height:150px;
}
.mt15{
    margin-top: 15px;
}