body {
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar styling */
.navbar {
    background: rgba(41, 50, 65, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4FB3FF !important;
}

/* Logo styling */
.navbar-logo {
    height: 40px;
    width: auto;
}

/* Hero section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2C3E50, #3498DB);
    padding: 120px 0 80px;
    color: white;
}

/* Comic-style burst CTA in hero */

/* Burst CTA aligned with navbar */
.burst-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #121212;
    font-weight: 800;
    z-index: 0; /* create stacking context for pseudo */
}

/* Starburst spikes behind the label */
.burst-link::before {
    content: "";
    position: absolute;
    inset: -26px -28px; /* extend beyond label so spikes are visible */
    background: radial-gradient(circle at 30% 30%, #ffe066 0%, #ffd43b 60%, #fab005 100%);
    clip-path: polygon(50% 6%, 58% 20%, 72% 12%, 65% 28%, 88% 26%, 68% 40%, 96% 50%, 68% 60%, 88% 74%, 65% 72%, 72% 88%, 58% 80%, 50% 94%, 42% 80%, 28% 88%, 35% 72%, 12% 74%, 32% 60%, 4% 50%, 32% 40%, 12% 26%, 35% 28%, 28% 12%, 42% 20%);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25), inset 0 0 0 3px #212529, inset 0 0 0 7px #ff6b6b;
    z-index: 0;
    transform: scale(1.02);
    pointer-events: none;
}

.burst-link .burst-text {
    display: inline-block;
    padding: 14px 20px;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #000;
    background: transparent; /* no rectangle */
    border-radius: 0;
    border: 0;
    box-shadow: none;
    font-size: 1.05rem;
    font-weight: 900;
    text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
    position: relative;
    z-index: 1;
}

.burst-link:hover .burst-text {
    transform: rotate(-2deg) scale(1.03);
    transition: transform 0.2s ease;
}

/* Hero images */
.hero-logo {
    height: 350px;
    width: auto;
    object-fit: contain;
    background-color: white;
    border-radius: 10px;
}

.hero-img {
    max-width: 350px;
    height: 350px;
    object-fit: contain;
    margin-bottom: 0px !important;
    
}

/* Section styling */
.section {
    padding: 100px 0;
}

.section h2 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.bg-light {
    background: #F8FAFC;
}

/* Images */
.section-img, .hero-img {
    max-width: 350px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.section-img:hover, .hero-img:hover {
    transform: translateY(-5px);
}

/* Layout */
.section .container, .hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.image-container {
    flex: 0 0 350px;
}

.text-container {
    flex: 1;
    min-width: 300px;
}

/* Social icons */
.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #4FB3FF;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section .container,
    .hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .image-container,
    .text-container {
        flex: 0 0 100%;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .hero-logo {
        height: 200px;
    }
    
    .hero-img {
        height: 200px;
    }

    .burst-link .burst-text { padding: 10px 12px; font-size: 0.92rem; }
}
