/* ==========================================================================
   YOUTH ASSOCIATION OF WEB — DESIGN SYSTEM & CENTRAL STYLESHEET
   (Tailwind-compatible — no Bootstrap overrides)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color:   #18A7D8;
    --secondary-color: #2B87B8;
    --green-color:     #83C341;
    --white-color:     #ffffff;
    --dark-bg:         #090e17;
    --dark-card:       rgba(17, 24, 39, 0.85);
    --light-bg:        #f8fafc;
    --glass-bg:        rgba(255, 255, 255, 0.55);
    --glass-border:    rgba(255, 255, 255, 0.30);
    --glass-shadow:    0 8px 32px 0 rgba(31, 38, 135, 0.10);
    --radius-card:     20px;
    --radius-btn:      12px;
    --font-ar:         'Cairo', sans-serif;
    --font-en:         'Poppins', sans-serif;
    --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-en);
    background-color: var(--light-bg);
    color: #1e293b;
    overflow-x: hidden;
    transition: background-color 0.4s, color 0.4s;
}

body.rtl {
    font-family: var(--font-ar);
    direction: rtl;
    text-align: right;
}

/* ==========================================================================
   DARK MODE
   ========================================================================== */
body.dark-mode,
html.dark body {
    background-color: var(--dark-bg);
    color: #f1f5f9;
}

/* Navbar dark */
body.dark-mode .navbar-glass,
html.dark .navbar-glass {
    background: rgba(9, 14, 23, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glass card dark */
body.dark-mode .glass-card,
html.dark .glass-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: #e2e8f0;
}

body.dark-mode .glass-card h1,
body.dark-mode .glass-card h2,
body.dark-mode .glass-card h3,
body.dark-mode .glass-card h4,
body.dark-mode .glass-card h5,
body.dark-mode .glass-card h6,
html.dark .glass-card h1,
html.dark .glass-card h2,
html.dark .glass-card h3,
html.dark .glass-card h4,
html.dark .glass-card h5,
html.dark .glass-card h6 {
    color: #ffffff;
}

/* Form controls dark */
body.dark-mode .yof-input,
html.dark .yof-input {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
body.dark-mode .yof-input::placeholder,
html.dark .yof-input::placeholder { color: rgba(255,255,255,0.4); }

body.dark-mode footer,
html.dark footer {
    background: #05080d !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dark mode text helpers */
body.dark-mode .text-muted-yof,
html.dark .text-muted-yof { color: #94a3b8; }

/* Section headings dark */
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4,
html.dark h1, html.dark h2, html.dark h3, html.dark h4 { color: #f1f5f9; }

body.dark-mode p,
html.dark p { color: #cbd5e1; }

/* Nav links dark */
body.dark-mode .nav-link-yof,
html.dark .nav-link-yof { color: #cbd5e1; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.navbar-glass.navbar-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-link-yof {
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    color: #334155;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link-yof::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link-yof:hover {
    color: var(--primary-color);
    background: rgba(24, 167, 216, 0.08);
}

.nav-link-yof:hover::after {
    width: 60%;
}

/* ==========================================================================
   GLASSMORPHISM CARD
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px 0 rgba(31, 38, 135, 0.14);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-yof {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-yof:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 167, 216, 0.45);
    color: #fff;
}

.btn-green-yof {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--green-color) 0%, #6da234 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-green-yof:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 195, 65, 0.45);
    color: #fff;
}

.btn-outline-yof {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    border-radius: 50px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline-yof:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    color: #fff;
}

/* Small button variants */
.btn-sm-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-sm-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(24,167,216,0.4); color: #fff; }

.btn-sm-outline {
    background: transparent;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-sm-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* ==========================================================================
   FORM CONTROLS
   ========================================================================== */
.yof-input {
    background: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(203, 213, 225, 0.7);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #1e293b;
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.yof-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 167, 216, 0.2);
    background: #fff;
}

/* ==========================================================================
   HERO VIDEO SECTION
   ========================================================================== */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 14, 23, 0.88) 0%,
        rgba(24, 167, 216, 0.35) 60%,
        rgba(131, 195, 65, 0.2) 100%
    );
    z-index: 2;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
}

.hero-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(24, 167, 216, 0.5));
    animation: logoPulse 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll indicator arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.8);
    font-size: 1.8rem;
    animation: bounceArrow 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}
.scroll-down-arrow:hover { color: var(--primary-color); }

/* Hero badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(24, 167, 216, 0.2);
    border: 1px solid rgba(24, 167, 216, 0.4);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #93e5ff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stat-box { text-align: center; padding: 1.5rem 1rem; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--green-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gradient divider */
.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(24,167,216,0.3), transparent);
    margin: 0;
    align-self: stretch;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(24, 167, 216, 0.1);
    border: 1px solid rgba(24, 167, 216, 0.25);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

body.dark-mode .section-title,
html.dark .section-title { color: #f1f5f9; }

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Gradient underline decoration */
.section-line {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--green-color));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ==========================================================================
   NEWS CARDS
   ========================================================================== */
.news-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.14);
}

.news-card-img {
    height: 200px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(24,167,216,0.06), rgba(131,195,65,0.06));
    padding: 1.5rem;
    width: 100%;
}

.news-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50px;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: color 0.3s;
}
.news-card-title:hover { color: var(--primary-color); }
body.dark-mode .news-card-title,
html.dark .news-card-title { color: #e2e8f0; }

/* ==========================================================================
   PARTNERS MARQUEE
   ========================================================================== */
.partners-marquee {
    overflow: hidden;
    position: relative;
    display: flex;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.partners-track img {
    height: 55px;
    margin: 0 45px;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: var(--transition);
    object-fit: contain;
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   EVENT & COURSE ITEMS
   ========================================================================== */
.event-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: var(--transition);
}
.event-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(24,167,216,0.12);
    border-color: rgba(24,167,216,0.25);
}

.event-date-box {
    min-width: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: #fff;
    text-align: center;
    padding: 0.6rem 0.5rem;
    flex-shrink: 0;
}

.course-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: var(--transition);
}
.course-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(131,195,65,0.12);
    border-color: rgba(131,195,65,0.25);
}

.course-icon-box {
    min-width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(131,195,65,0.15), rgba(24,167,216,0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ==========================================================================
   AI CHATBOT WIDGET
   ========================================================================== */
.ai-assistant-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

body.rtl .ai-assistant-container {
    right: auto;
    left: 30px;
}

.ai-chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(24, 167, 216, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.ai-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(24, 167, 216, 0.6);
}

.ai-chat-window {
    width: 360px;
    height: 460px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    position: absolute;
    bottom: 76px;
    right: 0;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

body.rtl .ai-chat-window { right: auto; left: 0; }

.ai-chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 1rem 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.ai-chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-message {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.88rem;
    line-height: 1.5;
}

.ai-message.bot {
    background: #f1f5f9;
    align-self: flex-start;
    border-top-left-radius: 4px;
    color: #334155;
}

.ai-message.user {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.ai-chat-footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 0.5rem;
    background: #fff;
}

/* Close btn in header */
.ai-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.ai-close-btn:hover { color: #fff; }

/* ==========================================================================
   DROPDOWN MENUS (custom, no Bootstrap)
   ========================================================================== */
.yof-dropdown {
    position: relative;
    display: inline-block;
}

.yof-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 160px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 1000;
}

body.rtl .yof-dropdown-menu { right: auto; left: 0; }

body.dark-mode .yof-dropdown-menu,
html.dark .yof-dropdown-menu {
    background: rgba(17, 24, 39, 0.95);
    border-color: rgba(255,255,255,0.1);
}

.yof-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #334155;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.yof-dropdown-item:hover {
    background: rgba(24, 167, 216, 0.08);
    color: var(--primary-color);
}

body.dark-mode .yof-dropdown-item,
html.dark .yof-dropdown-item { color: #cbd5e1; }

.yof-dropdown-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 0.4rem 0;
}

body.dark-mode .yof-dropdown-divider,
html.dark .yof-dropdown-divider { background: rgba(255,255,255,0.08); }

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
#mobileMenu {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,0.06);
}

body.dark-mode #mobileMenu,
html.dark #mobileMenu {
    background: rgba(9, 14, 23, 0.97);
    border-top-color: rgba(255,255,255,0.06);
}

/* ==========================================================================
   MEMBERSHIP DIGITAL CARD
   ========================================================================== */
.membership-digital-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-card);
    padding: 2rem;
    color: #fff;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(24, 167, 216, 0.5)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 45px rgba(24, 167, 216, 0.8)); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ==========================================================================
   UTILITY HELPERS
   ========================================================================== */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--green-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-yof { color: #64748b; }

.gradient-border {
    border: 1.5px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--green-color)) 1;
}

/* Pattern decorative bg */
.hero-dots-pattern {
    background-image: radial-gradient(circle, rgba(24,167,216,0.15) 1px, transparent 1px);
    background-size: 28px 28px;
}
