﻿/* ===========================
   HERO SLIDER FULLSCREEN
   =========================== */
.hero-slider {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

    .hero-slider .slide {
        width: 100%;
        height: 100vh;
        position: relative;
    }

/* Media inside slide (video or img) */
    .hero-media video,
    .hero-media img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ===========================
   DARK OVERLAY
   =========================== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* darker layer */
    z-index: 1;
}

/* ===========================
   TEXT OVERLAY
   =========================== */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 70%;
}

    .hero-text h1 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: clamp(1rem, 2vw, 1.4rem);
        margin-bottom: 1.5rem;
    }

/* Button */
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent, #C19A46);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background: #fff;
        color: black;
    }

/* ===========================
   SLICK ARROWS
   =========================== */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

    .slick-prev:hover,
    .slick-next:hover {
        /*background: rgba(0, 0, 0, 0.65);*/
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 22px;
        /*color: white;*/
        opacity: 1;
    }

/* ===========================
   SLICK DOTS
   =========================== */
/* Position dots on the right-center vertically */

.slick-dots {
    position: absolute;
    bottom: 0px; /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    z-index: 5;
}

    /* Remove default button shape */
    .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }

        /* Line-shaped dots (horizontal) */
        .slick-dots li button {
            width: 40px; /* length of the bar */
            height: 4px; /* thickness of the bar */
            background: rgba(255, 255, 255, 0.4);
            padding: 0;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            /* Remove default dot content (::before) */
            .slick-dots li button:before {
                content: "";
            }

        /* Active slide highlighted */
        .slick-dots li.slick-active button {
            background: var(--accent, #C19A46); /* gold accent */
            width: 50px; /* slightly longer for emphasis */
        }
.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    transform: none; /* remove center alignment */
}
/* ===========================
   SCROLL DOWN ARROW
   =========================== */
.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 5;
}

    .scroll-down span {
        display: block;
        width: 30px;
        height: 30px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        animation: arrowBounce 2s infinite;
    }

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

/* ===========================
   NEXT SECTION PLACEHOLDER
   =========================== */
#next-section {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 100px 40px;
}

/* ===========================
   RESPONSIVE MOBILE
   =========================== */
@media (max-width: 768px) {
    .hero-text {
        max-width: 90%;
    }

        .hero-text h1 {
            font-size: 1.8rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    .hero-btn {
        font-size: 0.9rem;
        padding: 10px 22px;
    }

    .slick-prev, .slick-next {
        width: 36px;
        height: 36px;
    }
}



/* ===== Section 2: 70/30 Layout ===== */
.about-section {
    min-height: 70vh;
    max-height:80vh;
    display: flex;
    align-items: center;
    padding: 20px var(--padX);
    background: #fff;
}

/* Inside container */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Title */
.about-title {
    font-size: var(--menu-title-size);
    font-weight: 300;
    letter-spacing: .02em;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Bigger text */
.about-text {
    flex: 0 0 60%;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    padding-left:10%;
    padding-right:10%;

}

/* Image sizing */
.about-image {
    flex: 0 0 30%;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

/* Mobile layout */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
        margin-top:5%;
    }

    .about-text, .about-image {
        flex: 0 0 100%;
        text-align: center;
        padding-left: 0%;
        padding-right: 0%;
    }

    .about-title {
        font-size: var(--menu-title-size);
        font-weight: 300;
        letter-spacing: .02em;
        color: var(--accent);
    }
}
/* Section background */
/*.approach-section {
    background: #f5f5f5;
    padding: 80px var(--padX);
    text-align: center;
}*/

/* Section title styled like menu-title */
/*.section-title {
    font-size: var(--menu-title-size);
    font-weight: 300;
    letter-spacing: .02em;
    color: var(--accent);
    margin-bottom: 20px;
}*/

/* Gray description under title */
/*.approach-text {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}*/

/* Stats row (3 columns) */
/*.approach-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}*/

/* Each stat box */
/*.stat-box {
    flex: 1;
    text-align: center;
}*/

/* Numbers */
/*.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent, #C19A46);
}

.plus {
    font-size: 2rem;
    color: var(--accent);
    margin-left: 4px;
}

.stat-label {
    margin-top: 10px;
    font-size: 1rem;
    color: #444;
}*/

/* Mobile responsive stack */
/*@media (max-width: 992px) {
    .approach-stats {
        flex-direction: column;
        gap: 30px;
    }
}*/

/* ========== SECTION 4: STRATEGIC CAPABILITIES ACROSS KEY SECTORS ========== */

.sectors1-section {
    background: #ffffff;
    /*padding: 80px var(--padX);*/
    text-align: center;
}

.sectors1-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.sectors1-section .section1-title {
    font-size: var(--menu-title-size); /* Same as menu-title */
    /*font-weight: 300;*/
    letter-spacing: .02em;
    margin-bottom: 20px;
}

.sectors1-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* === Carousel Wrapper === */
.sectors1-carousel {
    width: 100%;
}

/* === Individual Card === */
.sector1-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 0 15px;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

    .sector1-card:hover {
        border-color: var(--accent); /* Gold */
        box-shadow: 0 6px 16px rgba(193,154,70,0.15); /* Golden glow */
    }


    .sector1-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .sector1-card h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 20px 20px 10px;
        color: #111;
    }

    .sector1-card p {
        font-size: 0.95rem;
        margin: 0 20px 10px;
        color: #555;
        line-height: 1.5;
    }

    .sector1-card .tags {
        font-size: 0.85rem;
        color: #888;
        margin: 0 20px 15px;
        line-height: 1.4;
    }

    /* CTA Button */
    .sector1-card .learn-more {
        display: inline-block;
        margin: 0 20px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .sector1-card .learn-more:hover {
            color: #000;
        }

/* Slick Carousel Navigation Styling */
.slick-prev:before, .slick-next:before {
    content: "→";
    font-size: 30px;
    color: var(--accent);
}

.slick-prev {
    left: -40px;
    transform: rotate(180deg);
}

.slick-next {
    right: -40px;
}

/* Dots under Carousel */
.slick-dots {
    left: 25%;
}

    .slick-dots li button:before {
        font-size: 10px;
        color: #888;
        opacity: 0.4;
    }

    .slick-dots li.slick-active button:before {
        opacity: 1;
        color: var(--accent);
    }

/* Responsive */
@media (max-width: 992px) {
    .sectors-section {
        padding: 60px 20px;
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .sector-card img {
        height: 180px;
    }

    .sector-card h3 {
        font-size: 1.1rem;
    }
}
.sector-card {
    position: relative;
}

    .sector-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .sector-card:hover::after {
        opacity: 1;
    }


/* === Slick Progress Bar === */
.slick-progress {
    position: relative;
    height: 4px;
    background: #ddd;
    margin-top: 25px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
}

.slick-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent); /* Gold */
    transition: width linear;
}
/* ========= SECTION 5 (ENABLERS) ========= */

.enablers-section {
    background: #f9f9f9;
    padding: 80px var(--padX);
}

.enablers-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ===== LEFT IMAGE (Desktop Only) ===== */
.enablers-image {
    flex: 1;
    position: relative;
}

    .enablers-image img {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: cover;
        border-radius: 10px;
        transition: opacity 0.6s ease;
    }

/* ===== RIGHT ACCORDION ===== */
.enablers-accordion {
    flex: 1;
    width:100%;
}

.acc-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.acc-title {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: left;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    font-family: var(--font-family);
    transition: color 0.3s ease;
}

    .acc-title.active,
    .acc-title:hover {
        color: var(--accent);
    }

    .acc-title .icon {
        font-size: 1.2rem;
        font-weight: 600;
    }

/* Accordion content */
.acc-content {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
    animation: accOpen 0.4s ease forwards;
}

    .acc-content ul {
        margin: 0;
        padding-left: 18px;
    }

    .acc-content img.acc-img-mobile {
        margin-top: 15px;
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

/* Smooth accordion open animation */
@keyframes accOpen {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .enablers-container {
        flex-direction: column;
    }

    .enablers-image {
        display: none; /* hide left image on mobile/tablet */
    }

    .acc-title {
        font-size: 1.2rem;
    }

    .acc-content ul {
        padding-left: 16px;
    }
}

/* Smooth image fade animation */
.enablers-image {
    position: relative;
}

    .enablers-image img {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: cover;
        border-radius: 10px;
        opacity: 1;
        transition: opacity 0.6s ease-in-out;
    }

        .enablers-image img.fade-out {
            opacity: 0;
        }

/* ===== CTA SECTION (Contact Banner) ===== */
/* ===== CTA SECTION (Split Background) ===== */
.cta-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 120px 0; /* Creates space around CTA box */
    background: linear-gradient( to bottom, #ffffff 0%, /* White top half */
    #ffffff 50%, #111111 50%, /* Black bottom half */
    #111111 100% );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gold CTA Box */
.cta-box {
    background: var(--accent); /* Gold accent */
    color: #fff;
    width: 80%;
    max-width: 1100px;
    padding: 50px 70px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 65%;
    line-height: 1.5;
}

.cta-button {
    padding: 14px 36px;
    border: 1.5px solid #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background: #fff;
        color: var(--accent);
    }

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        width: 90%;
    }

    .cta-text {
        max-width: 100%;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .cta-button {
        width: auto;
    }
}
