/* ==========================
   HERO AREA BASE STYLES
========================== */
.hero-area {
    width: 100%;
}

.hero-area .row {
    display: flex;
    flex-wrap: wrap;
    min-height: 70vh;
    /* Desktop height */
}

/* Columns stretch full height */
.hero-area .col-lg-8,
.hero-area .col-lg-4 {
    display: flex;
}

/* ==========================
   SLIDER
========================== */
.swiper.home-slider,
.hero-slide {
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

/* ==========================
   YOUTUBE BANNER
========================== */
.youtube-banner {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    display: flex;
}

.video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-link:hover .video-thumb {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.play-button svg {
    width: 64px;
    height: 64px;
}

/* ==========================
   SWIPER NAVIGATION
========================== */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================
   RESPONSIVE TYPOGRAPHY & LAYOUT
========================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    /* Stack columns vertically */
    .col-lg-8,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .youtube-banner {
        margin-top: 20px;
        min-height: 50vh;
    }

    .hero-slide {
        min-height: 50vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .play-button svg {
        width: 48px;
        height: 48px;
    }

    .youtube-banner,
    .hero-slide {
        min-height: 40vh;
    }
}

/* ===============================
   SERVICE CATEGORIES (PROFESSIONAL)
   Corporate / SaaS / Agency Ready
================================= */

.service-categories {
    padding: 80px 0;
    background: #f9fafb;
}

/* Heading */
.service-categories .sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #22C55E;
    margin-bottom: 10px;
}

.service-categories .section-summary {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
    line-height: 1.3;
    text-align: center;
}

/* Grid spacing */
.service-categories .row {
    row-gap: 30px;
}

/* ===============================
   CARD DESIGN (MODERN CORPORATE)
================================= */

.single-category {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;

    padding: 35px 25px;
    text-align: center;

    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    transition: all 0.25s ease;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.single-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #dbeafe;
}

/* ===============================
   ICON STYLE (CLEAN BUSINESS LOOK)
================================= */

.single-category .img-wrapper {
    width: 70px;
    height: 70px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f5f9;
    border-radius: 16px;
}

.single-category .img-wrapper img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* ===============================
   TEXT CONTENT
================================= */

.single-category .text {
    width: 100%;
}

.single-category h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.single-category p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 18px;
    min-height: 60px;
}

/* ===============================
   BUTTON STYLE (PROFESSIONAL CTA)
================================= */

.single-category .readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    font-size: 13px;
    font-weight: 600;

    color: #2563eb;
    background: #eff6ff;

    border-radius: 8px;
    text-decoration: none;

    transition: all 0.2s ease;

    margin-top: auto;
}

.single-category .readmore:hover {
    background: #2563eb;
    color: #ffffff;
}

/* See more */
.single-category .see-more {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.single-category .see-more:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 991px) {
    .service-categories {
        padding: 60px 0;
    }

    .service-categories .section-summary {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .single-category {
        padding: 28px 20px;
    }

    .single-category .img-wrapper {
        width: 60px;
        height: 60px;
    }

    .single-category .img-wrapper img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 575px) {
    .service-categories {
        padding: 50px 0;
    }

    .service-categories .section-summary {
        font-size: 22px;
    }

    .service-categories .row {
        row-gap: 20px;
    }
}