/* --- RESET & GLOBAL VARIABLES --- */
:root {
    --primary-text: #005E79;
    --accent-orange: #EB6953;
    --bg-gradient: linear-gradient(311.11deg, #FFFFFF 7.43%, #26B3AC 91.63%);
    --marquee-bg: #26B3AC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: var(--bg-gradient); */
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--primary-text);
    overflow-x: hidden;
    position: relative;
}
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* --- LAYOUT CONTAINERS --- */

.section-main {
    width: 100%;
    background: var(--bg-gradient);
}


.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 80px;
    position: relative;
    z-index: 10;
}

/* --- BACKGROUND WATERMARK (The Disposal Image) --- */
.bg-watermark {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    /* opacity: 0.08; */
    z-index: -1;
    /* Behind the text */
    pointer-events: none;
}

/* header layout */
header {
  margin-bottom: 60px;
}

/* container so center 'X' can be absolutely centered while logos stay in flow */
header .header-inner {
    /*display: flex;*/
  width: 100%;
  max-width: 1200px;    /* tweak to match your site container */
  margin: 0 auto;
  padding: 0 20px;
  display: flex !important;
  align-items: center;
  position: relative;   /* needed for absolute centering of .center-x */
  box-sizing: border-box;
}

/* shared logo styles */
header .logo-left {
  height: 60px;         /* base height — change if you want bigger/smaller */
  width: auto;
  display: block;
}


/* shared logo styles */
header .logo-right {
  height: 60px;         /* base height — change if you want bigger/smaller */
  width: auto;
  display: block;
}
/* push the right logo to the far right */
header .logo-right {
  margin-left: auto;
}

/* center X exactly in the header-inner */
header .center-x {
  /*position: absolute;*/
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  font-family: 'Poppins', sans-serif;
  font-weight: 400 !important;
    font-size: 60px;
  letter-spacing: 2px;
  /*color: #111;  */
  pointer-events: none; 
  user-select: none;
  margin-left: 10px;
  margin-right: 10px;
}

/* small-screen tweaks */
@media (max-width: 760px) {
  header .logo { height: 48px; }
  header .center-x { font-weight: 400;
    font-size: 50px; } 
}

/* very small screens: stack logos and hide center X if it collides */
@media (max-width: 420px) {
  header .header-inner { padding: 8px 12px; }
  header .logo-left,
  header .logo-right { height: 40px !important; }
  header .center-x { font-weight: 400;
    font-size: 40px; } 
}


.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 150px;
}

/* --- LEFT COLUMN (TYPOGRAPHY) --- */
.left-col {
    flex: 1.2;
    position: relative;
}

.core-promise {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    /* Ensures title is above watermark */
}

.title-poppins,
.title-playfair {
    font-size: 73.6px;
    line-height: 88.32px;
    color: var(--primary-text);
}

.title-poppins {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.title-playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    color: #fff;
}

/* --- BUTTON --- */
.cta-button {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(235, 105, 83, 0.4);
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.arrow-icon {
    height: 12px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* --- RIGHT COLUMN (DESC & VIDEO) --- */
.right-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 60px;
}

.star-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    max-width: 400px;
}

/* .video-card {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
} */

/* --- VIDEO CARD STYLING --- */
.video-card {
    position: relative;
    /* Button ko absolute position karne ke liye zaruri hai */
    width: 100%;
    /* max-width: 400px; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #000;
    /* Video load hone se pehle black dikhe */
}

.video-card video {
    width: 100%;
    height: 300px;
    display: block;
    /* object-fit: cover; */
}

/* Play Button Design */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(38 179 172);
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* backdrop-filter: blur(5px); */
    transition: all 0.3s ease;
    z-index: 5;
}

.play-btn svg {
    width: 25px;
    height: 25px;
    /* margin-left: 4px; */
    /* Icon ko thoda center adjust karne ke liye */
}

.play-btn:hover {
    /* background: rgb(38 179 172);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: transparent; */
}

/* Jab video play ho rahi ho, tab button ko chhupane ke liye class */
.video-card.playing .play-btn {
    opacity: 0;
    pointer-events: none;
}

/* --- MARQUEE SECTION --- */

section.section-marquee {
    padding: 0 0 100px 0;
}

.marquee-wrapper {
    position: relative;
    left: -10%;
    width: 120%;
    background: var(--marquee-bg);
    transform: rotate(-3deg);
    padding: 15px 0;
    z-index: 20;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 9999;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 67px;
    line-height: 73px;
    color: white;
    text-transform: uppercase;
    padding: 0 40px;
    position: relative;
}

.marquee-item::after {
    content: '*';
    position: absolute;
    right: 0;
    top: 15px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* section --- 2 */

/* --- SECTION 2: WHY --- */

:root {
    /* Add these if you don't have them yet */
    --section-two-bg: #EAE8E4;
    --teal-pill: #26B3AC;
    --accent-orange: #EB6953;
}

.section-why {
    background-color: var(--section-two-bg);
    padding: 50px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Grid layout for the header part */
.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.why-title-col {
    flex: 1.5;
}

.why-label {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: block;
}

.why-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 58px;
    color: #08394A;
    text-transform: uppercase;
}

/* --- COMMS AGENCY SPECIAL TEXT --- */
.comms-agency-text {
    /* Your provided CSS */
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 52px;
    line-height: 58px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;

    /* Gradient Text Logic */
    background: linear-gradient(98.52deg, #26B3AC 11.7%, #FFFFFF 115.52%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    display: inline-block;
}

.why-desc-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Right aligns button */
    text-align: right;
}

.why-desc-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #08394A;
    margin-bottom: 20px;
    max-width: 400px;
    /* Prevents it from getting too wide */
}

/* Grid for the 4 Cards */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-pill {
    background-color: var(--teal-pill);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 20px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(38, 179, 172, 0.2);
    width: 100%;
    text-align: left;
}

/* Arrow inside pill using unicode */
.why-pill::before {
    content: '→';
    margin-right: 8px;
    font-weight: 800;
}

.why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #08394A;
    font-weight: 400;
}

/* section ---- 3 */

/* ================= SECTION 3: EXPERT (EXACT MATCH) ================= */

:root {
    --primary-dark: #005E79;
    --accent-teal: #26B3AC;
    --accent-orange: #EB6953;
    --card-beige: #EFEEE9;
    --pill-border: #26B3AC;
}

.section-expert-v2 {
    background-color: #FFFFFF;
    /* White Background as per image */
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% - 50% Split */
    gap: 60px;
    align-items: start;
}

/* --- LEFT COLUMN --- */
.expert-left-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.expert-header-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.expert-label {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    text-transform: uppercase;
    white-space: nowrap;
    /* Keeps it on one line */
    /* min-width: 180px; */
}

.expert-bio-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #08394A;
    margin-top: -4px;
    font-weight: 400;
    /* Slight optical alignment with label */
}

/* Pills */
.pills-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.pill-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid var(--pill-border);
    border-radius: 50px;
    background: white;
    color: #003B4C;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 30%;
}

.pill-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Large Image (Left) */
.large-expert-img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    margin-top: 20px;
    display: block;
    object-fit: cover;
}


/* --- RIGHT COLUMN --- */
.expert-right-col {
    display: flex;
    flex-direction: column;
}

.expert-titles-wrapper {
    margin-bottom: 60px;
    /* Space between title and cards */
}

.expert-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 58px;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.expert-script-gradient {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 52px;
    line-height: 58px;

    /* Exact Gradient Request */
    background: linear-gradient(97.18deg, #26B3AC 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    display: block;
}

/* Cards Stack */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expert-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-radius: 20px;
    gap: 20px;
    min-height: 160px;
}

.card-beige {
    background-color: var(--card-beige);
    border: none;
}

.card-white {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    max-width: 40%;
}

/* ================= SECTION 4: TOOLKIT (NEW) ================= */

:root {
    --toolkit-bg: #FFFFFF;
    --card-bg-beige: #F4F1EA;
    /* The light beige background of the cards */
    --accent-teal: #26B3AC;
    --accent-orange: #EB6953;
    --text-dark: #003B4C;
}

.section-toolkit {
    background-color: var(--toolkit-bg);
    padding: 0 0 50px 0;
    font-family: 'Inter', sans-serif;
}

.section-toolkit .container {
    padding: 0;
}

/* --- Header Section --- */
.toolkit-header {
    text-align: center;
    margin-bottom: 60px;
}

.toolkit-label {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.toolkit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 58px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.toolkit-script-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    /* Reuse the gradient from previous sections */
    background: linear-gradient(97.18deg, #26B3AC 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fallback color if gradient on white text is invisible, 
       but based on design it looks like a light teal/white fade. 
       Adjusting to a visible Teal gradient for white bg: */
    background: linear-gradient(90deg, #26B3AC 0%, #A0E0DD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Grid Layout --- */
.toolkit-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 80%;
  width: 100%;
}

.toolkit-grid > * {
  /* Make 3 items per row on wide screens */
  flex: 0 0 calc((100% - 2 * 30px) / 3); /* 3 columns with gap accounted */
  box-sizing: border-box;
}

/* responsive: 2 columns on medium, 1 on small */
@media (max-width: 900px) {
  .toolkit-grid > * { flex: 0 0 calc((100% - 30px) / 2); }
}
@media (max-width: 520px) {
  .toolkit-grid > * { flex: 0 0 100%; }
}


/* --- Card Styling --- */
.toolkit-card {
    background-color: var(--card-bg-beige);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    /* width: 350px; */
    /* Fixed width for consistency */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.toolkit-card:hover {
    transform: translateY(-5px);
}

.card-image-area {
    width: 100%;
    height: auto;
    position: relative;
}

.card-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* The Teal Icon Circle */
.card-icon-circle {
    /* position: absolute; */
    bottom: -25px;
    /* Half overlapping */
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--card-bg-beige);
    /* Creates the border spacing effect */
    z-index: 2;
}

.card-icon-img {
    width: 40px;
    height: 40px;
    /* filter: brightness(0) invert(1); */
    /* Makes icons white */
}

/* Card Content */
.card-content {
    padding: 35px 30px 0 30px;
    /* Top padding clears the icon */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content-sec {
    display: flex;
    /* justify-content: space-between; */
    align-items: start;
    gap: 10px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
    /* min-height: 48px; */
    /* Ensures alignment across cards */
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #555;
    margin-bottom: 25px;
    flex: 1;
    /* Pushes button to bottom */
}

.card-btn {
    width: 100%;
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.card-btn:hover {
    background-color: #d15642;
}


/* ================= SECTION 5: STATS (NEW) ================= */

:root {
    --stats-bg: #F0EFE9;
    /* Matches the beige background in image */
    --stat-number-color: #003B4C;
    /* Dark Teal for numbers */
    --stat-bar-bg: #D9D9D9;
    /* Grey part of the bar */
    --stat-bar-fill: #26B3AC;
    /* Teal part of the bar */
    --stat-title: #005E79;
    --stat-desc: #08394A;
}

.section-stats {
    background-color: var(--stats-bg);
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns */
    gap: 40px;
    margin: 0 auto;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- The Number Styling --- */
.stat-number-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* Medium-Bold */
    font-size: 48px;
    color: var(--stat-number-color);
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-suffix {
    font-size: 40px;
    /* Slightly smaller for K+ */
    font-weight: 400;
}

/* --- The Progress Bar --- */
.stat-progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--stat-bar-bg);
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.stat-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--stat-bar-fill);
    border-radius: 10px;
    width: 0%;
    /* JS will animate this width */
    transition: width 2s ease-out;
}

/* --- Text Styling --- */
.stat-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--stat-title);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--stat-desc);
    max-width: 90%;
}

/* ================= SECTION 6: I3 FRAMEWORK (NEW) ================= */

:root {
    --framework-bg: #FFFFFF;
    --fw-number-color: #E6E6E6;
    /* Light grey for 01, 02... */
    --fw-title-color: #005E79;
    /* Dark Teal */
    --fw-text-color: #08394A;
    --accent-orange: #EB6953;
}

.section-framework {
    background-color: var(--framework-bg);
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
}

.framework-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Left is slightly smaller */
    gap: 80px;
    align-items: flex-start;
}

/* --- LEFT COLUMN --- */
.framework-left {
    position: sticky;
    top: 100px;
    /* Optional: Makes it stick while scrolling list */
}

.framework-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.framework-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.framework-label {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.framework-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: var(--fw-title-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.framework-script {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    display: block;

    /* The light mint/teal gradient from the image */
    background: linear-gradient(90deg, #A0E0DD 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fallback color if gradient is too light on white */
    color: #b2e8e5;

    /* If you want the text to look exactly like the image (which is very faint), 
       keep the color light. If readability is key, make it darker. */
    text-shadow: 0px 0px 1px rgba(38, 179, 172, 0.2);
    /* Subtle outline for legibility */
}

.framework-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--fw-text-color);
    font-weight: 500;
}

/* --- RIGHT COLUMN (LIST) --- */
.framework-list {
    display: flex;
    flex-direction: column;
}

.framework-item {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #F0F0F0;
    /* Light separator lines */
    gap: 30px;
}

.framework-item:first-child {
    padding-top: 0;
}

.fw-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 54px;
    color: var(--fw-number-color);
    line-height: 1;
    min-width: 80px;
    /* Ensures alignment */
}

.fw-content {
    flex: 1;
}

.fw-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--fw-title-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fw-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fw-text-color);
    max-width: 90%;
}

.fw-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    /* Prevents button from squishing */
    transition: transform 0.2s ease;
}

.fw-btn:hover {
    transform: translateX(5px);
}

.fw-arrow-icon {
    width: 16px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Makes arrow white */
}

/* ================= SECTION 7: CONTACT FORM (NEW) ================= */

:root {
    --contact-bg: #D3F1F0;
    /* Your specific background color */
    --form-card-bg: #FFFFFF;
    --input-bg: #F7F7F7;
    /* Light grey for input fields */
    --text-dark-teal: #005E79;
    --text-body-grey: #08394A;
    --accent-orange: #EB6953;
}

.section-contact {
    background-color: var(--contact-bg);
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin: 0 auto;
}

/* --- LEFT COLUMN: TEXT --- */
.contact-left {
    padding-right: 20px;
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark-teal);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body-grey);
    max-width: 80%;
}

/* --- RIGHT COLUMN: FORM CARD --- */
.contact-card {
    background-color: var(--form-card-bg);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 94, 121, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    color: #888;
    display: none;
    /* Hidden in design, placeholders used or labels inside? Design looks like labels inside or minimal */
}

/* Input Styling */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: var(--input-bg);
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8D8D8D;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 2px rgba(38, 179, 172, 0.2);
}

.form-textarea {
    resize: none;
    height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 10px auto;
    color: #8D8D8D;
    /* Placeholder color initially */
}

.form-label-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    margin-left: 5px;
}

.form-btn {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
    transition: transform 0.2s, background-color 0.2s;
}

.form-btn:hover {
    transform: translateY(-2px);
    background-color: #d15642;
}



/* ================= SECTION 8: FOOTER (NEW) ================= */

:root {
    --footer-bg: #26B3AC;
    /* The specific Teal color */
    --footer-text: #FFFFFF;
    --footer-border: rgba(255, 255, 255, 0.2);
    /* Faint line */
}

/* MAIN FOOTER */
.section-footer {
    background-color: var(--footer-bg);
    font-family: 'Inter', sans-serif;
    color: var(--footer-text);
}

/* TOP CTA ROW */
.footer-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-heading-group {
    display: flex;
    flex-direction: column;
}

.footer-title-line {
    font-size: 64px;
    line-height: 1.1;
    text-transform: uppercase;
}

.ft-sans {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.ft-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    background: linear-gradient(104.45deg, #26B3AC 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-cta-btn {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.footer-cta-btn:hover {
    transform: scale(1.1);
}

.footer-arrow {
    width: 40px;
    filter: invert(56%) sepia(67%) saturate(464%) hue-rotate(128deg) brightness(92%) contrast(88%);
}

/* GRID (LOGO LEFT + CONTACT RIGHT) */
.footer-links-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 60px;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-img {
    width: 14px;
    filter: invert(56%) sepia(67%) saturate(464%) hue-rotate(128deg) brightness(92%) contrast(88%);
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: right;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
     text-align: right;
}

.footer-link {
    font-size: 14px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: .18s;
    text-align: right;
}

.footer-link:hover {
    opacity: 1;
}

/* CENTER NAV LINKS (Screenshot Style) */
.footer-nav-center {
   display: flex;
    justify-content: center;
    gap: 40px;
    
    flex-wrap: wrap;
}

.footer-nav-link {
    font-family: 'Poppins', sans-serif;
   text-decoration: none;
    color: #E4E4E4;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    opacity: 0.85;
    transition: .18s ease;
}

.footer-nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}


.footer-bottom-row{
    
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #E4E4E4;
}
.footer-legal-links{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.footer-legal-links a{
    text-decoration: none;
    color: #E4E4E4;
    transition: color 0.2s;
}
/* COPYRIGHT */
.footer-copyright {
    text-align: right;
    padding-top: 20px;
    font-size: 13px;
    opacity: .6;
}

/* RESPONSIVE */
@media (max-width: 880px) {
    .footer-title-line { font-size: 48px; }
    .footer-nav-center { gap: 28px; }
}

@media (max-width: 520px) {
    .footer-title-line { font-size: 36px; }
    .footer-nav-link { font-size: 14px; }
    .footer-nav-center { gap: 18px; }
}
