@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #EE2655;
    --primary-hover: #d81d47;
    --icons-color: #111111;
    --boxes-bg: #3d3e40;
    --cta-section: #135D74;
    --font-heading: "Playfair Display", serif;
    --font-paragraph: "Poppins", sans-serif;
    --text-white: #ffffff;
    --text-muted: #e1e3e5;
    --bg-light: #f5f6f8;
}

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

::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #ffffff;
}


::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #d81d47;
}

html,
body {
    font-family: var(--font-paragraph);
    /* background-color: var(--bg-light); */
    color: #333333;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Header Styles */
.top-header {
    width: 100%;
    position: absolute;
    top: 25px;
    left: 0;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 25;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
}

.header-container:not(:has(.header-logo)) {
    justify-content: flex-end;
}

.header-container:has(.header-logo) {
    align-items: flex-start;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 145px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    display: block;
}

.social-donate-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--icons-color);
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 26px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.donate-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.donate-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(238, 38, 85, 0.35);
}

/* Main Hero Section */
.dads-hero-section {
    position: relative;
    padding: 100px 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Concentric Circles */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    border: 50px solid rgba(0, 0, 0, 0.025);
    pointer-events: none;
    z-index: 1;
}

.bg-shape-left {
    width: 700px;
    height: 700px;
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
    border-width: 90px;
}

.bg-shape-right-top {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
    border-width: 70px;
}

.bg-shape-right-bottom {
    width: 450px;
    height: 450px;
    bottom: -200px;
    right: -200px;
    border-width: 85px;
}

/* Hero Main Container */
.hero-container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* Hero Slider Main Box (Left) */
.hero-slider-wrapper {
    width: 68%;
    position: relative;
    border-radius: 4px;
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
}

/* Logo Overlay */
.hero-logo {
    position: absolute;
    top: -75px;
    left: 40px;
    z-index: 30;
    background: transparent;
    pointer-events: auto;
}

.hero-logo img {
    height: 145px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    display: block;
}

/* Slide Image Showcase */
.hero-slide-image-container {
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-img.animate-img {
    animation: imgFadeScale 0.6s ease-out forwards;
}

@keyframes imgFadeScale {
    0% {
        opacity: 0.4;
        transform: scale(1.04);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bottom Controls Bar & Half-Overlapping Nav Buttons */
.hero-controls-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    margin-top: 20px;
    width: 100%;
}

.nav-buttons {
    position: absolute;
    left: 30px;
    top: -48px;
    /* Positions half of buttons (55px height) over slide image bottom edge */
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 25;
}

.nav-btn {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background-color: var(--primary-hover);
}

.nav-btn:active {
    transform: scale(0.95);
}

.slider-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
}

.slide-num {
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    letter-spacing: 0.5px;
}

.progress-bar-track {
    width: 140px;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Overlapping Dark Content Card (Right) */
.hero-content-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background-color: var(--boxes-bg);
    color: #ffffff;
    padding: 55px 48px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 12;
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-content-box h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.hero-content-box p {
    font-family: var(--font-paragraph);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 26px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(238, 38, 85, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #EE2655;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Animations for Content Card (Fade Up Effect) */
.animate-fade-up {
    animation: fadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Our Mission Section Styles */
.dads-mission-section {
    position: relative;
    padding: 100px 40px 120px;
    /* background-color: var(--bg-light); */
    overflow: hidden;
}

.mission-container {
    position: relative;
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
}

.mission-watermark {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-paragraph);
    font-size: 195px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.035);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    text-align: center;
}

.mission-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.mission-text-col {
    flex: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Scroll Entrance Initial States */
.mission-heading,
.mission-paragraph {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-paragraph {
    transition-delay: 0.15s;
}

.mission-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
}

.mission-paragraph {
    font-family: var(--font-paragraph);
    font-size: 30px;
    line-height: 1.5;
    color: #444444;
    font-weight: 400;
}

.mission-quote-card {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 12px;
    overflow: hidden;
}

.quote-accent-bar {
    width: 5px;
    background-color: #EAA827;
    border-radius: 3px;
    flex-shrink: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.45;
    color: #111111;
    font-style: normal;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Custom Leaf-Shaped Image Frame & Offset Dark Shape */
.mission-visual-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 650px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* Scroll Entrance Active In-View Animations */
.dads-mission-section.in-view .mission-heading,
.dads-mission-section.in-view .mission-paragraph {
    opacity: 1;
    transform: translateY(0);
}

.dads-mission-section.in-view .quote-accent-bar {
    transform: scaleY(1);
}

.dads-mission-section.in-view .quote-text {
    opacity: 1;
    transform: translateX(0);
}

.dads-mission-section.in-view .mission-visual-col {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mission-shape-container {
    position: relative;
    width: 600px;
    height: 480px;
}

.mission-dark-shape {
    position: absolute;
    top: -38px;
    right: -38px;
    width: 100%;
    height: 100%;
    background-color: #222222;
    border-radius: 150px 0px 150px 0px;
    z-index: 1;
}

.mission-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 150px 0 150px 0;
    overflow: hidden;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

/* Our Impact Section Styles */
.dads-impact-section {
    position: relative;
    padding: 100px 40px 120px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.impact-container {
    position: relative;
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.impact-image-container {
    width: 58%;
    height: 640px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    background-color: var(--boxes-bg);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.impact-content-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-40px);
    width: 52%;
    background-color: #000000d1;
    color: #ffffff;
    padding: 55px 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.impact-subtitle {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.impact-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.impact-intro {
    font-family: var(--font-paragraph);
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin-top: 4px;
}

.impact-list li {
    position: relative;
    padding-left: 20px;
    font-family: var(--font-paragraph);
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.impact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    top: -2px;
}

/* Scroll Entrance Active State */
.dads-impact-section.in-view .impact-content-box {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.dads-impact-section.in-view .impact-image-container {
    opacity: 1;
    transform: translateX(0);
}

/* Partner / Brands Section (Where We Serve) Styles */
.dads-brands-section {
    position: relative;
    padding: 90px 40px;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-brands-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.brands-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brands-subtitle {
    font-family: var(--font-paragraph);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.2px;
    margin-bottom: 12px;
    display: inline-block;
}

.brands-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    max-width: 820px;
    margin: 0 auto 50px auto;
}

.brands-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.brands-row-top {
    margin-bottom: 24px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 220px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.brand-box {
    width: 100%;
    height: 125px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-box img {
    max-height: 85px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-label {
    font-family: var(--font-paragraph);
    font-size: 13px;
    line-height: 1.35;
    color: #333333;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
}

.brand-item:hover .brand-box {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Call to Action (CTA) Section Styles */
.dads-cta-section {
    position: relative;
    padding: 95px 40px;
    background-color: var(--cta-section);
    color: #ffffff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-cta-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cta-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.cta-description {
    font-family: var(--font-paragraph);
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 960px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(238, 38, 85, 0.4);
}

.btn-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Our Story Section Styles */
.dads-story-section {
    position: relative;
    padding: 0 0px 60px 0px;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-story-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.story-container {
    position: relative;
    width: 100%;
    /* max-width: 1620px; */
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.story-image-col {
    width: 52%;
    position: relative;
    display: flex;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Gradient Shade Transition on Right Edge of Image */
.story-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

.story-text-col {
    width: 45%;
    padding: 40px 60px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
}

.story-paragraph {
    font-family: var(--font-paragraph);
    font-size: 24px;
    line-height: 1.7;
    color: #444444;
    font-weight: 400;
}

.btn-story-outline {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-paragraph);
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    border: 1px solid #EE2655;
    background-color: transparent;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-story-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Videos Showcase Section Styles */
.dads-videos-section {
    position: relative;
    padding: 20px 40px 100px;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-videos-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.videos-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #000000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(238, 38, 85, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-hover);
}

.video-card.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-card.playing:hover .video-play-btn {
    opacity: 0.9;
    pointer-events: auto;
}

/* Organizations Help & Support Us Section Styles */
.dads-orgs-section {
    position: relative;
    padding: 85px 40px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-orgs-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.orgs-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.orgs-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.orgs-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.org-card {
    background-color: transparent;
    border-radius: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.org-card img {
    max-height: 95px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1) contrast(1);
}

.org-card:hover {
    transform: scale(1.08);
}

/* Gallery Seamless Marquee Section Styles */
.dads-gallery-marquee-section {
    position: relative;
    padding: 25px 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    animation: galleryMarquee 75s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 220px;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.marquee-wrapper:hover .marquee-track,
.marquee-track:hover {
    animation-play-state: paused;
}

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

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

/* Footer Section Styles */
.dads-footer {
    position: relative;
    padding: 85px 40px 40px;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.footer-description {
    font-family: var(--font-paragraph);
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    font-weight: 300;
}

.footer-contact-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 8px;
    border: 1px solid var(--primary-color);
}

.footer-contact-btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(238, 38, 85, 0.4);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 15px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-divider {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 35px;
    margin-bottom: 20px;
}

.footer-copyright {
    font-family: var(--font-paragraph);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

/* ==========================================================================
   EXACT MEDIA QUERIES (AS REQUESTED)
   ========================================================================== */

/* 1. LARGE / MEDIUM DESKTOPS (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .top-header {
        top: 20px;
        padding: 0 45px;
    }

    .dads-hero-section {
        padding: 90px 30px 60px;
    }

    .hero-container {
        max-width: 1140px;
    }

    .hero-slider-wrapper {
        width: 66%;
    }

    .hero-logo {
        top: -65px;
    }

    .hero-logo img {
        height: 130px;
    }

    .hero-slide-image-container {
        height: 500px;
    }

    .hero-content-box {
        width: 48%;
        padding: 45px 40px;
    }

    .hero-content-box h1 {
        font-size: 34px;
    }

    .hero-content-box p {
        font-size: 14px;
    }

    /* Mission Section Overrides */
    .mission-watermark {
        font-size: 155px;
    }

    .mission-shape-container {
        width: 500px;
        height: 380px;
    }

    .mission-visual-col {
        width: 540px;
    }

    /* Impact Section Overrides */
    .impact-container {
        max-width: 1140px;
    }

    .impact-image-container {
        height: 560px;
    }

    .impact-content-box {
        width: 52%;
        padding: 45px 40px;
    }

    .impact-heading {
        font-size: 30px;
    }

    .impact-list li {
        font-size: 17px;
    }

    .impact-subtitle {
        font-size: 18px;
    }

    /* Brands & CTA Section Overrides */
    .brands-row {
        gap: 40px;
    }

    .cta-heading {
        font-size: 38px;
    }

    /* Story & Videos Section Overrides */
    .story-image-wrapper {
        height: 460px;
    }

    .story-heading {
        font-size: 38px;
    }

    .video-wrapper {
        height: 340px;
    }

    .mission-paragraph,
    .quote-text {
        font-size: 22px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .top-header {
        top: 18px;
        padding: 0 30px;
    }

    .dads-hero-section {
        padding: 85px 20px 60px;
    }

    .hero-slider-wrapper {
        width: 64%;
    }

    .hero-logo {
        top: -55px;
    }

    .hero-logo img {
        height: 115px;
    }

    .hero-slide-image-container {
        height: 460px;
    }

    .hero-content-box {
        width: 50%;
        padding: 40px 32px;
    }

    .hero-content-box h1 {
        font-size: 30px;
    }

    .hero-content-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 80px 20px 90px;
    }

    .mission-watermark {
        font-size: 120px;
    }

    .mission-heading {
        font-size: 38px;
    }

    .mission-paragraph,
    .quote-text {
        font-size: 22px;
    }

    .mission-shape-container {
        width: 440px;
        height: 340px;
    }

    .mission-visual-col {
        width: 460px;
    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 80px 20px 90px;
    }

    .impact-image-container {
        height: 520px;
        width: 62%;
    }

    .impact-content-box {
        width: 52%;
        padding: 40px 32px;
    }

    .impact-heading {
        font-size: 30px;
    }

    .impact-intro,
    .impact-list li {
        font-size: 14px;
    }

    /* Brands & CTA Section Overrides */
    .dads-brands-section {
        padding: 65px 20px;
    }

    .brands-row {
        gap: 30px;
    }

    .brand-item img {
        max-height: 48px;
        max-width: 130px;
    }

    .dads-cta-section {
        padding: 75px 20px;
    }

    .cta-heading {
        font-size: 34px;
    }

    .cta-description {
        font-size: 15px;
    }

    /* Story & Videos Section Overrides */
    .story-image-wrapper {
        height: 420px;
    }

    .story-heading {
        font-size: 34px;
    }

    .story-text-col {
        padding: 20px 30px 20px 10px;
    }

    .video-wrapper {
        height: 300px;
    }
}

/* 3. PORTRAIT TABLETS (577px - 991px) */
@media (min-width: 577px) and (max-width: 991px) {
    .top-header {
        top: 15px;
        padding: 0 24px;
    }

    .dads-hero-section {
        padding: 75px 20px 60px;
    }

    .hero-container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-wrapper {
        width: 100%;
    }

    .hero-slide-image-container {
        height: 420px;
    }

    .hero-logo {
        top: -45px;
        left: 20px;
    }

    .hero-logo img {
        height: 95px;
    }

    .hero-content-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 92%;
        margin: -60px auto 0;
        padding: 36px 32px;
    }

    .hero-content-box h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: row;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 70px 20px 80px;
    }

    .mission-grid {
        flex-direction: column;
        gap: 45px;
    }

    .mission-text-col {
        max-width: 100%;
    }

    .mission-watermark {
        font-size: 95px;
    }

    .mission-visual-col {
        width: 100%;
        justify-content: center;
    }

    .mission-shape-container {
        width: 90%;
        max-width: 520px;
        height: 380px;
    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 70px 20px 80px;
    }

    .impact-container {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .impact-image-container {
        width: 100%;
        height: 480px;
        transform: translateY(30px);
    }

    .dads-impact-section.in-view .impact-image-container {
        transform: translateY(0);
    }

    .impact-content-box {
        position: relative;
        left: auto;
        top: auto;
        transform: translateY(30px);
        width: 92%;
        margin: -60px auto 0;
        padding: 36px 32px;
    }

    .dads-impact-section.in-view .impact-content-box {
        transform: translateY(0);
    }

    .impact-heading {
        font-size: 28px;
    }

    /* Brands & CTA Section Overrides */
    .dads-brands-section {
        padding: 55px 20px;
    }

    .brands-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    .brand-item img {
        max-height: 45px;
        max-width: 120px;
    }

    .dads-cta-section {
        padding: 65px 24px;
    }

    .cta-heading {
        font-size: 30px;
    }

    .cta-description {
        font-size: 15px;
    }

    /* Story & Videos Section Overrides */
    .dads-story-section {
        padding: 50px 0 60px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image-col {
        width: 100%;
    }

    .story-image-wrapper {
        height: 380px;
    }

    .story-gradient-overlay {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .story-text-col {
        width: 100%;
        padding: 20px 24px;
    }

    .dads-videos-section {
        padding: 20px 24px 70px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-wrapper {
        height: 320px;
    }
}

/* 4. MOBILE (max-width: 576px) */
@media (max-width: 576px) {
    .top-header {
        position: relative;
        top: 0;
        padding: 14px 16px;
    }

    /* .social-donate-group {
        width: 100%;
        justify-content: space-between;
    } */

    .social-links {
        gap: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .donate-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .dads-hero-section {
        padding: 35px 12px 40px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-slider-wrapper {
        width: 100%;
    }

    .hero-logo {
        top: -25px;
        left: 15px;
    }

    .hero-logo img {
        height: 75px;
    }

    .hero-slide-image-container {
        height: 290px;
    }

    .hero-controls-bar {
        padding: 0;
        margin-top: 15px;
    }

    .nav-buttons {
        left: 15px;
        top: -38px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-progress-wrapper {
        margin: 0 auto;
        gap: 8px;
    }

    .progress-bar-track {
        width: 80px;
        height: 5px;
    }

    .slide-num {
        font-size: 13px;
    }

    .hero-content-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 95%;
        margin: -40px auto 0;
        padding: 28px 20px;
    }

    .hero-content-box h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-top: 20px;
    }

    .hero-content-box p {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 55px 16px 60px;
    }

    .mission-grid {
        flex-direction: column;
        gap: 35px;
    }

    .mission-text-col {
        max-width: 100%;
    }

    .mission-watermark {
        font-size: 60px;
    }

    .mission-heading {
        font-size: 28px;
    }

    .mission-paragraph {
        font-size: 16px;
    }

    .quote-text {
        font-size: 17px;
    }

    .mission-visual-col {
        width: 100%;
        justify-content: center;
    }

    .mission-shape-container {
        width: 94%;
        height: 270px;
    }

    .mission-image-wrapper {
        border-radius: 60px 0 60px 0;
    }

    .mission-dark-shape {
        border-radius: 0 60px 0 60px;
    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 50px 14px 60px;
    }

    .impact-container {
        flex-direction: column-reverse;
    }

    .impact-image-container {
        width: 100%;
        height: 290px;
        transform: translateY(20px);
    }

    .dads-impact-section.in-view .impact-image-container {
        transform: translateY(0);
    }

    .impact-content-box {
        position: relative;
        left: auto;
        top: auto;
        transform: translateY(20px);
        width: 95%;
        margin: -40px auto 0;
        padding: 28px 20px;
        gap: 14px;
    }

    .dads-impact-section.in-view .impact-content-box {
        transform: translateY(0);
    }

    .impact-subtitle {
        font-size: 13px;
    }

    .impact-heading {
        font-size: 22px;
        line-height: 1.3;
        margin-top: 20px;
    }

    .impact-intro,
    .impact-list li {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Brands & CTA Section Overrides - 2x2 Grid Layout for Mobile */
    .dads-brands-section {
        padding: 45px 16px;
    }

    .brands-container {
        gap: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
    }

    .brands-row {
        display: contents;
    }

    .brand-item {
        padding: 14px 10px;
    }

    .brand-item img {
        max-height: 42px;
        max-width: 110px;
    }

    .dads-cta-section {
        padding: 55px 18px;
    }

    .cta-heading {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
    }

    /* Story & Videos Section Overrides */
    .dads-story-section {
        padding: 40px 0 50px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image-col {
        width: 100%;
    }

    .story-image-wrapper {
        height: 280px;
    }

    .story-gradient-overlay {
        width: 100%;
        height: 35%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .story-text-col {
        width: 100%;
        padding: 15px 16px;
        gap: 14px;
    }

    .story-heading {
        font-size: 26px;
    }

    .story-paragraph {
        font-size: 17px;
    }

    .btn-story-outline {
        width: 100%;
        text-align: center;
    }

    .dads-videos-section {
        padding: 15px 16px 55px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-wrapper {
        height: 230px;
    }

    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .top-header {
        top: 18px;
        padding: 0 30px;
    }

    .dads-hero-section {
        padding: 85px 20px 60px;
    }

    .hero-slider-wrapper {
        width: 64%;
    }

    .hero-logo {
        top: -55px;
    }

    .hero-logo img {
        height: 115px;
    }

    .hero-slide-image-container {
        height: 460px;
    }

    .hero-content-box {
        width: 50%;
        padding: 40px 32px;
    }

    .hero-content-box h1 {
        font-size: 30px;
    }

    .hero-content-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 80px 20px 90px;
    }

    .mission-watermark {
        font-size: 120px;
    }

    .mission-heading {
        font-size: 38px;
    }

    .mission-paragraph,
    .quote-text {
        font-size: 22px;
    }

    .mission-shape-container {
        width: 440px;
        height: 340px;
    }

    .mission-visual-col {
        width: 460px;
    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 80px 20px 90px;
    }

    .impact-image-container {
        height: 520px;
        width: 62%;
    }

    .impact-content-box {
        width: 52%;
        padding: 40px 32px;
    }

    .impact-heading {
        font-size: 30px;
    }

    .impact-intro,
    .impact-list li {
        font-size: 14px;
    }

    /* Brands & CTA Section Overrides */
    .dads-brands-section {
        padding: 65px 20px;
    }

    .brands-row {
        gap: 30px;
    }

    .brand-item img {
        max-height: 48px;
        max-width: 130px;
    }

    .dads-cta-section {
        padding: 75px 20px;
    }

    .cta-heading {
        font-size: 34px;
    }

    .cta-description {
        font-size: 15px;
    }

    .story-paragraph {
        font-size: 22px;
    }
}

/* 3. PORTRAIT TABLETS (577px - 991px) */
@media (min-width: 577px) and (max-width: 991px) {
    .top-header {
        top: 15px;
        padding: 0 24px;
    }

    .dads-hero-section {
        padding: 75px 20px 60px;
    }

    .hero-container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-wrapper {
        width: 100%;
    }

    .hero-slide-image-container {
        height: 420px;
    }

    .hero-logo {
        top: -45px;
        left: 20px;
    }

    .hero-logo img {
        height: 95px;
    }

    .hero-content-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 92%;
        margin: -60px auto 0;
        padding: 36px 32px;
    }

    .hero-content-box h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: row;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 70px 20px 80px;
    }

    .mission-grid {
        flex-direction: column;
        gap: 45px;
    }

    .mission-text-col {
        max-width: 100%;
    }

    .mission-watermark {
        font-size: 95px;
    }

    .mission-visual-col {
        width: 100%;
        justify-content: center;
    }

    .mission-shape-container {
        width: 90%;
        max-width: 520px;
        height: 380px;
    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 70px 20px 80px;
    }

    .impact-container {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .impact-image-container {
        width: 100%;
        height: 480px;
        transform: translateY(30px);
    }

    .dads-impact-section.in-view .impact-image-container {
        transform: translateY(0);
    }

    .impact-content-box {
        position: relative;
        left: auto;
        top: auto;
        transform: translateY(30px);
        width: 92%;
        margin: -60px auto 0;
        padding: 36px 32px;
    }

    .dads-impact-section.in-view .impact-content-box {
        transform: translateY(0);
    }

    .impact-heading {
        font-size: 28px;
    }

    /* Brands & CTA Section Overrides */
    .dads-brands-section {
        padding: 55px 20px;
    }

    .brands-heading {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .brands-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        width: 100%;
        margin-bottom: 16px;
    }

    .brand-item {
        width: 100%;
    }

    .brand-box {
        width: 100%;
        height: 110px;
        padding: 12px;
    }

    .brand-box img {
        max-height: 70px;
    }

    .dads-cta-section {
        padding: 65px 24px;
    }

    .cta-heading {
        font-size: 30px;
    }

    .cta-description {
        font-size: 15px;
    }
}

/* 4. MOBILE (max-width: 576px) */
@media (max-width: 576px) {
    .top-header {
        position: relative;
        top: 0;
        padding: 14px 16px;
    }

    .social-donate-group {
        width: 100%;
        justify-content: space-between;
    }
 .social-donate-group-privacy {
        justify-content: flex-end;
    }
    .social-links {
        gap: 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .donate-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .dads-hero-section {
        padding: 35px 12px 40px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-slider-wrapper {
        width: 100%;
    }

    .hero-logo {
        top: -25px;
        left: 15px;
    }

    .hero-logo img {
        height: 82px;
    }

    .hero-slide-image-container {
        height: 290px;
    }

    .hero-controls-bar {
        padding: 0;
        margin-top: 15px;
    }

    .nav-buttons {
        left: 15px;
        top: -38px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-progress-wrapper {
        margin: 0 auto;
        gap: 8px;
    }

    .progress-bar-track {
        width: 80px;
        height: 5px;
    }

    .slide-num {
        font-size: 13px;
    }

    .hero-content-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 95%;
        margin: -40px auto 0;
        padding: 28px 20px;
    }

    .hero-content-box h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-content-box p {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }

    /* Mission Section Overrides */
    .dads-mission-section {
        padding: 55px 16px 60px;
    }

    .mission-grid {
        flex-direction: column;
        gap: 60px;
    }

    .mission-text-col {
        max-width: 100%;
    }

    .mission-watermark {
        font-size: 60px;
    }

    .mission-heading {
        font-size: 28px;
    }

    .mission-paragraph {
        font-size: 17px;
    }

    .quote-text {
        font-size: 17px;
    }

    .mission-visual-col {
        width: 100%;
        justify-content: center;
    }

    .mission-shape-container {
        width: 94%;
        height: 270px;
    }

    .mission-image-wrapper {
        border-radius: 60px 0 60px 0;
    }

    .mission-dark-shape {
        border-radius: 60px 0px 60px 0px;
        right: 16px;
        top: -17px;

    }

    /* Impact Section Overrides */
    .dads-impact-section {
        padding: 50px 14px 60px;
    }

    .impact-container {
        flex-direction: column-reverse;
    }

    .impact-image-container {
        width: 100%;
        height: 290px;
        transform: translateY(20px);
    }

    .dads-impact-section.in-view .impact-image-container {
        transform: translateY(0);
    }

    .impact-content-box {
        position: relative;
        left: auto;
        top: auto;
        transform: translateY(20px);
        width: 95%;
        margin: -40px auto 0;
        padding: 28px 20px;
        gap: 14px;
    }

    .dads-impact-section.in-view .impact-content-box {
        transform: translateY(0);
    }

    .impact-subtitle {
        font-size: 16px;
    }

    .impact-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .impact-intro,
    .impact-list li {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Brands Section Overrides - Unified 2x2 Grid Layout for Mobile */
    .dads-brands-section {
        padding: 40px 14px;
    }

    .brands-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        width: 100%;
        justify-items: center;
        align-items: start;
    }

    .brands-subtitle,
    .brands-heading {
        grid-column: 1 / -1;
    }

    .brands-heading {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 25px;
    }

    .brands-row,
    .brands-row-top,
    .brands-row-bottom {
        display: contents;
    }

    .brand-item {
        width: 100%;
    }

    .brand-box {
        width: 100%;
        height: 95px;
        padding: 8px 10px;
    }

    .brand-box img {
        max-height: 60px;
        max-width: 100%;
    }

    .brand-label {
        font-size: 15px;
        line-height: 1.25;
        margin-top: 6px;
    }

    .dads-cta-section {
        padding: 55px 18px;
    }

    .cta-heading {
        font-size: 38px;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 17px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }

    /* Organizations Help Section Overrides - 2x2 Grid Layout for Mobile */
    .dads-orgs-section {
        padding: 45px 16px;
    }

    .orgs-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .orgs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        width: 100%;
        justify-items: center;
        align-items: center;
    }

    .org-card {
        width: 100%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .org-card img {
        max-height: 70px;
        max-width: 130px;
    }

    /* Mobile Viewport FadeUp Entrance Animations */
    .dads-mission-section,
    .dads-impact-section,
    .dads-brands-section,
    .dads-cta-section,
    .dads-story-section,
    .dads-videos-section,
    .dads-orgs-section,
    .dads-gallery-marquee-section {
        opacity: 0;
        transform: translateY(35px);
        transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .dads-mission-section.in-view,
    .dads-impact-section.in-view,
    .dads-brands-section.in-view,
    .dads-cta-section.in-view,
    .dads-story-section.in-view,
    .dads-videos-section.in-view,
    .dads-orgs-section.in-view,
    .dads-gallery-marquee-section.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .bg-shape {
        display: none;
    }
}

/* ==========================================================================
   Tabbed Modal System Styles
   ========================================================================== */
.dads-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.modal-open {
    overflow: hidden !important;
}

.dads-modal-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dads-modal-overlay.active .dads-modal-container {
    transform: translateY(0) scale(1);
}

/* Modal Header */
.dads-modal-header {
    padding: 14px 24px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: none;
    background: #ffffff;
}

.dads-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.25;
}

.dads-modal-subtitle {
    font-family: var(--font-paragraph);
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.dads-modal-close {
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #4b5563;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.dads-modal-close:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Navigation Tabs */
.dads-modal-tabs {
    display: flex;
    background: #f8fafc;
    padding: 10px 24px;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.dads-modal-tabs::-webkit-scrollbar {
    display: none;
}

.modal-tab {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-family: var(--font-paragraph);
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.modal-tab:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

.modal-tab.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(238, 38, 85, 0.3);
}

.modal-tab i {
    font-size: 15px;
    flex-shrink: 0;
}

.modal-tab span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Body */
.dads-modal-body {
    padding: 26px 30px;
    overflow-y: auto;
    flex: 1;
}

.dads-modal-body::-webkit-scrollbar {
    width: 6px;
}

.dads-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dads-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.modal-panel {
    display: none;
}

.modal-panel.active {
    display: block;
    animation: modalPanelFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-paragraph);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--primary-color);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-paragraph);
    font-size: 14px;
    color: #0f172a;
    background-color: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(238, 38, 85, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* Checkbox Grid */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    margin-top: 4px;
    background: #f8fafc;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-paragraph);
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Form Action Buttons */
.form-submit-row {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.modal-submit-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: var(--font-paragraph);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.modal-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(238, 38, 85, 0.3);
}

/* Success Confirmation State */
.modal-success-state {
    text-align: center;
    padding: 40px 20px 20px 20px;
    animation: modalPanelFadeIn 0.35s ease forwards;
}

.success-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #16a34a;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.modal-success-state h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.modal-success-state p {
    font-family: var(--font-paragraph);
    font-size: 15px;
    color: #475569;
    max-width: 480px;
    margin: 0 auto 28px auto;
    line-height: 1.5;
}

/* Responsive Modal Styling */
@media screen and (max-width: 640px) {
    .dads-modal-overlay {
        padding: 8px;
    }

    .dads-modal-container {
        border-radius: 12px;
        max-height: 94vh;
    }

    .dads-modal-header {
        padding: 10px 14px 4px 14px;
    }

    .dads-modal-tabs {
        padding: 8px 10px;
        gap: 6px;
    }

    .modal-tab {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        gap: 4px;
        padding: 9px 4px;
        border-radius: 8px;
    }

    .modal-tab i {
        font-size: 15px;
    }

    .modal-tab span {
        font-size: 11px;
        line-height: 1.25;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }

    .dads-modal-body {
        padding: 16px 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .modal-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .dads-privacy-section {
        padding: 40px 20px 80px !important;
    }

    .privacy-container {
        padding: 24px !important;
    }
    .privacy-container h1 {
      font-size: 34px !important;
    }
}

/* Privacy Page / Terms Page Header Adjustments */
.top-header:has(.header-logo) {
    position: relative;
    top: 0;
    padding: 30px 60px;
    background-color: #ffffff;
    z-index: 25;
}

@media (max-width: 767px) {
    .top-header:has(.header-logo) {
        padding: 15px 15px;
    }
    .header-container:has(.header-logo) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .top-header:has(.header-logo) .header-logo img {
        height: 72px !important;
    }
    .top-header:has(.header-logo) .social-donate-group {
        gap: 8px;
    }
    .top-header:has(.header-logo) .social-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .top-header:has(.header-logo) .donate-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .footer-heading {
font-size: 35px;
    }
}

/* Privacy Policy Section */
.dads-privacy-section {
    padding: 60px 20px 80px;
    background-color: var(--bg-light);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-container h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--icons-color);
    margin-bottom: 10px;
}

.privacy-container .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.privacy-container h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--icons-color);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.privacy-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.privacy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-container li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

/* Header Logo Responsive Styles matching Hero Logo in index.html */
@media (min-width: 1200px) and (max-width: 1439px) {
    .header-logo img {
        height: 130px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .header-logo img {
        height: 110px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .header-logo img {
        height: 95px;
    }
}
@media (max-width: 767px) {
    .header-logo img {
        height: 95px;
    }
}
@media (max-width: 576px) {
    .header-logo img {
        height: 80px;
    }
}

/* Footer Policy Links Styling */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-policy-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-policy-link:hover {
    color: var(--primary-color);
}

.footer-policy-separator {
    color: #666;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Thank You & 404 Section Styles */
.thank-you-section, .not-found {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
}

.thank-you-container, .not-found-container {
    max-width: 600px;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.thank-you-container h1, .not-found-container h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--icons-color);
    margin: 20px 0 15px;
}

.thank-you-container p, .not-found-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Success Checkmark Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #22c55e;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #22c55e;
    animation: fill-check .4s ease-in-out .4s forwards, scale-check .3s ease-in-out 0s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #22c55e;
    fill: none;
    animation: stroke-check .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-check {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-check {
    100% {
        box-shadow: inset 0px 0px 0px 40px rgba(34, 197, 94, 0.1);
    }
}

/* 404 Styles */
.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 4px 10px rgba(238, 38, 85, 0.15);
}

.not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.not-found-actions .btn {
    flex: 1;
    max-width: 180px;
}

@media (max-width: 576px) {
    .thank-you-container, .not-found-container {
        padding: 40px 20px;
    }
    .error-code {
        font-size: 90px;
    }
    .thank-you-container h1, .not-found-container h1 {
        font-size: 30px;
    }
    .not-found-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .not-found-actions .btn {
        max-width: 100%;
        width: 100%;
    }
}

/* Custom Radio Buttons and Searchable Dropdown styles */
.custom-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-paragraph);
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    user-select: none;
}

.custom-radio input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 4px;
    background: #f8fafc;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
}

.searchable-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-trigger-box {
    position: relative;
    cursor: pointer;
}

.dropdown-search-trigger {
    cursor: pointer !important;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.searchable-dropdown-wrapper.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-content-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.searchable-dropdown-wrapper.active .dropdown-content-panel {
    display: block;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-search-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.dropdown-search-field {
    width: 100%;
    padding: 8px 12px 8px 32px !important;
    font-size: 13.5px !important;
    background-color: #ffffff !important;
}

.dropdown-search-wrapper .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 13px;
}

.dropdown-options-list {
    max-height: 180px;
    overflow-y: auto;
}

.dropdown-options-list::-webkit-scrollbar {
    width: 5px;
}

.dropdown-options-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dropdown-options-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.dropdown-option-item {
    padding: 9px 12px;
    font-size: 13.5px;
    color: #334155;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    text-align: left;
}

.dropdown-option-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.dropdown-option-item.selected {
    background-color: rgba(238, 38, 85, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.form-subtext {
    font-size: 12px;
    color: #64748b;
    margin-top: -2px;
    margin-bottom: 6px;
}

.agreement-checkbox-group {
    margin-top: 10px;
}