/* =========================================
   EXTERNAL CSS - FULLY CORRECTED
   ========================================= */

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1714;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background: transparent !important;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 0; 
    border-radius: 0; 
    background: transparent !important; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; 
    transition: all 0.3s ease;
}

.logo img {
    width: 360px; 
    height: auto;
    display: block;
    mix-blend-mode: multiply; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: 0.5rem 1.0rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 35, 5, 0.95); 
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 220px; 
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column; 
    gap: 8px; 
}

.dropdown a {
    background: transparent !important; 
    border: none !important;            
    backdrop-filter: none !important;   
    padding: 0.6rem 1rem !important;    
    border-radius: 8px !important;      
    display: block !important;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a8e08a !important; 
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    gap: 1.2rem;          
    z-index: 5;
}

.glass-tile {
    position: relative;   
    padding: 2rem 3rem;
    max-width: 520px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;
    transition: opacity .4s ease, transform .4s ease;
}

.scroll-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon img {
    width: 18px;
    height: auto;
    pointer-events: none;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.2);
}

/* --- Background Images & Overlays --- */
.background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 15, 13, 0.98), rgba(15, 23, 20, 0.7), transparent);
}

.main-content {
    background: url('assets/images/waste - Copy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
}

/* --- Layout & Containers --- */
.hero-container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: row;
    flex-grow: 1; 
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

/* --- Hero Section (Left Aligned) --- */
.hero-section {
    max-width: 48rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-tag {
    color: #9ca3af;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.875rem; }
}

.hero-desc {
    color: #cbced3;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 44rem;
    font-weight: 400;
}

/* --- Buttons --- */
.button-group {
    display: flex;
    flex-wrap: wrap;
    width: 185%;
    justify-content: flex-end; 
    gap: 1.25rem;
}

.btn {
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #4CAF50;
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(76, 175, 80, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Circular Cards Container --- */
.circles-wrapper {
    width: 100%;
    padding: 0.5rem 1.5rem 1rem 1.5rem;
    display: flex;
    justify-content: center;
}

.circles-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    max-width: 1280px;
    width: 100%;
    overflow-x: auto; 
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
}

.circles-container::-webkit-scrollbar {
    display: none; 
}

@media (min-width: 1024px) {
    .circles-container {
        justify-content: center;
        overflow-x: visible;
    }
}

 /* --- REDUCED SIZE Pentagon Card Styling --- */
.circle-card {
    flex: 0 0 auto;
    width: 320px;  /* Reduced from 400px */
    height: 250px; /* Reduced from 380px */
    background: linear-gradient(145deg, rgba(30, 42, 35, 0.8) 0%, rgba(15, 22, 18, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 3rem 1.5rem 1.5rem 1.5rem; /* Reduced padding */
    position: relative;
    scroll-snap-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(46, 75, 54, 0.7) 0%, rgba(20, 30, 24, 0.9) 100%);
}

.circle-card.highlight-circle {
    background: linear-gradient(145deg, rgba(46, 75, 54, 0.6) 0%, rgba(20, 30, 24, 0.9) 100%);
}

/* --- Content Styling --- */
.circle-icon-wrap {
    width: 2.75rem; /* Reduced size */
    height: 2.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.circle-icon-wrap i {
    color: #4CAF50;
    width: 1.25rem;
    height: 1.25rem;
}

.circle-title {
    font-size: 0.9rem; /* Reduced size */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.circle-text {
    font-size: 0.72rem; /* Reduced size */
    color: #9ca3af;
    line-height: 1.5;
    font-weight: 400;
    max-width: 90%; 
}

.highlight-number {
    font-size: 1.75rem; /* Reduced size */
    font-weight: 800;
    color: #75d479;
    margin-bottom: 0.15rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.highlight-label {
    color: #4CAF50;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.highlight-divider {
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, transparent, #4CAF50, transparent);
    margin: 0.25rem auto 0.75rem auto;
    opacity: 0.6;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out forwards;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Container --- */
.impact-section {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background:#bae93a
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* --- Asymmetric Layout Grid --- */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .layout-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: flex-start;
    }
}

/* --- Left Column: Header --- */
.header-col {
    position: relative;
    animation: fadeRight 1s ease-out forwards;
}

.header-col::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: -1;
    opacity: 0.5;
}

.main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0047aa;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #3c4d04 0%, #698804 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Right Column: Content Narrative --- */
.content-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    animation: fadeLeft 1s ease-out 0.2s forwards;
    opacity: 0;
}

.content-col::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #10b981 20%, #059669 80%, transparent);
    opacity: 0.3;
}

/* --- Individual Text Blocks --- */
.text-block {
    position: relative;
    padding-left: 5rem;
}

.indicator-orb {
    position: absolute;
    left: 19px; 
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #267aee;
    border-radius: 50%;
    box-shadow: 0 0 20px 6px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-block:hover .indicator-orb {
    transform: scale(1.5);
    box-shadow: 0 0 25px 8px rgba(16, 185, 129, 0.5);
    background-color: #8cb500;
}

.watermark {
    position: absolute;
    top: -2.5rem;
    left: 3.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.06);
    line-height: 1;
    z-index: 0;
    user-select: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.text-block:hover .watermark {
    color: rgba(16, 185, 129, 0.12);
    transform: translateX(10px);
}

.text-block p {
    position: relative;
    z-index: 1;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #475569;
    line-height: 1.8;
    font-weight: 100;
}

.text-block p::first-line {
    color: #1e293b;
    font-weight: 500;
}

/* --- Animations --- */
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Responsive Tweaks --- */
@media (max-width: 1023px) {
    .impact-section { padding: 4rem 1.5rem; }
    .content-col::before { left: 12px; }
    .indicator-orb { left: 7px; }
    .text-block { padding-left: 3.5rem; }
    .watermark { left: 2rem; font-size: 4.5rem; top: -1.5rem; }
}

/* --- SLIDER STYLES --- */
.impact-slider-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
}

.impact-slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.impact-slider-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0047aa;
    margin-bottom: 12px;
}

.impact-slider-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.impact-slider-container {
    padding-bottom: 50px !important; 
    overflow: hidden; 
}

.swiper-slide {
    height: auto;
    display: flex;
}

.impact-card {
    background: #e9fec1;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    width: 100%; 
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.impact-card:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }

.impact-accent {
    width: 4px; height: 36px; background-color: #6b7280; border-radius: 2px; flex-shrink: 0;
}
.accent-blue { background-color: #3b82f6; }
.accent-green { background-color: #10b981; }
.accent-orange { background-color: #f59e0b; }
.accent-purple { background-color: #8b5cf6; }

.impact-title { font-size: 20px; font-weight: 700; color: #111827; margin: 0; line-height: 1.2; }
.impact-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #9ca3af; letter-spacing: 0.1em; margin-top: 4px; }
.impact-desc { font-size: 15px; color: #4b5563; line-height: 1.6; font-style: italic; margin: 0; }

.summary-quote {
    max-width: 900px; margin: 60px auto 0; padding: 40px;
    background-color: #f4f4db; border-radius: 20px; text-align: center;
}
.summary-quote p { font-size: 18px; color: #374151; font-style: italic; line-height: 1.8; font-weight: 300; }

.swiper-pagination { bottom: 0px !important; }
.swiper-pagination-bullet-active { background: #2563eb !important; }

.scientific-overlay {
    position: relative;
    z-index: 1;
    overflow: hidden; 
    background: #eeffc1; 
}

.scientific-overlay::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 0; 
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.scientific-overlay:hover::after {
    opacity: 0.88; 
    transform: scale(1.1); 
}

.scientific-overlay:hover h3, 
.scientific-overlay:hover p {
    color: #ffffff !important;
}

.scientific-overlay h3, 
.scientific-overlay card p {
    transition: color 0.4s ease;
}

.scientific-overlay:hover::after {
    opacity: 0.9; 
    filter: brightness(0.5); 
    transform: scale(1.08);
}

.cap-card {
    color: #2e7d32; 
    transition: color 0.3s ease;
}

.cap-card:hover { color: white; }
.cap-card:hover .stat-num,
.cap-card:hover .stat-label { color: white; }

.mission-section {
    padding: 80px 20px;
    background-color: #f9f4ef; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.mission-container { max-width: 900px; text-align: center; }

.mission-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #8cb500; 
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text {
    font-size: 1.6rem; line-height: 1.6;
    color: #220303; font-weight: 300; margin: 0 auto;
}

.mission-text strong { color: #0047aa; font-weight: 600; }

.mission-line {
    width: 60px; height: 4px;
    background-color: #8cb500;
    margin: 30px auto 0; border-radius: 2px;
}

@media (max-width: 768px) {
    .mission-text { font-size: 1.25rem; }
    .mission-section { padding: 50px 20px; }
}

:root {
    --primary-blue: #0047aa;
    --primary-green: #8cc63f;
    --bg-cream: #fdfbf7;
    --text-dark: #111827;
    --text-gray: #4b5563;
}

@keyframes reveal {
    from { opacity: 0; transform: scale(0.98) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(-12deg); }
    50% { transform: translate(-10px, -20px) rotate(-8deg); }
}

.main-section {
    width: 100%;
    min-height: 80vh; 
    display: flex;
    justify-content: center; 
    align-items: center;   
    padding: 2rem;
    background: #f9ffe4; 
}

.content-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px; 
    background: rgba(255, 255, 255, 1);
    border-radius: 3.5rem;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 71, 170, 0.25);
}

.left-panel {
    flex: 0 0 35%;
    background-color: var(--primary-blue);
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.floating-leaf {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    color: rgba(140, 198, 63, 0.15);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
}

.badge-text {
    color: #fff; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.4em;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem; 
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin: 0;
}

.hero-title span {
    color: var(--primary-green);
    font-size: 3rem;
    letter-spacing: 0.05em;
    display: block;
}

.left-footer { position: relative; z-index: 2; }

.accent-line {
    width: 60px; height: 5px;
    background: var(--primary-green);
    border-radius: 10px; margin-bottom: 1.5rem;
}

.pillar-label {
    color: rgba(255,255,255,0.5); font-size: 11px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em;
}

.right-panel {
    flex: 1; padding: 2rem 3rem; 
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(140, 198, 63, 0.05), transparent);
}

.section-header {
    display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3.5rem;
}

.header-line { height: 2px; width: 40px; background: var(--primary-green); }

.header-text {
    color: var(--primary-blue); font-weight: 900;
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.5em;
}

.main-quote {
    font-size: 2.2rem; color: var(--text-dark);
    line-height: 1.5; font-weight: 300; letter-spacing: -0.02em;
}

.keyword-highlight {
    position: relative; display: inline-block; font-weight: 800;
    color: var(--primary-blue); padding: 0 0.2rem; z-index: 1;
}

.keyword-highlight::after {
    content: ''; position: absolute; bottom: 8px; left: 0;
    width: 100%; height: 15px; background: rgba(0, 71, 170, 0.08);
    z-index: -1; border-radius: 4px; transition: all 0.3s;
}

.green-highlight { color: #4d7c0f; }
.green-highlight::after { background: rgba(140, 198, 63, 0.2); }

.keyword-highlight:hover::after {
    height: 100%; bottom: 0; background: rgba(140, 198, 63, 0.3);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .main-quote { font-size: 2rem; }
    .right-panel { padding: 4rem; }
}

@media (max-width: 900px) {
    .content-card { flex-direction: column; }
    .left-panel { flex: 0 0 auto; padding: 4rem 3rem; }
    .hero-title { font-size: 5rem; line-height: 0.8; }
    .right-panel { padding: 3.5rem 2rem; }
}

/* --- FOOTER --- */
.footer {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 80px 140px 60px 80px; 
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff; font-family: "Poppins", -apple-system, sans-serif;
    position: relative; overflow: hidden; gap: 50px;
}

.footer-left { flex: 1.2; min-width: 300px; }

.footer-left h2 {
    font-size: 32px; font-weight: 600; line-height: 1.3;
    margin-bottom: 25px; color: #ffffff;
}

.footer-badges { display: flex; gap: 25px; margin-bottom: 35px; }

.footer-badges span {
    display: flex; align-items: center; font-size: 14px;
    font-weight: 500; color: rgba(255, 255, 255, 0.9);
}

.dot {
    width: 10px; height: 10px; background: #00d063;
    border-radius: 50%; margin-right: 10px; box-shadow: 0 0 12px rgba(0, 208, 99, 0.6);
}

.footer-links {
    list-style: none; padding: 0; margin: 0 0 40px 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; max-width: 450px;
}

.footer-links li a {
    color: #ffffff; text-decoration: none; font-size: 15px; opacity: 0.8; transition: all 0.3s ease;
}

.footer-links li a:hover { opacity: 1; padding-left: 5px; color: #00d063; }

.footer-copy {
    font-size: 13px; opacity: 0.5; margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px;
}

.footer-right {
    flex: 1; display: flex; flex-direction: column; align-items: flex-end; 
    text-align: right; min-width: 350px;
}

.footer-desc {
    font-size: 16px; opacity: 0.9; line-height: 1.7;
    margin-bottom: 35px; max-width: 440px; 
}

.footer-btn {
    padding: 14px 32px; border-radius: 50px; background: #ffffff; color: #003579;
    border: none; font-weight: 700; font-size: 15px; cursor: pointer;
    margin-bottom: 40px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex; align-items: center; gap: 10px;
}

.footer-btn:hover {
    transform: scale(1.05) translateX(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-logo { margin-bottom: 25px; }

.footer-logo img {
    width: 250px; height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25)); border-radius: 8px;
}

.footer-legal { display: flex; gap: 25px; }

.footer-legal a { color: #ffffff; font-size: 13px; text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.footer-legal a:hover { opacity: 1; }

.footer-floating-icons {
    position: absolute; right: 40px; top: 50%;
    transform: translateY(-50%); display: flex; flex-direction: column;
    align-items: center; gap: 18px; z-index: 10;
}

.circle-btn {
    width: 48px; height: 48px; background: #004fbb; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 22px; cursor: pointer;
    transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;
}

.circle-btn:hover { background: #00d063; transform: translateY(-5px); }

.side-icons {
    display: flex; flex-direction: column; gap: 12px; background: rgba(255, 255, 255, 0.1);
    padding: 15px; border-radius: 40px; backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.15);
}

.icon-btn {
    width: 42px; height: 42px; background: #0051c5; border-radius: 12px;
    border: none; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: all 0.3s ease;
}

.icon-btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.icon-btn:hover { transform: scale(1.15) rotate(5deg); background: #0047a5; }

/* =======================================================
   RESPONSIVE CSS ADDITIONS (Tablet & Mobile)
   ======================================================= */

/* --- Hamburger Menu Icon Styling --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
}

/* Hamburger Animation */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: rotate(-45deg);
}

/* --- TABLET & MOBILE (max-width: 1024px) --- */
@media (max-width: 1024px) {
    nav { padding: 1.5rem 2rem; }
    .logo img { width: 220px; }
    
    /* Show Hamburger */
    .menu-toggle { display: flex; }
    
    /* Hidden Slide-In Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 35, 5, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    
    /* Active state for menu */
    .nav-links.nav-active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        margin: 5px 0;
    }

    .nav-links a {
        border: none;
        background: transparent;
        font-size: 1.15rem;
        display: block;
        padding: 12px 10px;
        border-radius: 0;
        text-align: left;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Disable desktop hover interactions on mobile */
    .nav-item:hover .dropdown {
        transform: none;
        opacity: 0;
        visibility: hidden;
    }

    /* Responsive Dropdowns (Accordion Style) */
    .dropdown {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        display: none;
        background: rgba(0,0,0,0.2);
        border-radius: 8px;
        width: 100%;
        padding: 5px 0 5px 15px;
        margin-top: 5px;
        border: none;
    }

    /* Open state triggered by JS */
    .nav-item.mobile-dropdown-open .dropdown {
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        transform: none;
        animation: slideDown 0.3s ease;
    }

    .nav-item.mobile-dropdown-open > a {
        color: #8cb500;
        background: rgba(255, 255, 255, 0.05);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown a {
        font-size: 0.95rem;
        padding: 10px 15px !important;
        text-align: left;
    }

    /* Footer Adjustments for Tablet */
    .footer {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }
    .footer-right {
        align-items: flex-start;
        text-align: left;
        min-width: 100%;
    }
    .footer-desc {
        max-width: 100%;
    }
    .footer-floating-icons {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 10px;
    }
    .side-icons {
        flex-direction: row;
    }

    /* Sections Adjustments */
    .hero-section { padding-top: 100px; }
}

/* --- MOBILE SPECIFIC (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Navbar specific */
    .nav-links {
        max-width: 100%; /* Full screen menu on small phones */
    }

    /* Hero adjustments */
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-desc { font-size: 0.95rem; }
    
    /* Fix the excessively wide button group breaking horizontal scroll */
    .button-group {
        width: 100%;
        justify-content: flex-start;
    }
    .btn {
        width: 100%;
        text-align: center;
        display: block; 
    }

    /* Content Card / Main Section adjustments */
    .main-section { padding: 1rem; }
    .left-panel, .right-panel {
        padding: 2.5rem 1.5rem; /* More comfortable padding for mobile */
    }
    
    /* Override desktop 5rem font-size to prevent screen blowout */
    .content-card .hero-title {
        font-size: 2.8rem;
    }
    .content-card .hero-title span {
        font-size: 2.3rem;
    }
    .main-quote {
        font-size: 1.5rem;
    }

    /* Impact Section */
    .impact-section {
        padding: 3rem 1.5rem;
    }
    .main-title {
        font-size: 2.2rem;
    }
    .impact-slider-section {
        padding: 40px 15px;
    }

    /* Footer Specifics */
    .footer {
        padding: 40px 20px;
    }
    .footer-badges {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .circle-btn {
        display: none; /* Simplify UI for small mobile */
    }
}