/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/


}


body {
  font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none !important;
}

.monetize_sections {
    background: #000;
}

.row {
    max-width: initial;
}

:root {
    --bg: #000;
    --card: #000;
    --muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.04);
    --primary-gradient: linear-gradient(to right, #E53E3E, #1E40AF);
    --primary-red: #DC2626;
    --primary-red-dark: #B91C1C;
    --primary-red-light: #EF4444;
    --secondary-blue: #2563EB;
    --secondary-blue-dark: #1E40AF;
    --secondary-blue-light: #3B82F6;
    --dark-bg: #000000;
    --dark-card: #0a0a0a;
    --dark-card-hover: #1a1a1a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

#main,
#wrapper {
    background-color: var(--bg);
    position: relative;
}

.badge-icon {
    background: var(--primary-gradient) !important;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    animation: float 15s ease-in-out infinite;
}

.animated-bg::before {
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.animated-bg::after {
    width: 400px;
    height: 400px;
    background: var(--secondary-blue);
    bottom: 20%;
    right: -10%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.btn-primary-custom, .btn-secondary-custom {
  position: relative;
  background: #000; /* or transparent */
  color: #fff !important;
  font-size: 16px !important;
  border-radius: 50px !important;
  font-weight: 600;
  transition: all 0.3s !important;
  box-shadow: none;
  border: none;
  z-index: 1;
  padding: 0.75rem 1.5rem !important;
  cursor: pointer;
  overflow: hidden; /* keeps radius clipping */
}

.btn-primary-custom::before,
.btn-secondary-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border thickness */
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  z-index: -1;
  filter: blur(0.5px); /* smoothens the edge */
}


.btn-secondary-custom:hover, .btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* .btn-secondary-custom {
    background: #fff !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
} */

.btn-outline-custom {
    border: 2px solid var(--secondary-blue);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: var(--secondary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-red-light);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94A3B8;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Stats Section */
.stats-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    color: #94A3B8;
    font-size: 0.95rem;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
    display: block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94A3B8;
    text-align: center;
    margin-bottom: 4rem;
}

/* Feature Cards */
.feature-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    color: #fff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

p.lead, .fw-bold{ color: #fff !important;}

.feature-description {
    color: #94A3B8;
    line-height: 1.8;
}

/* Monetization Cards */
.monetize-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
}

.monetize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
    border-color: var(--secondary-blue);
}

.monetize-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s;
}

.monetize-card:hover .monetize-img {
    transform: scale(1.1);
}

.monetize-content {
    padding: 2rem;
}

.monetize-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.monetize-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.monetize-description {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Image Section */
.image-section {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.image-section:hover img {
    transform: scale(1.05);
}

/* Steps Section */
.step-card {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    color: #fff;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-description {
    color: #94A3B8;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}


/* Floating Animation */
.float-animation {
    animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Accordion Custom Styling */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Pulse Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.pulse-animation {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* Glow Effect */
.glow-effect {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5), 0 0 40px rgba(37, 99, 235, 0.3);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.5), 0 0 40px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.7), 0 0 60px rgba(37, 99, 235, 0.5);
    }
}

/* Table Styling */
.table-dark {
    --bs-table-bg: rgba(20, 20, 20, 0.8);
    --bs-table-striped-bg: rgba(30, 30, 30, 0.8);
    --bs-table-hover-bg: rgba(40, 40, 40, 0.8);
    backdrop-filter: blur(10px);
}

.table-dark thead th {
    border-bottom: 2px solid rgba(220, 38, 38, 0.5);
}

.table-dark tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.table-dark tbody tr:hover {
    transform: scale(1.02);
}

    /* ===================================
   SAFETY TOOLS - PROFESSIONAL CSS
   =================================== */

/* Root Variables */

/* Global Styles */


/* Section Spacing */
/* section {
    padding: 80px 0;
    position: relative;
} */

.safety-cards-section {
    padding: 60px 0;
    position: relative;
}

#safety-tools, #privacy-tools, #account-security, #anti-bullying {
    padding: 60px 0;
    position: relative;
}


/* ===================================
   OVERVIEW SECTION
   =================================== */
.overview-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    position: relative;
    overflow: hidden;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.overview-section .row {
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-text {
    padding-right: 40px;
}

.overview-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
    text-align: left;
}

.overview-text .card-text {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transform: translateY(0);
    transition: var(--transition-base);
}

.overview-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ===================================
   BUTTONS
   =================================== */
.explore-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.explore-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.overview-section .explore-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.overview-section .explore-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* ===================================
   SAFETY CARDS SECTION
   =================================== */
.safety-cards-section {
    background: var(--background-light);
}

.safety-cards-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.safety-card {
    /* background: white; */
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.safety-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px !important;
    color: white !important;
}

.card-text {
    font-size: 1rem;
    color: white;
    margin-bottom: 24px;
    flex-grow: 1;
}

.safety-card .explore-btn {
    margin-top: auto;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    /* background: white; */
}

.content-section:nth-child(even) {
    background: var(--background-light);
}

.content-hero {
    text-align: center;
    margin-bottom: 60px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-red));
    border-radius: 2px;
}

.content-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   FEATURE CARDS
   =================================== */
.feature-card {
    background: #000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #333;
    transition: var(--transition-base);
    height: 100%;
    color: #fff;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 1.50rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card h3 i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For some modern browsers */
  font-size: 1.5rem;
  display: inline-block; /* Ensures the gradient applies properly */
}

.feature-card > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.feature-card ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================
   CONTENT IMAGES
   =================================== */
.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.content-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   SPECIAL SECTIONS
   =================================== */
.text-center {
    text-align: center;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-on-scroll:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-on-scroll:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-on-scroll:nth-child(4) {
    animation-delay: 0.4s;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .overview-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .overview-text .section-title {
        font-size: 2.5rem;
    }

    .content-title {
        font-size: 2.5rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .content-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .overview-text .section-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 2rem;
    }

    .content-subtitle {
        font-size: 1.125rem;
    }

    .safety-cards-section .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .explore-btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .overview-text .section-title {
        font-size: 1.75rem;
    }

    .content-title {
        font-size: 1.75rem;
    }

    .card-icon {
        width: 64px;
        height: 64px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .safety-card {
        padding: 30px 24px;
    }
}
