@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    /* Core brand colors (from logo) */
    --black: #000000;          /* True black background */
    --charcoal: #0E1116;       /* Dark text (Demand Tech text) */
    --gold: #E6B325;           /* Primary gold accent (logo MARKETING text) */
    --gold-dark: #C89A1D;      /* Darker gold for hover states */
    --gold-light: #F2CF66;     /* Softer gold highlight */

    /* Neutral tones */
    --gray: #8C8F94;           /* Muted gray for secondary text */
    --light: #F9FAFB;          /* Clean off-white sections */
    --white: #FFFFFF;

    /* UI usage */
    --accent: var(--gold);
    --accent-text: var(--gold);
    --accent-gradient: linear-gradient(
        135deg,
        #F2CF66,
        #E6B325,
        #C89A1D
    );

    --card-bg: #FFFFFF;
    --section-bg: #F9FAFB;

    /* Text colors */
    --text-dark: var(--charcoal);
    --text-light: #FFFFFF;
}



h1, h2, .highlight {
    color: var(--gold);
}

.button-primary {
    background: var(--accent-gradient);
    color: var(--black);
}



footer {
    background: var(--black);
    color: var(--text-light);
}


body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    background: var(--white);
    color: var(--text-dark);
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    font-weight: 900;
    font-size: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-secondary {
    font-weight: 600;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-ring {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-ring::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

/* Modern Header */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Enhanced Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #0A2342 0%, #2E8BC0 100%);
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #FFFFFF, #E3F2FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Modern Content Navigation */
.content-nav {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
    justify-content: center;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--section-bg);
    padding: 1rem;
    border-radius: 12px;
}

.nav-pill {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.nav-pill.active {
    background: var(--accent-gradient);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

/* Enhanced Cards */
.card-custom {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover .img-container img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--accent);
}

/* Badges */
.trending-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: none;
}

.badge-custom {
    background: var(--section-bg);
    color: var(--dark);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.category-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.subcategory-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 0;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--section-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* Footer Styles */
.footer {
    background: var(--accent-dark);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}


.btn-blue {

    background: var(--gray);

    color: #ffffff;

}



.btn-blue:hover,

.btn-blue:active,

.btn-blue:focus {

    background-color: #E6B325;

    color: white;

}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .content-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-pill {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeInUp 0.6s ease-out;
}