
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Arial, sans-serif;
        }

        body {
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* ================= HERO SECTION ================= */
        .ccc-hero {
            position: relative;
            height: 70vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px;
        }

        /* VIDEO BACKGROUND */
        .ccc-hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
        }

        /* DARK OVERLAY */
        .ccc-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .ccc-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
        }

        .ccc-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 22px;
        }

        .ccc-subtitle {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 14px;
            color: #f1f1f1;
        }

        .ccc-description {
            font-size: 15px;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto 36px;
            color: #d0d0d0;
        }

        .ccc-btn {
            display: inline-block;
            background: #6c2cff;
            color: #ffffff;
            padding: 15px 38px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .ccc-btn:hover {
            background: #8148ff;
            transform: translateY(-2px);
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .ccc-content h1 {
                font-size: 34px;
            }
        }

        @media (max-width: 480px) {
            .ccc-content h1 {
                font-size: 28px;
            }

            .ccc-btn {
                padding: 13px 28px;
            }
        }

        /* ================= GDPR SECTION ================= */

.gdpr-section {
    background: linear-gradient(180deg, #0b0b0b, #121212);
    padding: 100px 40px;
}

.gdpr-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.gdpr-image {
    position: relative;
}

.gdpr-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* CONTENT */
.gdpr-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #f5e6e3;
    margin-bottom: 24px;
}

.gdpr-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #cfcfcf;
    margin-bottom: 18px;
    max-width: 520px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .gdpr-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gdpr-content h2 {
        font-size: 30px;
    }
}

.gdpr-section {
  position: relative;
  background: linear-gradient(180deg, #0b0b0b, #141414);
  color: #eaeaea;
  padding: 80px 60px;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

.gdpr-content {
  max-width: 900px;
  margin-left: 80px;
}

.gdpr-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #f5e6e2;
  margin-bottom: 30px;
}

.gdpr-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* Decorative dots on left */
.gdpr-dots {
  position: absolute;
  left: 30px;
  top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 12px;
}

.gdpr-dots span {
  width: 6px;
  height: 6px;
  background: #7a3a2f;
  border-radius: 50%;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .gdpr-section {
    padding: 60px 30px;
  }

  .gdpr-content {
    margin-left: 0;
  }

  .gdpr-content h2 {
    font-size: 30px;
  }

  .gdpr-dots {
    display: none;
  }
}

.gdpr-services {
  position: relative;
  background: radial-gradient(circle at left, #1a1a1a, #0b0b0b);
  padding: 90px 70px;
  color: #eaeaea;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}

/* Layout */
.gdpr-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

/* Left */
.gdpr-left h2 {
  font-size: 46px;
  font-weight: 600;
  color: #f3e6e2;
  margin-bottom: 30px;
  line-height: 1.2;
}

.gdpr-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* Right checklist */
.gdpr-right ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.gdpr-right li {
  font-size: 17px;
  color: #e6e6e6;
  margin-bottom: 22px;
  position: relative;
  padding-left: 30px;
}

.gdpr-right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e64a2e;
  font-size: 16px;
  font-weight: bold;
}

/* Decorative dots */
.gdpr-dots {
  position: absolute;
  left: 30px;
  top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 14px;
}

.gdpr-dots span {
  width: 6px;
  height: 6px;
  background: #7a3a2f;
  border-radius: 50%;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .gdpr-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gdpr-left h2 {
    font-size: 34px;
  }

  .gdpr-dots {
    display: none;
  }
}

.gdpr-consulting {
  position: relative;
  background: radial-gradient(circle at left, #1a1a1a, #0b0b0b);
  padding: 100px 70px;
  font-family: "Segoe UI", sans-serif;
  color: #eaeaea;
  overflow: hidden;
}

.gdpr-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* Left content */
.gdpr-text h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  color: #f4e7e3;
  margin-bottom: 25px;
}

.gdpr-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 560px;
}

/* Right GDPR card */

.gdpr-lock-img {
  height: 360px;          /* 👈 control image LENGTH */
    width: auto;            /* 👈 preserve ratio */
    max-width: none;        /* 👈 remove width lock */
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 900px) {
  .gdpr-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gdpr-text h2 {
    font-size: 32px;
  }

  .gdpr-dots {
    display: none;
  }
}

.gdpr-steps {
  background: #0b0b0b;
  padding: 90px 70px;
  font-family: "Segoe UI", sans-serif;
}

.steps-wrapper {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* Card */
.step-card {
  background: #2c2626;
  padding: 42px 34px;
  text-align: center;
  height: 100%;
}

.step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  stroke: #7c4dff;
  stroke-width: 1.5;
  fill: none;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f3e6e2;
  margin-bottom: 18px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #b9b4b4;
}

/* Responsive */
@media (max-width: 1100px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}


        /* ================= ARAMCO CCC ABOUT ================= */
.ccc-about {
    background: #000;
    padding: 100px 20px;
}

.ccc-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.ccc-about-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 28px;
}

.ccc-about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 18px;
}

.ccc-about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ccc-about-logo img {
    height: 450px;          
    width: auto;           
    max-width: none;       
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ccc-about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ccc-about-logo img {
        height: 300px;     /*mobile-friendly */
        width: auto;
        margin-top: 30px;
    }
}

/* ================= UNDERSTANDING ARAMCO CCC ================= */
.ccc-understanding {
    background: #000;
    padding: 110px 20px;
}

.ccc-understanding-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.ccc-understanding-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
}

.ccc-understanding-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 520px;
}

/* RIGHT LIST */
.ccc-understanding-right ul {
    list-style: none;
}

.ccc-understanding-right li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* CHECK ICON */
.ccc-understanding-right li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d2e;
    font-size: 16px;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ccc-understanding-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ccc-understanding-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ccc-understanding-left h2 {
        font-size: 28px;
    }
}
/* ================= PROCESS SECTION ================= */

.process-section {
    background: #d63f2b;
    padding: 80px 40px;
}

.process-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.process-card {
    background: #fdecea;
    padding: 40px 30px;
    border-radius: 4px;
    min-height: 260px;
}

.process-card img {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 14px;
}

.process-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 60px 20px;
    }
}

/* ================= DATA PRIVACY GOALS SECTION ================= */

.privacy-goals-section {
    position: relative;
    width: 100%;
    height: 520px; /* 🔥 controls section height */
    background: url("../../services/assets/data_privacy.png") center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Dark overlay for contrast */
.privacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.85)
    );
    z-index: 1;
}

/* Bottom title bar */
.privacy-title-bar {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 22px 20px;
    text-align: center;
    z-index: 2;
}

.privacy-title-bar h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .privacy-goals-section {
        height: 380px;
    }

    .privacy-title-bar h2 {
        font-size: 18px;
        line-height: 1.4;
    }
}
/* ================= PRIVACY GOALS SECTION ================= */

.privacy-goals {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    padding: 80px 20px;
    text-align: center;
}

.privacy-goals-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Grid */
.privacy-goals-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.privacy-card {
    background: linear-gradient(145deg, #2a2626, #1b1919);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Icon */
.privacy-icon {
    font-size: 36px;
    color: #7a3cff;
    margin-bottom: 20px;
}

/* Card text */
.privacy-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.privacy-card p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .privacy-goals-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .privacy-card {
        text-align: center;
    }
}
/* ================= PRIVACY COMPLIANCE SECTION ================= */

.privacy-compliance {
    background: #2a2424;
    padding: 90px 20px;
    color: #ffffff;
}

.privacy-compliance-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT COLUMN */
.privacy-left {
    position: relative;
}

.privacy-left::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    width: 80px;
    height: 100%;
    background-image: radial-gradient(#444 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
}

.privacy-left h2 {
    color: #ff6b5c;
    font-size: 26px;
    margin-bottom: 30px;
}

.privacy-left ul {
    list-style: disc;
    padding-left: 20px;
}

.privacy-left li {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* RIGHT COLUMN */
.privacy-right h2 {
    color: #ff6b5c;
    font-size: 26px;
    margin-bottom: 14px;
}

.privacy-right p {
    margin-bottom: 20px;
    color: #dddddd;
}

.standards-list {
    list-style: disc;
    padding-left: 20px;
}

.standards-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #e0e0e0;
}

.standards-list span {
    color: #ff6b5c;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .privacy-compliance-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .privacy-left::before {
        display: none;
    }
}

/* ================= UAE PRIVACY STANDARDS ================= */

.uae-privacy-standards {
    background: #d8432e;
    padding: 90px 20px 110px;
    position: relative;
    color: #ffffff;
}

/* dotted decoration (left) */
.uae-privacy-standards::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    width: 120px;
    height: 220px;
    background-image: radial-gradient(
        rgba(255,255,255,0.35) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
    opacity: 0.6;
}

.uae-privacy-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Eyebrow text */
.uae-eyebrow span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0 20px;
}

.uae-eyebrow span::before,
.uae-eyebrow span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.7);
}

.uae-eyebrow span::before {
    left: -40px;
}
.uae-eyebrow span::after {
    right: -40px;
}

/* Title */
.uae-title {
    margin-top: 18px;
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 700;
}

/* Cards grid */
.uae-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.uae-card {
    background: #fdecea;
    color: #222;
    padding: 40px 30px;
    text-align: left;
    border-radius: 4px;
    min-height: 200px;
}

/* Icon */
.uae-icon {
    font-size: 38px;
    margin-bottom: 20px;
    color: #d8432e;
}

/* Text */
.uae-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.uae-card strong {
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .uae-standards-grid {
        grid-template-columns: 1fr;
    }

    .uae-title {
        font-size: 26px;
    }

    .uae-privacy-standards::before {
        display: none;
    }
}

/* ================= DATA PRIVACY SECTION ================= */

.privacy-challenges {
    background: #2b2525;
    padding: 100px 20px;
    position: relative;
    color: #ffffff;
}

/* dotted decoration */
.privacy-challenges::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    width: 140px;
    height: 260px;
    background-image: radial-gradient(
        rgba(255,255,255,0.25) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Column */
.privacy-col h2 {
    color: #ff6a55;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.privacy-col .intro {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Lists */
.privacy-col ul {
    padding-left: 20px;
    margin: 0;
}

.privacy-col ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.privacy-col ul li strong {
    font-weight: 600;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .privacy-col h2 {
        font-size: 26px;
    }

    .privacy-challenges::before {
        display: none;
    }
}

/* ================= UAE IA SECTION ================= */

.uae-ia-section {
    background: radial-gradient(circle at left, #1b1b1b, #0b0b0b);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

/* dotted pattern */
.uae-ia-section::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 80px;
    width: 140px;
    height: 220px;
    background-image: radial-gradient(#ff5c47 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}

/* layout */
.uae-ia-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* image */
.uae-ia-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* content */
.uae-ia-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #f5e6e3;
    margin-bottom: 30px;
    line-height: 1.2;
}

.uae-ia-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 18px;
    max-width: 620px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
    .uae-ia-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .uae-ia-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .uae-ia-section {
        padding: 70px 20px;
    }
}

/* ================= BENEFITS SECTION ================= */

.uae-ia-benefits {
    background: linear-gradient(180deg, #0b0b0b, #121212);
    padding: 80px 40px;
}

.uae-ia-benefits-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* card */
.benefit-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 32px;
    background: linear-gradient(180deg, #2b2626, #242020);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* icon */
.benefit-icon {
    font-size: 34px;
    color: #7b4bff;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* text */
.benefit-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f5e6e3;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #bdbdbd;
    max-width: 900px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        gap: 14px;
    }

    .benefit-icon {
        font-size: 30px;
    }
}

/* ================= ARAMCO CCC SERVICES ================= */
.ccc-services {
    background: #d9412c;
    padding: 110px 20px;
    color: #fff;
}

.ccc-services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.ccc-services-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ccc-services-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ccc-services-header p {
    font-size: 15px;
    color: #ffe5df;
}

/* GRID */
.ccc-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.ccc-service-card {
    background: #fdecea;
    color: #222;
    padding: 36px 30px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ccc-service-card .icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.ccc-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ccc-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ccc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ccc-services-grid {
        grid-template-columns: 1fr;
    }

    .ccc-services-header h2 {
        font-size: 28px;
    }
}

/* ================= CHALLENGES ARAMCO CCC ================= */
.ccc-challenges {
    background: #000;
    padding: 110px 20px;
}

.ccc-challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT LOGO */
.ccc-challenges-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
}

.ccc-challenges-brand img {
     height: 360px;          /* 👈 control image LENGTH */
    width: auto;            /* 👈 preserve ratio */
    max-width: none;        /* 👈 remove width lock */
    opacity: 0.9;
}

/* CONTENT */
.ccc-challenges-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
}

.ccc-challenges-content .intro,
.ccc-challenges-content .outro {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 22px;
}

/* LIST */
.ccc-challenges-content ul {
    list-style: none;
    margin-bottom: 26px;
}

.ccc-challenges-content li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.ccc-challenges-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d2e;
    font-size: 22px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ccc-challenges-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .ccc-challenges-brand img {
        max-width: 220px;
    }

    .ccc-challenges-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ccc-challenges-content h2 {
        font-size: 28px;
    }
}
/* ================= WHY SELECT WATTLECORP ================= */
.ccc-why {
    background: #000;
    padding: 120px 20px;
}

.ccc-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;
}

/* LEFT GRAPHIC */
.ccc-why-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

/* CONTENT */
.ccc-why-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
}

.ccc-why-content ul {
    list-style: none;
}

.ccc-why-content li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* ICON DOT */
.ccc-why-content li::before {
    content: "◉";
    color: #ff4d2e;
    font-size: 14px;
    margin-top: 4px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ccc-why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ccc-why-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .ccc-why-content h2 {
        font-size: 26px;
    }
}

       
    