/* ==========================================================================
   SBJ NIRMAL KANPUR - Global Design System & Stylesheet (Vanilla CSS)
   Theme: Corporate Clean Red, White & Black with Premium Gold Touches
   ========================================================================== */

/* Custom Variables */
:root {
    --red-primary: #D32F2F;      /* Premium crimson red */
    --red-dark: #8E1C1C;
    --red-light: #FFEBEE;
    
    --black-primary: #121212;    /* Deep elegant black */
    --black-surface: #1E1E1E;    /* Slightly lighter surface black */
    --black-muted: #2A2A2A;
    
    --white: #FFFFFF;
    --white-soft: #F9F9F9;
    --gray-light: #F0F0F2;
    --gray-medium: #8E8E93;
    
    --gold: #D4AF37;             /* Classic metallic gold */
    --gold-dark: #AA820A;
    --gold-light: rgba(212, 175, 55, 0.15);
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.25);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* SECTION HEADER WRAPPER */
.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    color: var(--red-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--red-primary);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 5px;
    background-color: var(--gold);
    z-index: 2;
}

/* Utility Badges */
.badge-gold {
    background-color: var(--gold-light);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.5);
    border-color: var(--gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black-primary);
    border: 1px solid var(--black-primary);
}

.btn-secondary:hover {
    background-color: var(--black-primary);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Header & Navigation */
.site-header {
    background-color: var(--black-primary);
    border-bottom: 2px solid var(--gold);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-medium);
}

.header-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-info {
    display: flex;
    gap: 20px;
}

.header-top-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-top-info span i {
    color: var(--gold);
}

.header-main-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.logo-tagline {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-medium);
    display: block;
    margin-top: -4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: #e0e0e0;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-primary);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dynamic Live Search Bar */
.search-container {
    position: relative;
    flex: 1;
    max-width: 320px;
}

.search-input {
    width: 100%;
    background-color: var(--black-surface);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 10px 40px 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background-color: var(--black-muted);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

/* Search Dropdown Results */
.search-results-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: var(--black-surface);
    border: 1px solid var(--black-muted);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    display: none;
    max-height: 350px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background-color: var(--black-muted);
}

.search-result-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    background-color: #333;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.search-result-part {
    font-size: 11px;
    color: var(--gold);
}

/* Hamburger Menu */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black-primary) 0%, #1e1e24 100%);
    position: relative;
    padding: 80px 0 100px;
    color: var(--white);
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--gold);
    display: block;
    font-size: 54px;
}

.hero-content p {
    color: var(--gray-medium);
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-search-box {
    background-color: var(--black-surface);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.hero-search-box input {
    background: none;
    border: none;
    color: var(--white);
    flex: 1;
    font-size: 15px;
}

.hero-search-box button {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-search-box button:hover {
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-badge-image {
    width: 320px;
    height: 320px;
    background: radial-gradient(var(--black-muted) 40%, rgba(0,0,0,0.5));
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.hero-badge-inner {
    text-align: center;
}

.hero-badge-inner .seal {
    font-size: 80px;
    margin-bottom: 10px;
}

.hero-badge-inner h3 {
    color: var(--white);
    font-size: 20px;
}

.hero-badge-inner p {
    color: var(--gold);
    font-weight: 700;
}

/* Category Grid Section */
.categories-section {
    padding: 80px 0;
    background-color: var(--white-soft);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-bottom: 3px solid var(--black-primary);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--red-primary);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--red-primary);
}

.category-card h3 {
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 12px;
    color: var(--gray-medium);
}

/* Catalog Filter Layout */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 50px 0 80px;
}

/* Sidebar Filters */
.catalog-sidebar {
    background-color: var(--white-soft);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filter-section {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.filter-list::-webkit-scrollbar {
    width: 4px;
}

.filter-list::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.15);
    border-radius: 2px;
}

.filter-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.filter-item input[type="checkbox"] {
    accent-color: var(--red-primary);
    cursor: pointer;
}

.filter-item label {
    cursor: pointer;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Catalog View */
.catalog-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-soft);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.catalog-header-bar span {
    font-weight: 600;
    font-size: 14px;
}

.catalog-sorting select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.15);
    background-color: var(--white);
    font-weight: 500;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Golden Touch Border */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); /* Golden Glow Shadow */
    border-color: var(--gold);
}

.product-card-img-wrap {
    height: 220px; /* Fixed Single Size for all images */
    background-color: #fafafa;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.product-card-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Uniform fit */
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-img-wrap img {
    transform: scale(1.06);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-brand {
    font-size: 10px;
    color: var(--red-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px; /* Fixed Height to align titles */
    line-height: 1.45;
}

.product-card-spec {
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    height: 36px; /* Fixed height: Leaves space for 2 lines of description */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.product-card-footer .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
    transition: var(--transition-fast);
}

.page-num:hover, .page-num.active {
    background-color: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
}

.page-num.active {
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

/* Product Details Page styling */
.product-details-wrap {
    padding: 60px 0 80px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
}

.detail-img-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius-lg);
    background-color: var(--white-soft);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.detail-img-card img {
    max-height: 400px;
    object-fit: contain;
}

.detail-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.detail-meta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.spec-table-card {
    background-color: var(--white-soft);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.spec-table-card h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 10px 0;
    font-size: 14px;
}

.spec-table td.label {
    font-weight: 700;
    color: var(--black-primary);
    width: 40%;
}

.spec-table td.val {
    color: #444;
}

.contact-card {
    border-left: 4px solid var(--gold);
    background-color: #FAF6E8;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
}

/* FAQ Layout */
.faq-section {
    padding: 80px 0;
    background-color: var(--white-soft);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--red-primary);
    font-weight: bold;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    display: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    line-height: 1.6;
}

/* Contact Footer Area */
.site-footer {
    background-color: var(--black-primary);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--gray-medium);
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--red-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-medium);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--gray-medium);
}

/* Mobile Responsiveness Rules */
@media (max-width: 991px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        position: static;
        max-height: none;
    }
    
    .hero-grid, .product-details-grid, .about-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Collapsed under sidebar mobile code */
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .search-container {
        display: none; /* show in secondary toggle or simple */
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h1 span {
        font-size: 36px;
    }
}
