:root {
    --primary-color: #2892d0;

    --secondary-color: #2892d0;

    --text-color: #000000;

    --background-color: #fff;
}
* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: "Poppins", sans-serif;
}

body {
    color: #000000;

    background-color: #fff;

    line-height: 1.6;
}

/* Header Top */

.header-top {
    background: #2892d0;

    color: #fff;

    font-size: 14px;

    padding: 8px 5%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;
}

.header-top .contact-info {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.header-top .contact-info span {
    display: flex;

    align-items: center;

    gap: 5px;
}

.header-top .company-name {
    font-weight: 600;

    text-align: right;
}

/* Navbar */

nav {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 5px 5%;

    background: #fff;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: relative;

    z-index: 1000;
}

.logo {
    display: flex;

    align-items: center;

    font-weight: 600;

    color: #000000;

    font-size: 16px;
}

.logo img {
    height: 100px;

    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap : 25px ;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

nav ul li a {
    text-decoration: none;

    color: #000000;

    font-weight: 500;
}

nav ul li a:hover {
    color: #2892d0;
}

.btn-primary {
    background: #2892d0;

    color: #fff;

    padding: 8px 24px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;
}
.view-more {
    background: #2892d0;

    color: #fff;

    padding: 10px 24px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;
}

.view-more:hover {
    background: #2892d0;
}

/* Hamburger Menu */

.menu-toggle {
    display: none;

    flex-direction: column;

    cursor: pointer;

    border: 1px solid #2892d0;

    padding: 6px;

    border-radius: 6px;
}

.menu-toggle span {
    height: 3px;

    width: 25px;

    background: #2892d0;

    margin: 4px 0;

    border-radius: 5px;
}

#menu-checkbox {
    display: none;
}

/* Hero Section */

.hero {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    padding: 30px 5%;

    background: #f3f8ff;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 60px;

    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;

    color: #000000;

    margin-bottom: 25px;
}

.hero img {
    max-width: 550px;

    width: 100%;
}

.clients-slider {
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.clients-track {
    display: flex;
    gap: 50px;
    animation: slide-left 10s linear infinite;
}

.client-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1);
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About */

.about {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 60px 5%;

    flex-wrap: wrap;
}

.about img {
    width: 600px;

    max-width: 100%;

    border-radius: 10px;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 48px;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-text p {
    color: #000000;

    margin-bottom: 25px;
}

/* Services */

.services {
    background: #f9f9f9;

    text-align: center;

    padding: 60px 10%;
}

.services h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.services p {
    color: #000000;

    max-width: 600px;

    margin: 0 auto 40px;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}

.service-card {
    background: #fff;

    border-radius: 10px;

    padding: 30px 20px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    transition: 0.3s;

    text-align: left;

    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin: 30px 0 20px 0;

    font-size: 24px;
}

.service-card p {
    color: #000000;

    font-size: 16px;

    margin-bottom: 15px;
}

.service-card a {
    color: #2892d0;

    text-decoration: underline;

    font-weight: 500;
}

/* Deliver Section */

.deliver {
    text-align: center;

    padding: 60px 10%;

    background: #fff;
}

.deliver h2 {
    font-size: 26px;

    margin-bottom: 20px;
}

.deliver p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #000000;
}

/* Footer */

footer {
    background: #2892d0;

    color: #fff;

    padding: 50px 10%;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 40px;
}

footer img {
    height: 60px;

    margin-bottom: 10px;
}

footer h3 {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #fff;

    text-decoration: none;

    font-size: 15px;
}

.footer-bottom {
    background: #2892d0;

    color: #fff;

    text-align: center;

    padding: 10px;

    font-size: 14px;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.top-button {
    background-color: #eaf4fa;
    color: #2892d0;
    border: 1px solid #2892d0;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-form {
    width: 100%;

    max-width: 450px;

    margin: 40px auto;

    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 25px;

    background: #ffffff;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid #cbd3e1;

    border-radius: 6px;

    font-size: 16px;

    outline: none;

    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1976d2;
}

.contact-form textarea {
    height: 120px;

    resize: none;
}

.send-btn {
    padding: 12px;

    background: #1976d2;

    color: #fff;

    border: none;

    border-radius: 6px;

    font-size: 17px;

    cursor: pointer;

    transition: 0.3s;
}

.send-btn:hover {
    background: #0f5bb5;
}

/* Message box */

.msg-box {
    padding: 12px;

    border-radius: 6px;

    display: none;

    font-size: 15px;
}

.msg-error {
    background: #ffe1e1;

    color: #c30000;

    border: 1px solid #ff9b9b;
}

.msg-success {
    background: #e6ffec;

    color: #0b7a35;

    border: 1px solid #8ae8a1;
}

.portfolio-modern {
    background: linear-gradient(180deg, #1e90ff, #0b6cd1);

    padding: 70px 20px;

    color: #fff;

    text-align: center;
}

.portfolio-modern .title {
    font-size: 36px;

    font-weight: 700;

    margin-bottom: 10px;
}

.portfolio-modern .subtitle {
    font-size: 18px;

    opacity: 0.9;

    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;

    max-width: 1200px;

    margin: auto;
}

/* Card */

.portfolio-card {
    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding-bottom: 20px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    transition: 0.3s;

    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

/* Slider box */

.slider-box {
    position: relative;
}

/* Gallery */

.scroll-gallery {
    display: flex;

    overflow-x: auto;

    scroll-behavior: smooth;

    gap: 10px;

    padding: 10px;
}

.scroll-gallery::-webkit-scrollbar {
    height: 0;
}

.scroll-gallery img {
    width: 100%;

    height: 220px;

    object-fit: cover;

    flex-shrink: 0;

    border-radius: 10px;
}

/* Slider Dots */

.dots {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 10px;
}

.dot {
    width: 10px;

    height: 10px;

    background: #ffffff66;

    border-radius: 50%;

    cursor: pointer;

    transition: 0.3s;
}

.dot.active {
    background: #fff;
}

/* Logo inside card */

.card-logo {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    margin: 15px 0;
}

.card-content {
    padding: 0 20px;
}

.card-content h3 {
    color: #fff;

    font-size: 22px;

    margin-bottom: 8px;
}

.card-content p {
    color: #e6e6e6;

    font-size: 15px;
}

@media (max-width: 1024px) {
    .hero,
    .about {
        padding: 60px 5%;
        align-items: center;
        justify-content: center;
    }
    .hero img {
        max-width: 428px;
        width: 100%;
    }

    .hero-text,
    .about-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 10%;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .about img {
        margin-bottom: 50px;
    }

    .about-text h2 {
        font-size: 36px;
        width: 100%;

        margin-bottom: 15px;
    }
    .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
            padding-left: 1rem;
        padding-right: 1rem;
}
}

/* Responsive */

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;

        text-align: center;

        gap: 5px;
    }

    nav ul {
        position: absolute;
        
        top: 111px;

        left: 0;

        width: 100%;

        background: #2892d0;

        flex-direction: column;

        align-items: flex-start;

        display: none;

        padding: 15px 0px 0px 40px;
    }

    nav ul li a {
        color: #fff;

        font-size: 18px;

        padding: 10px 0;

        display: block;
    }

    #menu-checkbox:checked ~ ul {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-primary {
        display: none;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 10%;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    footer {
        flex-direction: column;
    }
}
