/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 2px solid #ddd;
    height: 110px;
    position: fixed; /* Make navbar stick at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay above carousel */
}

.navbar-brand img {
    height: 90px;
    margin-top: -5px;
    width: 300px;
    margin-left: 25px;
}

.navbar-nav > li > a {
    margin-top: 30px;
    font-size: 18px;
    color: black !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.navbar-nav > li > a:hover {
    color: red !important;
}

.navbar-toggle {
    margin-top: 33px;
    margin-right: 25px;
}
body {
        font-family: 'Poppins', sans-serif;
        background-color: #f9f9f9;
        color: #333;
    }
    .about-us{
        margin-bottom: 90px;
    }
    .container {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .section-title {
    font-size: 36px;
    font-weight: 600;
    margin-top: 140px;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
/*    position: relative;*/
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
}

    .section-subtitle {
        font-size: 14px;
        color: #555;
        margin-bottom: 40px;
    }

    /* About Us Styling */
    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 40px 0;
    }

    .about-text {
        width: 100%;
    }

    .about-text h2 {
        font-size: 24px;
        font-weight: bold;
        color: #0056b3;
    }
    .about-text p{
        font-size: 16px;
        text-align: justify;
    }

    .about-image {
        width: 45%;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
    }

    /* Services Section */
    .services {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }

    .service-box {
        width: 30%;
        padding: 20px;
        background: #ffffff;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 8px 16px rgba(0, 86, 179, 0.3)
    }

   /* .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 86, 179, 0.3);
    }*/

    .service-box h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        letter-spacing: 1px;
        color: black;
        margin-bottom: 15px;
    }

    .service-box ul {
        list-style: none;
/*        font-size: 12px;*/
        padding: 0;
    }

    .service-box ul li {
        font-size: 12px;
        font-weight: bold;
        color: #555;
        margin-bottom: 15px;
    }
    .service-box p{
        font-size: 12px;
        font-weight: bold;
        color: #555;
        text-align: justify;
        padding:15px;
        padding-top:5px;
/*        padding-right:45px;*/
/*        margin-bottom: 15px;*/
    }

    /* Founder Section */
    .founder {
        background: #f1f1f1;
        padding: 60px 0;
        color: #333;
    }

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

    .founder-img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 4px solid #0056b3;
        box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
    }

    .founder-text {
        max-width: 500px;
        text-align: left;
    }

    .founder-text h3 {
        font-size: 1.8rem;
        color: #0056b3;
    }

    .founder-text p {
        font-size: 1.2rem;
        color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .navbar-brand img {
        height: 50px;
        width: auto;
        margin-top: 10px;
    }
    #navbar-menu{
        background-color: white;
    }
    .about-content {
        flex-direction: column;
        padding: 20px 15px;
        gap: 30px;
    }

    .about-text {
        width: 100%;
    }

    .about-text h2 {
        font-size: 20px;
        text-align: center;
    }

    .about-text p {
        font-size: 14px;
        text-align: justify;
    }

    .about-image {
        width: 100%;
    }

    .services {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .service-box {
        width: 100%;
        box-sizing: border-box;
    }

    .service-box h3 {
        font-size: 16px;
        text-align: center;
    }

    .service-box p, 
    .service-box ul li {
        font-size: 13px;
        text-align: justify;
    }

    .founder-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .founder-img {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .founder-text {
        width: 100%;
        text-align: center;
    }

    .founder-text h3 {
        font-size: 20px;
    }

    .founder-text p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .container {
        width: 90%;
        padding: 0 10px;
    }

    .about-us {
        margin-bottom: 60px;
    }
}



/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px;
    }
    .contact-box {
        margin-top: 20px;
    }
    .founder-content img{
        margin-top: 25px;
        margin-bottom: -25px;
    }
}


.footer {
    background-color: #1c1c1c;
    color: #e0e0e0; 
    padding: 50px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1); 
    font-family: 'Poppins', sans-serif;
}
.footer .container {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer .col-md-3 {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #c2c2c2;
}