* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f9;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: transparent;
    transition: 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 75px;      /* Desktop size */
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #00bfff;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("./images/homebg.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 8%;
        background: rgba(0,0,0,0.9);
        padding: 20px;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 30px;
    }

     .logo img {
        height: 32px;
    }
}




/* ----------------------trust-strip---------------------------- */

.trust-strip {
    background: #ffffff;
    padding: 70px 8%;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    margin: 20px 0;
}

.trust-item h2 {
    font-size: 42px;
    color: #00bfff;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .trust-container {
        flex-direction: column;
        gap: 30px;
    }
}










/* -------------------impact-page-------------- */

.about-section {
    padding: 100px 8%;
    background: #f7f9fc;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1f44;
}

.about-text p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}





/* -------------------carousel------------------------------ */


.services-section {
    padding: 120px 8%;
    background: #0a1f44;
    color: white;
    overflow: hidden;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.small-title {
    color: #00bfff;
    font-size: 14px;
    letter-spacing: 3px;
}

.services-header h2 {
    font-size: 42px;
    margin-top: 10px;
}

/* Carousel */
.carousel-track {
    overflow: hidden;
    position: relative;
}

.carousel-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLoop 25s linear infinite;
}

.service-card {
    min-width: 320px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 14px;
    text-align: left;
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #00bfff;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Smooth continuous animation */
@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 30px;
    }

    .service-card {
        min-width: 260px;
    }
}




.testimonial-section {
    padding: 120px 8%;
    background: #f4f7fb;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 70px;
}

.testimonial-header h2 {
    font-size: 40px;
    margin-top: 10px;
    color: #0a1f44;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: #0a1f44;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}



/* ---------------------footer----------------------- */.footer {
    background: #081a36;
    color: #ccc;
    padding: 80px 8% 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00bfff;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #888;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}