﻿/* RESET */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */



/* ===== HERO SECTION ===== */
.hero-section {
    width: 100%;
    margin-top: 80px; 
}

/* ===== SWIPER ===== */
.mySlider {
    width: 100%;
}

/* ===== SLIDE ===== */
.hero-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== IMAGE (MAIN FIX) ===== */
.hero-img {
    width: 100%;
    height: auto; /* 🔥 FULL IMAGE SHOW (NO CUT) */
    display: block;
}

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2,6,23,0.4), transparent);
    pointer-events: none;
}

/* ===== PAGINATION ===== */
.swiper-pagination {
    bottom: 15px !important;
}

.swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #f59e0b;
    width: 25px;
    border-radius: 10px;
}

/* ===== REMOVE EXTRA SPACE ===== */
body {
    margin: 0;
    padding: 0;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
    margin: 0;
    padding: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {

    .hero-section {
        margin-top: 70px;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {

    .hero-section {
        margin-top: 60px;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }

    /* pagination mobile */
    .swiper-pagination {
        bottom: 5px !important;
    }
}





/* SERVICE SECTION  */
.svc-section {
    width: 100%;
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 60px 0; 
    overflow: hidden;
}

/* CONTAINER */
.svc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* HEADER */
.svc-header span {
    color: #94a3b8;
    font-size: 14px;
}

.svc-header h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
}

/* SLIDER */
.svc-slider {
    padding: 30px 0;
    overflow: hidden;
}

    /* 🔥 IMPORTANT FIX */
    .svc-slider .swiper-wrapper {
        align-items: center;
    }

    .svc-slider .swiper-slide {
        display: flex;
        justify-content: center;
    }

/* CARD */
.svc-card {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    padding: 25px;
    text-align: center;  
    transform: scale(0.75);
    opacity: 0.4;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
    transition: all 0.4s ease;
}
    /* hover effect */
    .svc-card:hover {
        transform: scale(1.08) rotateX(3deg) rotateY(3deg);
        box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }

.svc-header h2 {
    margin-bottom: 30px;
}
/* IMAGE */
.svc-img img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TEXT */
.svc-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.svc-content p {
    font-size: 14px;
    color: #666;
}

/* CENTER ACTIVE CARD */
.svc-slider .swiper-slide-active .svc-card {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    z-index: 2;
}

/* SIDE CARDS */
.svc-slider .swiper-slide-prev .svc-card,
.svc-slider .swiper-slide-next .svc-card {
    transform: scale(0.9);
    opacity: 0.7;
}

/* NAV BUTTONS */
.svc-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.svc-btn-prev,
.svc-btn-next {
    width: 45px;
    height: 45px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.svc-btn-next {
    background: #3b82f6;
}

    .svc-btn-prev:hover,
    .svc-btn-next:hover {
        transform: scale(1.1);
    }

/* RESPONSIVE */
@media (max-width: 768px) {

    .svc-slider {
        padding: 30px 0;
    }

    .svc-card {
        transform: scale(1) !important;
        opacity: 1 !important;
        max-width: 100%;
    }
}



/*Our Services*/

