:root {
    --primary-color: #6f42c1;
    --secondary-color: #4169e1;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 56px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

.hero-section {
    background: var(--gradient);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stats-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.local-services-banner {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 10px;
    margin: 1rem 0;
}

#services .mb-5 {
	margin-bottom: 0rem !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    body {
        padding-top: 60px; /* Adjust for mobile header height */
    }
}
.btn-gradient {
    color: white !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-gradient:hover {
    opacity: 0.9;
    text-decoration: none;
}


.logo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1rem;   
}
.logo-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(111, 66, 193, 0.1);
}
.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(111, 66, 193, 0.15);
}
.logo-card.dark-bg {
    background: linear-gradient(135deg, #6f42c1, #4169e1);
}
.logo-card h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}
.logo-card.dark-bg h3 {
    color: white;
}
.logo-display {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}
.logo-card.dark-bg .logo-display {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.download-info {
    margin: 1rem 0;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}
.logo-card.dark-bg .download-info {
    color: rgba(255,255,255,0.8);
}
.btn-download {
    background: linear-gradient(135deg, #6f42c1, #4169e1);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}
.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}
.btn-download.white-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-download.white-btn:hover {
    background: rgba(255,255,255,0.3);
}
.usage-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;   
}
.usage-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;   
}
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.usage-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6f42c1;
}
.usage-item h4 {
    color: #6f42c1;
    margin-bottom: 0.5rem;
}
.color-palette {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}
.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
