/* ============================================
   DYNAMIC DATA TECHNOLOGIES - MODERN TECH THEME
   Beautiful, Technological, Green-Focused Design
   ============================================ */

/* CSS Custom Properties - Design Tokens */
:root {
    /* Primary Green Palette */
    --primary-50: #e8f5e9;
    --primary-100: #c8e6c9;
    --primary-200: #a5d6a7;
    --primary-300: #81c784;
    --primary-400: #66bb6a;
    --primary-500: #4caf50;
    --primary-600: #43a047;
    --primary-700: #388e3c;
    --primary-800: #2e7d32;
    --primary-900: #1b5e20;
    
    /* Accent Colors */
    --accent-cyan: #00e5ff;
    --accent-teal: #1de9b6;
    --accent-lime: #c6ff00;
    
    /* Neutral Palette */
    --dark-900: #0a0f0d;
    --dark-800: #0f1a14;
    --dark-700: #142018;
    --dark-600: #1a2b22;
    --dark-500: #1e3a2c;
    
    /* Glass Effect Variables */
    --glass-bg: rgba(20, 32, 24, 0.7);
    --glass-border: rgba(129, 199, 132, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --glass-blur: 20px;
    
    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(76, 175, 80, 0.4);
    --glow-accent: 0 0 30px rgba(0, 229, 255, 0.3);
    --glow-text: 0 0 40px rgba(76, 175, 80, 0.6);
    
    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Bootstrap overrides */
    --bs-primary: #4caf50;
    --bs-secondary: #1e3a2c;
}

/* Smooth scrolling & base */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

/* Selection styling */
::selection {
    background: var(--primary-500);
    color: white;
}

/* ============================================
   ANIMATED BACKGROUND - TECH GRID
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(76, 175, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 80, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   GLASS MORPHISM COMPONENTS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px !important;
    box-shadow: 
        0 8px 32px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(76, 175, 80, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: rgba(129, 199, 132, 0.4);
    box-shadow: 
        0 16px 48px var(--glass-shadow),
        var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* Glass Button */
.glass-button {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-button:hover {
    color: #fff;
    border-color: var(--primary-400);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.glass-button:hover::before {
    opacity: 1;
}

.glass-button span,
.glass-button i {
    position: relative;
    z-index: 1;
}

.button-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.button-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-color: var(--primary-400);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 15px;
}

.nav-logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.6));
    transform: scale(1.05);
}

.desktop-nav {
    display: none;
    padding: 8px 12px;
    margin-top: 10px;
    background: rgba(20, 32, 24, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 50px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block !important;
    }
}

.nav-container nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-container nav ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-container nav ul li a:hover {
    color: #fff !important;
    background: rgba(76, 175, 80, 0.1);
}

.nav-container nav ul li.active a {
    color: #fff !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(76, 175, 80, 0.15));
    box-shadow: inset 0 0 20px rgba(76, 175, 80, 0.1);
}

/* Contact button in nav */
.text-show {
    display: flex;
    align-items: center;
    padding: 8px !important;
    border-radius: 50%;
    color: var(--primary-400) !important;
    transition: var(--transition-smooth);
}

.text-show:hover {
    background: rgba(76, 175, 80, 0.2);
    box-shadow: var(--glow-primary);
}

.text-show:hover p {
    display: block !important;
    margin: 0;
    padding-right: 10px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: var(--primary-400);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Mobile Navigation */
.mobile-nav-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
    border-right: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav-container.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.mobile-nav-links {
    padding: 20px;
}

.mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links ul li {
    margin-bottom: 8px;
}

.mobile-nav-links ul li a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.mobile-nav-links ul li a:hover {
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary-300);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

.mobile-nav-backdrop.active {
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.4;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, 
        rgba(27, 53, 40, 0.9) 0%, 
        rgba(10, 15, 13, 0.98) 70%,
        rgba(1, 1, 2, 1) 100%) !important;
    z-index: -1;
}

/* Animated gradient orbs */
.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.overlay::before {
    width: 600px;
    height: 600px;
    background: var(--primary-700);
    top: -200px;
    right: -200px;
}

.overlay::after {
    width: 500px;
    height: 500px;
    background: var(--accent-teal);
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(40px, 10px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px !important;
    width: 750px;
    max-width: 95vw;
    margin: 80px auto 0;
    background: rgba(20, 32, 24, 0.6);
    backdrop-filter: blur(30px);
}

.hero-logo {
    width: 320px !important;
    max-width: 80% !important;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.4));
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.6)); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   SECTIONS - GENERAL STYLES
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-teal));
    border-radius: 3px;
}

/* ============================================
   INFO / STATS SECTION
   ============================================ */
#info {
    background: linear-gradient(180deg, var(--dark-700), var(--dark-800));
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

#info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

#info .section-title {
    color: #fff;
    margin-bottom: 3rem;
}

.stat-item {
    padding: 30px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--accent-teal) 50%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: var(--glow-text);
}

#info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
    max-width: 250px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    background: var(--dark-900);
}

.about-card {
    background: rgba(20, 32, 24, 0.5) !important;
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    padding: 40px !important;
    height: 100%;
    transition: var(--transition-smooth);
}

.about-card:hover {
    background: rgba(30, 42, 34, 0.7) !important;
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.about-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-300);
    margin-bottom: 1.5rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.about-card .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
}

#services .text-center.mb-5 {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.card {
    background: rgba(20, 32, 24, 0.6);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 20px !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-teal), var(--primary-500));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        var(--glow-primary);
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    background: transparent;
    border: none;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.card-img-svg svg {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.4));
    transition: var(--transition-smooth);
}

.card:hover .card-img-svg svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(76, 175, 80, 0.6));
}

.card-body {
    background: transparent;
    padding: 25px 30px 35px;
    text-align: center;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-300) !important;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.card-body p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 15px 20px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
#blog {
    background: var(--dark-700) !important;
}

#blog .card {
    background: rgba(15, 26, 20, 0.8);
}

#blog .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    transition: var(--transition-smooth);
}

#blog .card:hover .card-img-top {
    transform: scale(1.05);
}

#blog .card-body {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

#blog .card-title {
    color: #fff !important;
}

#blog .card-text {
    color: rgba(255, 255, 255, 0.65);
}

#blog .card-footer {
    background: transparent;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

#blog .card-footer .btn {
    color: var(--primary-300);
    border: 1px solid var(--primary-500);
    padding: 8px 20px;
    transition: var(--transition-fast);
}

#blog .card-footer .btn:hover {
    background: var(--primary-500);
    color: #fff;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: var(--dark-900);
}

#contact .card {
    background: rgba(20, 32, 24, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

#contact .card-body {
    padding: 50px !important;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    color: #fff;
    padding: 14px 18px;
    transition: var(--transition-fast);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
    color: #fff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.8);
}

footer img {
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
    transition: var(--transition-smooth);
}

footer img:hover {
    filter: drop-shadow(0 0 25px rgba(76, 175, 80, 0.5));
}

footer h4 {
    color: var(--primary-300);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 20px;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
}

footer .footer-links {
    display: block;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

footer .footer-links li {
    margin-bottom: 10px;
}

footer .footer-links a:hover {
    color: var(--primary-300);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-300);
    transition: var(--transition-smooth);
    margin: 0;
}

.social-links a:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

footer hr {
    border-color: rgba(76, 175, 80, 0.2);
    margin: 30px 0;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-teal), var(--primary-400));
    z-index: 1100;
    box-shadow: 0 0 10px var(--primary-500);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-light {
    background: var(--dark-700) !important;
}

.text-center {
    text-align: center;
}

.glow-text {
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

/* Quote styling */
q {
    quotes: '"' '"' "'" "'";
}

q::before {
    content: open-quote;
    font-size: 2.5rem;
    color: var(--primary-400);
    line-height: 0;
    vertical-align: -0.4em;
}

q::after {
    content: close-quote;
    font-size: 2.5rem;
    color: var(--primary-400);
    line-height: 0;
    vertical-align: -0.4em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 40px 25px !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 30px 20px !important;
        margin-top: 100px;
    }
    
    .hero-logo {
        width: 250px !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 25px !important;
    }
    
    #contact .card-body {
        padding: 30px !important;
    }
    
    footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .glass-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   BLOG LIST PAGE SPECIFIC
   ============================================ */
.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.img-fluid.blog-hero {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

/* Pagination */
.page-link {
    background: rgba(20, 32, 24, 0.8);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: var(--primary-300);
}

.page-link:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: var(--primary-500);
    color: #fff;
}

.active > .page-link {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff;
}

/* ============================================
   JUMBO / DECORATIVE ELEMENTS
   ============================================ */
.jumbo {
    background-image: 
        radial-gradient(at 40% 20%, rgba(76, 175, 80, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(0, 229, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(76, 175, 80, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(29, 233, 182, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(76, 175, 80, 0.12) 0px, transparent 50%);
    pointer-events: none;
}

/* Ensure proper z-index layering */
.absolute {
    position: absolute;
}

.-inset-\[10px\] {
    inset: -10px;
}

.opacity-50 {
    opacity: 0.5;
}

/* ============================================
   FLOATING PARTICLES ANIMATION
   ============================================ */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* ============================================
   TESTIMONIALS SECTION (if enabled)
   ============================================ */
.testimonial {
    background: rgba(20, 32, 24, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.testimonial:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.testimonial .quote-icon {
    color: var(--primary-400);
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-500);
}

.testimonial-author strong {
    color: var(--primary-300);
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-600);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-700) var(--dark-900);
}