/* =================================================
   home.css  —  Homepage Specific Styles
   Aberdeen Holdings
   ================================================= */

/* =================================================
   HERO / BANNER SECTION
   ================================================= */
/* =================================================
   HERO / BANNER SECTION (Slider Design matching reference screenshot)
   ================================================= */
.hero-slider-section {
    position: relative;
    height: 88vh;
    min-height: 650px;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

/* Gradient overlay: dark on left side for text readability, fading seamlessly to transparent on right */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.92) 0%, rgb(8 12 20 / 50%) 40%, rgb(8 12 20 / 10%) 70%, rgb(8 12 20 / 0%) 100%);
    z-index: 1;
}

.hero-slide-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Main Text Content Box */
.hero-content-box {
    max-width: 650px;
}

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tag-badge i {
    font-size: 14px;
}

.hero-main-title {
    font-size: 60px;
    line-height: 1.2;
    color: var(--white-color);
    margin-bottom: 22px;
}

.hero-main-title .highlight {
    color: var(--secondary-color);
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-paragraph {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Brand Button (Solid Teal Pill with Arrow) */
.btn-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(27, 191, 221, 0.35);
}

.btn-hero-brand:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(27, 191, 221, 0.5);
}



/* Right Side Vertical Navigation Arrows (Matching reference screenshot) */
.hero-side-nav {
    position: absolute;
    right: max(40px, calc((100vw - 1240px) / 2));
    top: 42%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(27, 191, 221, 0.85);
    border: none;
    color: var(--dark-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Bottom Counter Bar (Matching reference screenshot: 01 ───── 03) */
.hero-bottom-counter {
    position: absolute;
    bottom: 50px;
    left: max(40px, calc((100vw - 1240px) / 2));
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--white-color);
    letter-spacing: 1px;
}

.counter-line-track {
    width: 140px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.counter-line-fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: width 0.4s ease;
}


/* =================================================
   ABOUT SECTION
   ================================================= */
.about-section {
    padding: 100px 0;
    background-color: #f5f6f8;
}

/* Outer 2-column grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}

/* ─── LEFT: 2-sub-column image collage ─── */
.about-images-col {
    position: relative;
    /* space for dot grid */
}

/* Inner 2-col sub-grid */
.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 530px;
}

/* Tall portrait photo — full height of collage */
.about-img-portrait {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-portrait:hover img {
    transform: scale(1.04);
}

/* Right sub-column: stats box + landscape image stacked */
.about-collage-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

/* Stats badge (top portion of right sub-col) */
.about-stats-badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    text-align: center;
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.about-stats-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stats-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-align: center;
    width: 65%;
}

/* Landscape photo (bottom portion of right sub-col) */
.about-img-landscape {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-landscape:hover img {
    transform: scale(1.04);
}

/* Dot pattern — bottom-left corner decoration */
.about-dot-grid {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, #bbb 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* ─── RIGHT: Text content ─── */
.about-text-col {
    padding-left: 8px;
}

/* Tagline */
.about-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-tagline i {
    font-size: 13px;
}

/* Heading */
.about-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 18px;
}

.about-highlight {
    color: var(--primary-color);
}

/* Description */
.about-desc {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.75;
    padding-bottom: 20px;
}

/* Feature rows — separated by top border lines */
.about-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    border-top: 1px solid var(--gray-light);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}

/* Dashed circle icon (matches reference) */
.about-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    background-color: rgba(27, 191, 221, 0.05);
}

.about-feature:hover .about-feature-icon {
    background-color: var(--secondary-color);
    border-style: solid;
    color: var(--dark-color);
}

.about-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.about-feature-text p {
    font-size: 13px;
    color: var(--gray-color);
    line-height: 1.65;
}




.stats-counter-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white-color);
}

/* Box wrapper inside the container, not full-width bleed */
.stats-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    /* Dark brand blue background */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(1, 79, 110, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Slanted dark accent block confined inside the box layout */
.stats-split-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 100%;
    background-color: #0b374c;
    /* Darker accent tint of primary color */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 1;
}

/* Ensure left info stands above the absolute backdrop */
.stats-left-info {
    position: relative;
    z-index: 2;
    padding: 60px 20px 60px 50px;
}

/* Ensure grid stands above backdrop */
.stats-right-grid {
    position: relative;
    z-index: 2;
    padding: 40px 50px 40px 20px;
}




/* Right stats grid (2x2 layout) */
.stats-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

/* Vertical divider lines between stats columns */
.stats-right-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Transparent borders */
}

/* Horizontal divider lines between stats rows */
.stats-right-grid::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Transparent borders */
}

.stat-card-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 40px;
    transition: var(--transition-smooth);
}

.stat-card-box:hover {
    transform: translateY(-4px);
}

/* Round dark/glassmorphic icon container */
.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.stat-card-box:hover .stat-icon-wrapper {
    background-color: rgba(27, 191, 221, 0.1);
    border-color: rgba(27, 191, 221, 0.3);
    box-shadow: 0 8px 25px rgba(27, 191, 221, 0.25);
}

.stat-icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100px;
}

.stat-text-info {
    display: flex;
    flex-direction: column;
}

.stat-box-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
    /* White numbers */
    line-height: 1.1;
    margin: 0;
}

.stat-box-number span {
    color: var(--secondary-color);
    /* Secondary theme color (Teal) */
    margin-left: 2px;
}

.stat-box-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    /* High-contrast light gray label */
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive stats counter styles */
@media (max-width: 1024px) {
    .stats-split-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats-split-layout::before {
        width: 100%;
        clip-path: none;
        height: 250px;
    }

    .stats-left-info {
        text-align: center;
        padding: 50px 30px;
    }

    .stats-right-grid {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .stats-right-grid {
        grid-template-columns: 1fr;
    }

    .stats-right-grid::before,
    .stats-right-grid::after {
        display: none;
    }

    .stat-card-box {
        border-bottom: 1px solid #eaeaea;
        padding: 20px 0;
    }

    .stat-card-box:last-child {
        border-bottom: none;
    }
}





/* =================================================
   OUR PROFESSIONAL TEAM SECTION
   ================================================= */
/* =================================================
   OUR PROFESSIONAL TEAM SECTION
   ================================================= */
.people-section {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.team-card {
    text-align: center;
}

/* Double-bordered photo frame matching reference image but light-theme styled and circular */
.team-img-frame {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--gray-light);
    padding: 10px;
    border-radius: 50%;
    /* Circular shape */
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    background-color: var(--light-color);
}

.team-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    /* Circular shape */
}

.team-card:hover .team-img-frame {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(27, 191, 221, 0.15);
}

.team-member-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-member-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary-color);
    /* Theme color (Teal) */
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =================================================
   RESPONSIVE — Homepage sections
   ================================================= */
@media (max-width: 1024px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-collage {
        height: 340px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hero-main-title {
        font-size: 44px;
    }

    .play-video-btn {
        right: 10%;
    }

}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-container-layout {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .hero-main-title {
        font-size: 34px;
    }

    .hero-paragraph {
        font-size: 14px;
    }

    .hero-action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .play-video-btn {
        right: 20px;
        top: auto;
        bottom: 40px;
        transform: none;
    }

    .play-video-btn:hover {
        transform: scale(1.1);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 320px;
        margin: 0 auto;
    }

}

/* =================================================
   SECTORS SECTION
   ================================================= */
/* =================================================
   REDESIGNED MOCKUP SECTORS SLIDER
   ================================================= */
.sectors-v2-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #070b12 0%, #0c1322 50%, #060910 100%);
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

/* Animated Background Bordered Outline Circles */
.sectors-bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sectors-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(27, 191, 221, 0.25);
    box-shadow: 0 0 25px rgba(27, 191, 221, 0.12), inset 0 0 25px rgba(27, 191, 221, 0.05);
}

.sectors-bg-circles .circle-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -100px;
    border-color: rgba(27, 191, 221, 0.3);
    animation: floatCircleOne 18s infinite ease-in-out alternate;
}

.sectors-bg-circles .circle-2 {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -120px;
    border-color: rgba(27, 191, 221, 0.2);
    border-style: dashed;
    animation: floatCircleTwo 24s infinite ease-in-out alternate;
}

.sectors-bg-circles .circle-3 {
    width: 320px;
    height: 320px;
    top: 35%;
    right: 20%;
    border-color: rgba(255, 255, 255, 0.15);
    animation: floatCircleThree 16s infinite ease-in-out alternate;
}

@keyframes floatCircleOne {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, 80px) scale(1.2);
    }

    100% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

@keyframes floatCircleTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-70px, -60px) scale(1.15);
    }

    100% {
        transform: translate(40px, -90px) scale(0.95);
    }
}

@keyframes floatCircleThree {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 60px) scale(1.25);
    }

    100% {
        transform: translate(60px, -40px) scale(0.85);
    }
}

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

.sectors-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.sectors-v2-left {
    flex: 1 1 47%;
}

.sectors-v2-right {
    flex: 1 1 53%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sector-v2-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-v2-arrow:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(27, 191, 221, 0.3);
}

.section-head .eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sectors-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 191, 221, 0.12);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(27, 191, 221, 0.3);
    margin-bottom: 20px;
}

.sectors-v2-title {
    line-height: 1.1;
    color: var(--white-color);
    margin: 0;
}

.sectors-v2-title .highlight {
    color: var(--secondary-color);
}

.sectors-v2-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: right;
}

.sectors-v2-nav-btns {
    display: flex;
    gap: 12px;
}

/* 10 Industries Modern Interactive Grid */
.sectors-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

/* Individual Card */
.sector-v2-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
}

.sector-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    filter: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gradient overlay: Completely transparent at top, dark blue gradient at bottom for text legibility */
.sector-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.2) 40%, rgba(8, 12, 20, 0.85) 75%, rgba(6, 10, 18, 0.98) 100%);
    transition: all 0.4s ease;
}

/* Numbered Badge Top-Right */
.sector-v2-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 5;
    transition: all 0.4s ease;
}

.sector-v2-content {
    position: relative;
    z-index: 5;
}

.sector-v2-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(27, 191, 221, 0.15);
    border: 1px solid rgba(27, 191, 221, 0.3);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.sector-v2-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.sector-v2-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
}

.sector-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sector-v2-tags span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

/* Sectors Swiper Container Padding to fit hover box-shadow & lift */
.sectorsV2Swiper {
    padding: 20px 15px 30px 15px !important;
    margin: -20px -15px -30px -15px !important;
    overflow: hidden;
}

/* Hover States (WOW Effect) */
.sector-v2-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(27, 191, 221, 0.35);
    z-index: 10 !important;
}

.sector-v2-card:hover .sector-v2-bg {
    opacity: 1;
    filter: none;
    transform: scale(1.08);
}

.sector-v2-card:hover .sector-v2-overlay {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.25) 35%, rgba(1, 79, 110, 0.88) 75%, rgba(1, 79, 110, 0.98) 100%);
}

.sector-v2-card:hover .sector-v2-badge {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.sector-v2-card:hover .sector-v2-icon {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

.sector-v2-card:hover .sector-v2-tags span {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: var(--white-color);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
    .sectors-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sectors-v2-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .sectors-v2-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================
   COMPANY LOGOS SHOWCASE SECTION
   ================================================= */
.logos-showcase-section {
    padding: 90px 0;
    background-color: var(--white-color);
    border-top: 1px solid var(--gray-light);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 80px;
    /* Generous gap for breathing space */
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 160px;
    height: 70px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logos-grid {
        gap: 30px 40px;
    }

    .logo-item {
        max-width: 120px;
        height: 50px;
    }
}

/* =================================================
   NEWS & INSIGHTS SECTION (Exact Mockup Layout)
   ================================================= */
.news-grid-section {
    background-color: #ffffff;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-box-card {
    position: relative;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-box-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.news-box-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-box-card:hover .news-box-bg {
    transform: scale(1.08);
}

/* Overlay gradient dark on bottom for text contrast */
.news-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.25) 40%, rgba(1, 79, 110, 0.88) 75%, rgba(6, 10, 18, 0.98) 100%);
    transition: all 0.4s ease;
}

/* Full card tint overlay on hover matching screenshot */
.news-box-card:hover .news-box-overlay {
    background: linear-gradient(180deg, rgba(1, 79, 110, 0.88) 0%, rgba(6, 10, 18, 0.94) 100%);
}

/* Date Pill Top Right */
.news-box-date {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(1, 79, 110, 0.35);
    transition: all 0.35s ease;
}

.news-box-card:hover .news-box-date {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.news-box-content {
    position: relative;
    z-index: 5;
}

.news-box-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 20px;
}

.news-box-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.news-box-card:hover .news-box-link {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .news-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-card-grid {
        grid-template-columns: 1fr;
    }

    .news-box-card {
        height: 380px;
    }
}