* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    height: 70px;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: #3b82f6;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.line {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px;
    transition: 0.4s;
}

.hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), 
                url('images/hero.avif');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 950px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-solutions {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url('images/hero-bg2.JPG');
}

.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url('images/hero-bg3.JPG');

    justify-content: flex-start;
    text-align: left;
}

.hero-about p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 700px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-about p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.hero-about .hero-content {
    margin-left: 0;
    max-width: 800px;
}

.btn-outline, .btn-solid {
    padding: 14px 45px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #fff;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-solid {
    background: #fff;
    color: #000;
}

.btn-solid:hover {
    background: transparent;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-outline, .btn-solid { width: 100%; max-width: 280px; }
}

.about-info {
    padding: 100px 20px;
    text-align: center;
}

.who-we-are {
    max-width: 900px;
    margin: 0 auto 100px;
}

.who-we-are p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-col {
    text-align: center;
}

.about-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.about-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-info {
        padding: 60px 20px;
    }
}

.contact-section {
    background: #fff;
    padding: 100px 20px;
    color: #000;
    font-family: sans-serif;
}

.contact-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #333;
}

.contact-details i {
    font-size: 1.2rem;
    width: 20px;
    color: #000;
}

.contact-form {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.submit-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .info-heading {
        font-size: 2.2rem;
    }
}

.solutions {
    padding: 80px 20px;
    color: #fff;
}

.solutions-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.solutions-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.solutions-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 40px;
}

.solution-card {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.solution-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

.solution-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: auto;
    }

    .solutions-header h2 {
        font-size: 2rem;
    }
}

.cta-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
    color: #000;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-black,
.btn-gray {
    padding: 16px 45px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-black:hover {
    background-color: #333;
}

.btn-gray {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #f0f0f0;
}

.btn-gray:hover {
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-black,
    .btn-gray {
        width: 100%;
        max-width: 300px;
    }
}


.solutions-carousel {
    padding: 100px 0;
    background: #000;
    overflow-x: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-header .subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.carousel-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(240, 240, 240, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}

.nav-btn i {
    color: #000;
    font-size: 1.2rem;
}

.nav-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 60px 10%;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
    .carousel-card {
        flex: 0 0 450px;
    }
}

.card-image {
    position: relative;
    height: 280px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image .category {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000 !important;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    border-radius: 4px;
    z-index: 5;
}

.card-content {
    padding: 50px 30px 40px;
    text-align: center;
    background: #fff;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-details {
    background: #000;
    color: #fff;
    padding: 14px 60px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-btn {
        display: none;
    }

    .carousel-track {
        padding: 40px 5%;
    }

    .carousel-card {
        flex: 0 0 90%;
    }
}

.core-features {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}

.scroller-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.scroller-container::-webkit-scrollbar {
    display: none;
}

.scroller-inner {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 0;
    animation: scroll-infinite 20s linear infinite;
}

.scroller-inner:hover {
    animation-play-state: paused;
}

.feature-card {
    width: 400px;
    flex-shrink: 0;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f5f5f5;
    white-space: normal;
}

.feature-card i {
    font-size: 3.5rem;
    color: #3b82f6;
    margin-bottom: 30px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@keyframes scroll-infinite {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 15px));
    }
}


.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid #222;
    margin-top: auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo img {
    width: 35px;
    border: none;
    border-radius: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #3b82f6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .open .line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .open .line:nth-child(2) {
        opacity: 0;
    }

    .open .line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}