/* ====================== */
/* TOP HEADER FOR SECTION */
/* ====================== */

body {
    margin: 0;
    padding: 0;
}

.section-top-header {
    background: #0e20959c;
    border: 2px solid #ece8e348;
    border-top: none;
    padding: 20px 40px;
    color: white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 80%;
    margin: 0 auto -82px;   /* pull header down to overlap next section */
    position: relative;
    z-index: 60;  
}

.header-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Return button */
.return-btn {
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid #fd9e2b;
}

.return-btn:hover {
    color: white;
    background-color: #06224e;
    color: #fd9e2b;
}


/* ====================== */
/* MAIN SECTION STYLING   */
/* ====================== */

.intelligence-section {
    padding: 80px 40px;
    margin: auto;
}

.intelligence-header {
    text-align: center;
    margin-bottom: 60px;
}

.intelligence-header h2 {
    font-size: 2.6rem;
    color: #1a2433;
    font-weight: 700;
    margin-bottom: 10px;
}

.intelligence-header .subtitle {
    font-size: 1.1rem;
    color: #5f6c7b;
    max-width: 650px;
    margin: auto;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.intel-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.07);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.intel-card:nth-child(2) {
    animation-delay: 0.15s;
}

.intel-card:nth-child(3) {
    animation-delay: 0.3s;
}

.intel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.intel-card h3 {
    font-size: 1.4rem;
    color: #2046a3;
    margin-bottom: 15px;
    font-weight: 700;
}

.intel-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .section-top-header {
        padding: 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title {
        font-size: 1.6rem;
    }
}


/* ========================= */
/*   TEXT LEFT / IMAGE RIGHT */
/* ========================= */

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.3rem;
    color: #1a2433;
    margin-bottom: 20px;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
    max-width: 600px;
}

/* IMAGE CONTAINER */
.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.split-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

/* Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .split-image img {
        max-width: 100%;
    }
}


/* ========================================== */
/*   EMPOWERING HEADER SECTION (HERO STYLE)   */
/* ========================================== */

.hero-powered {
    position: relative;
    height: 850px;
    background: url('/graic-img/graic.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 27, 41, 0.65); /* dark blue overlay */
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    color: #ffffff;
    animation: fadeInUp 0.9s ease forwards;
    opacity: 0;
}

.hero-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 700px) {
    .hero-powered {
        height: auto;
        padding: 60px 20px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}


/* ================================= */
/*        INTELLIGENCE SECTION       */
/* ================================= */

.intelligence-section {
    padding: 90px 40px;
    background: #f8fafc;
}

.intelligence-grid {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
    align-items: flex-start;
}

/* LEFT SIDE */
.intelligence-text {
    flex: 1.2;
}

.main-paragraph {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 40px;
    padding-left: 18px;
    border-left: 4px solid #3b82f6;   /* Blue accent line */
}

/* HEADERS */
.info-block h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 14px;
    margin-top: 35px;
    font-weight: 700;
}

/* BULLET POINTS */
.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
    line-height: 1.6;
    color: #4b5563;
    font-size: 1.05rem;
}

.info-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(59,130,246,0.4);
}

/* RIGHT SIDE IMAGE */
.intelligence-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intelligence-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeSlide 1s ease forwards;
}

/* ANIMATION */
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .intelligence-grid {
        flex-direction: column;
    }

    .intelligence-image img {
        max-width: 100%;
    }
}


/* ================================= */
/*           AI INTEL SECTION        */
/* ================================= */

.ai-intel {
    position: relative;
    padding: 130px 40px;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.ai-intel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/graic-img/sustainable.jpg') center/cover no-repeat;
    opacity: 0.22;
    filter: blur(3px);
    z-index: 1;
}

/* GRADIENT OVERLAY */
.ai-intel::after {
    content: "";
    position: absolute;
    inset: 0;;
    z-index: 2;
}

.ai-intel-inner {
    position: relative;
    z-index: 5;
    max-width: 1350px;
    margin: auto;
}
        
/* GLASS BOX */
.ai-intel-content {
    background: rgba(108, 131, 155, 0.844);
    backdrop-filter: blur(10px);
    padding: 45px 40px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(43, 41, 41, 0.35);
    animation: aiFadeUp 0.9s ease forwards;
}

.ai-intro {
    font-size: 1.25rem;
    color: #e5eaf2;
    line-height: 1.7;
    margin-bottom: 40px;
    border-left: 4px solid #4c9fff;
    padding-left: 18px;
}

/* TITLES */
.ai-title {
    color: #f1f5f9;
    font-size: 1.45rem;
    margin-bottom: 16px;
    margin-top: 35px;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(78,148,255,0.6);
}

/* LISTS */
.ai-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #c9d3e0;
}

.ai-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    background: #4c9fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(78,148,255,0.8);
}

/* ANIMATION */
@keyframes aiFadeUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ai-intel-content {
        padding: 35px 25px;
    }
}



/* ========================================= */
/*         GOVERNANCE SECTION (IMAGE LEFT)   */
/* ========================================= */

.governance-section {
    padding: 90px 40px;
}

.governance-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
}

/* LEFT IMAGE */
.governance-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.governance-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeSlideLeft 0.9s ease forwards;
}

/* RIGHT TEXT */
.governance-text {
    flex: 1.3;
}

.governance-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2433;
    margin-bottom: 30px;
    line-height: 1.3;
}

.gov-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.gov-block ul {
    list-style: none;
    padding: 0;
}

.gov-block ul li {
    margin-bottom: 14px;
    line-height: 1.65;
    font-size: 1.05rem;
    color: #4b5563;
    position: relative;
    padding-left: 28px;
}

.gov-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    background: #2563eb; /* deep corporate blue */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37,99,235,0.4);
}

/* ANIMATION */
@keyframes fadeSlideLeft {
    0% { opacity: 0; transform: translateX(-25px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .governance-grid {
        flex-direction: column;
        text-align: center;
    }

    .gov-block ul li {
        padding-left: 0;
    }

    .gov-block ul li::before {
        display: none;
    }

    .governance-image img {
        max-width: 100%;
    }
}

