* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    width: 100%;
    background: #0d1625;
    padding: 15px 5%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 80px;
}


.header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    width: 150px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00aaff;
}


.loginbtn {
    background: #007bff;
    border: none;
    padding: 3px 18px;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.loginbtn:hover {
    background: #005fcc;
    transform: scale(1.05);
}


.menu-icon {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}


.dropdown-menu {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}


.dropdown:hover .dropdown-menu {
    display: block;
}


.dropdown-menu li a {
    color: #fff;
    padding: 5px 0 !important;
    display: block;
    text-decoration: none;
    background: transparent !important;
}

.dropdown-menu li a:hover {
    color: #0db2ff;
    background: transparent !important;
}


@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: -600px;
        left: 0;
        width: 100%;
        background: #0d1625;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 0 30px 0;
        transition: 0.4s ease;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
    }

    .nav-links.active {
        top: 60px;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .loginbtn {
        font-size: 18px;
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 130px;
    }

    .nav-links li a {
        font-size: 17px;
    }
}


/* section manin */



.service-hero {
    width: 100%;
    height: 450px;
    background: url('./image/contact.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.service-hero-content h1 {
    font-size: 55px;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.service-hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.service-hero-content h4 {
    font-size: 18px;
}

.service-hero-content h4 a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.service-hero-content h4 span {
    color: #ddd;
}


/* section services */

.services-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.services-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
}

.service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    transition: .5s ease;
}

.service-card:hover .service-content {
    bottom: 0;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-card img {
        height: 250px;
    }
}


@media (max-width: 480px) {
    .services-section {
        padding: 60px 3%;
    }

    .services-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .service-card img {
        height: 200px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }
}


/* section stats */

.service-stats {
    width: 100%;
    padding: 80px 5%;
    background: #f8f8f8;
    text-align: center;
    font-family: Arial, sans-serif;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat {
    flex: 1 1 200px;
    background: linear-gradient(135deg, rgb(159, 253, 253), rgb(162, 246, 162));
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h2 {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 10px;
}

.stat p {
    font-size: 18px;
    color: #555;
}


/* section why choose */

.why-choose-us {
    padding: 80px 5%;
    background: #f9f9f9;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    background: linear-gradient(to bottom, rgb(165, 230, 165), rgb(188, 188, 239));
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #555;
}




/* section footer */

.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #007bff;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}


.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
}


.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}


.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #aaa;
}


.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s;
}

/* .footer-social .social-icons img:hover {
    transform: scale(1.2);
} */


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}


@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}