/* Modern Sophisticated Design for National Apiculture Foundation */
:root {
    --primary: #1a4a1b;
    --primary-dark: #0d2c10;
    --secondary: #4a9e4b;
    --accent: #ffd700;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tiro Bangla', serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fafafa;
    overflow-x: hidden;
}

.tiro-bangla-regular {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: normal;
}

.tiro-bangla-regular-italic {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: italic;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.2;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link-highlight {
    background: linear-gradient(135deg, #FFD740, #FFC107);
    color: #1a4a1b !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 2px 10px rgba(255, 215, 64, 0.3);
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 64, 0.5);
}

.nav-link-highlight::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    z-index: 1001;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    /* Bee-themed background with subtle animation */
    background: linear-gradient(135deg, #fce9ab 0%, #ffffff 50%, #fadbb9f8 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-honeycomb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5' fill='none' stroke='%23FFD740' stroke-width='2' opacity='0.15'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: floatHoneycomb 20s ease-in-out infinite;
}

.honeycomb-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.honeycomb-2 {
    top: 60%;
    left: 5%;
    animation-delay: -7s;
    width: 60px;
    height: 60px;
}

.honeycomb-3 {
    top: 25%;
    right: 8%;
    animation-delay: -14s;
    width: 100px;
    height: 100px;
}

@keyframes floatHoneycomb {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 215, 64, 0.4);
    border-radius: 50%;
    animation: floatDot 15s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 70%; left: 15%; animation-delay: -3s; width: 8px; height: 8px; }
.dot-3 { top: 40%; right: 20%; animation-delay: -6s; width: 10px; height: 10px; }
.dot-4 { top: 80%; right: 10%; animation-delay: -9s; }

@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -20px);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, -40px);
        opacity: 0.3;
    }
    75% {
        transform: translate(-20px, -20px);
        opacity: 0.5;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 64, 0.4) 0%, rgba(255, 193, 7, 0.3) 50%, rgba(255, 152, 0, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 215, 64, 0.15);
    border: 1px solid rgba(255, 215, 64, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-badge i {
    color: #FFD740;
    font-size: 1.2rem;
    animation: buzz 2s ease-in-out infinite;
}

@keyframes buzz {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hero-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(31, 61, 43, 0.9);
}

/* Typing Text Effect */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #FFD740;
    margin-left: 3px;
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Gradient Text */
.gradient-text-hero {
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5A45 50%, #1F3D2B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-title-main {
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1.03;
    margin-bottom: 24px;
    color: #1F3D2B;
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(31, 61, 43, 0.9);
    margin-bottom: 24px;
    line-height: 1.4;
    font-style: italic;
}

.hero-paragraph {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(31, 61, 43, 0.85);
    margin-bottom: 32px;
    max-width: 750px;
    line-height: 1.75;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerBtn 3s ease-in-out infinite;
}

@keyframes shimmerBtn {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover .btn-icon {
    transform: rotate(15deg);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 61, 43, 0.1);
    animation: fadeInUp 0.6s ease-out 1s both;
}

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

.hero-stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1F3D2B;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(31, 61, 43, 0.7);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(31, 61, 43, 0.15);
}

/* Direct image styling */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 215, 64, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-image-direct {
    width: 100%;
    height: auto;
    max-height: 60vh;
    min-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
    border: 3px solid rgba(255, 215, 64, 0.3);
    animation: borderPulse 4s ease-in-out infinite, floatImage 8s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.hero-image-direct:hover {
    transform: scale(1.02) translateY(-2px);
}

/* Hero Image Badge */
.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 215, 64, 0.3);
    animation: slideInLeft 0.6s ease-out 1.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-badge i {
    font-size: 1.8rem;
    color: #FFD740;
}

.hero-image-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F3D2B;
    max-width: 180px;
    line-height: 1.4;
}

@keyframes borderPulse {
    0%, 100% { 
        border-color: rgba(255, 215, 64, 0.3); 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
    }
    50% { 
        border-color: rgba(255, 215, 64, 0.6); 
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); 
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-0.2deg);
    }
    75% {
        transform: translateY(-5px) rotate(0.1deg);
    }
}
.hero-subtitle-typing {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1F3D2B;
    font-family: 'Tiro Bangla', serif;

    position: relative;
    display: inline-block;
}

/* custom cursor */
.hero-subtitle-typing::after {
    content: "";
    display: inline-block;

    width: 2px;
    height: 1em;

    background-color: #FFD740;
    margin-left: 4px;

    vertical-align: middle;

    animation: blink 0.8s step-end infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out 1.5s both;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(31, 61, 43, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(31, 61, 43, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(31, 61, 43, 0.6);
    font-weight: 500;
    letter-spacing: 1px;
}

/* blink */
@keyframes blink {
    50% { opacity: 0; }
}
/* Responsive adjustments for typing animation */
@media (max-width: 768px) {
    .hero-subtitle-typing {
        font-size: 1.0rem;
        animation: typing 3.5s steps(35, end) forwards;
    }
}

/* 50/50 Layout Fix */
.hero .row {
    display: flex;
    flex-wrap: nowrap;
}

.hero .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.hero .col-lg-6:last-child {
    padding-right: 0;
}

.hero .col-lg-6:first-child {
    padding-left: 0;
}

/* Improved content positioning */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.hero-content > * {
    transform: translateZ(0);
}

/* Clean spacing adjustments */
.hero-content > * {
    margin: 0;
}

.hero-subtitle {
    margin: 0 0 24px 0;
}

.hero-paragraph {
    margin: 0;
}

.hero-cta {
    margin: 0;
}

@media (max-width: 992px) {
    .hero {
        min-height: 90vh;
        padding-top: 110px;
        padding-bottom: 60px;
        /* Reduced animation for smaller screens */
        animation: gradientShift 20s ease infinite;
    }
    
    .hero-title-main {
        font-size: 4.2rem;
        line-height: 1.04;
        letter-spacing: -1.8px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-badge span {
        font-size: 0.9rem;
    }
    
    .typing-text::after {
        width: 2px;
        height: 0.9em;
    }
    
    .hero-paragraph {
        font-size: 1.2rem;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .hero-stats {
        gap: 20px;
        padding-top: 28px;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-image-direct {
        max-height: 45vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-image-badge {
        bottom: -15px;
        left: -15px;
        padding: 12px 18px;
    }
    
    .hero-image-badge span {
        font-size: 0.85rem;
        max-width: 150px;
    }
    
    /* Responsive 50/50 fix */
    .hero .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
        /* Slower animation for mobile */
        animation: gradientShift 25s ease infinite;
        overflow: visible; /* Prevent content clipping */
        position: relative;
        top: 0;
        margin-top: 0;
    }
    
    .hero .container {
        position: relative;
        top: 0;
        margin-top: 0;
    }
    
    /* Change to single column on mobile */
    .hero .row {
        flex-direction: column;
        margin-top: 0; /* Ensure no negative margin */
    }
    
    .hero .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    /* Content first, image second */
    .hero .col-lg-6:first-child {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero .col-lg-6:last-child {
        order: 2;
    }
    
    .hero-title-main {
        font-size: 2.8rem;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }
    
    .hero-badge {
        margin-bottom: 16px;
        padding: 8px 16px;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .hero-badge span {
        font-size: 0.85rem;
    }
    
    .typing-text::after {
        width: 2px;
        height: 0.85em;
    }
    
    .hero-paragraph {
        font-size: 1.1rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }
    
    .hero-cta {
        gap: 12px;
        margin-bottom: 24px;
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 24px;
        justify-content: space-around;
    }
    
    .hero-stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-image-direct {
        width: 100% !important;
        max-height: 400px !important;
        min-height: 300px !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 16px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .hero-image-glow {
        display: none; /* Hide glow effect on mobile for better performance */
    }
    
    .hero-image-badge {
        bottom: -12px;
        left: -12px;
        padding: 10px 14px;
    }
    
    .hero-image-badge i {
        font-size: 1.4rem;
    }
    
    .hero-image-badge span {
        font-size: 0.8rem;
        max-width: 140px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .mouse {
        width: 26px;
        height: 42px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Even more compact for small mobile */
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .logo-icon img {
        height: 28px !important;
        width: 28px !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 50px;
        /* Pause animation on very small screens */
        animation: none;
        overflow: visible; /* Prevent content clipping */
    }
    
    .hero-title-main {
        font-size: 2.2rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    
    .hero-badge {
        margin-bottom: 12px;
        padding: 6px 12px;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .typing-text::after {
        width: 2px;
        height: 0.75em;
    }
    
    .hero-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-cta {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 16px;
        padding-top: 20px;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image-direct {
        width: 100% !important;
        max-height: 300px !important;
        min-height: 250px !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 12px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .hero-image-badge {
        bottom: -10px;
        left: -10px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .hero-image-badge i {
        font-size: 1.2rem;
    }
    
    .hero-image-badge span {
        font-size: 0.75rem;
        max-width: 120px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .floating-honeycomb,
    .floating-dot {
        display: none;
    }
}

/* ========================================
   SIMPLE REGISTRATION PAGE (Mobile-First)
   ======================================== */

.simple-register-page {
    padding: 100px 0 60px;
    background: #f5f5f5;
    min-height: 100vh;
}

.simple-header {
    text-align: center;
    margin-bottom: 32px;
}

.event-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD740, #FFC107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 64, 0.4);
}

.event-icon-large i {
    font-size: 2.5rem;
    color: #1a4a1b;
}

.simple-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a4a1b;
    margin-bottom: 12px;
}

.simple-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 600;
}

/* Key Info Cards */
.key-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.key-info-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.key-info-card i {
    width: 50px;
    height: 50px;
    background: #1a4a1b;
    color: #FFD740;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.key-info-card.highlight i {
    background: linear-gradient(135deg, #FFD740, #FFC107);
    color: #1a4a1b;
}

.key-info-card strong {
    display: block;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.key-info-card p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a4a1b;
    margin: 0;
}

.fee-text {
    font-size: 1.6rem !important;
    color: #28a745 !important;
}

/* Payment Box */
.payment-box {
    background: linear-gradient(135deg, #1a4a1b, #2d6a2e);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(26, 74, 27, 0.3);
}

.payment-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-step {
    font-size: 1.05rem;
    margin-bottom: 16px;
    opacity: 0.95;
}

.phone-big {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 215, 64, 0.3);
}

.phone-big i {
    font-size: 1.8rem;
    color: #FFD740;
}

.phone-big span {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD740;
    letter-spacing: 2px;
}

.payment-methods {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Simple Form */
.simple-form {
    background: white;
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.simple-form h2 {
    font-size: 1.5rem;
    color: #1a4a1b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-form h2 i {
    color: #FFD740;
}

.simple-form-group {
    margin-bottom: 20px;
}

.simple-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a4a1b;
    margin-bottom: 8px;
}

.simple-form-group label i {
    color: #FFD740;
    width: 20px;
}

.simple-form-group input,
.simple-form-group select,
.simple-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Tiro Bangla', serif;
    transition: all 0.3s ease;
    background: white;
}

.simple-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a4a1b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.simple-form-group input:focus,
.simple-form-group select:focus,
.simple-form-group textarea:focus {
    outline: none;
    border-color: #FFD740;
    box-shadow: 0 0 0 3px rgba(255, 215, 64, 0.15);
}

.simple-form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #6c757d;
}

.simple-form-group textarea {
    resize: vertical;
    min-height: 70px;
}

/* Big Submit Button */
.big-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Tiro Bangla', serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.big-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

.big-submit-btn i {
    font-size: 1.3rem;
}

/* Success Box */
.success-box {
    display: none;
    text-align: center;
    padding: 32px;
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    margin-top: 24px;
}

.success-box.show {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-box i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 16px;
}

.success-box h3 {
    font-size: 1.6rem;
    color: #155724;
    margin-bottom: 8px;
}

.success-box p {
    font-size: 1.1rem;
    color: #155724;
    margin: 0;
}

/* Help Box */
.help-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ffc107;
}

.help-box i {
    font-size: 2rem;
    color: #856404;
    margin-bottom: 8px;
}

.help-box h3 {
    font-size: 1.2rem;
    color: #856404;
    margin-bottom: 8px;
}

.help-box p {
    font-size: 1.1rem;
    color: #856404;
    margin: 0;
}

.help-box a {
    color: #1a4a1b;
    font-weight: 700;
    text-decoration: underline;
}

/* Declaration Checkbox */
.declaration-box {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    margin: 20px 0;
}

.declaration-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.declaration-box label {
    font-size: 1rem;
    color: #212529;
    line-height: 1.6;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .simple-register-page {
        padding: 120px 0 80px;
    }
    
    .simple-header h1 {
        font-size: 2.5rem;
    }
    
    .key-info-cards {
        flex-direction: row;
        gap: 20px;
    }
    
    .key-info-card {
        flex: 1;
    }
    
    .simple-form {
        padding: 36px;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    .simple-header h1 {
        font-size: 3rem;
    }
    
    .phone-big span {
        font-size: 2.5rem;
    }
}

.hero-cta {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5A45 100%);
    color: #FFD740;
    border: none;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(31, 61, 43, 0.3);
    font-family: 'Tiro Bangla', serif;
    border: 2px solid rgba(255, 215, 64, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 64, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03) rotate(0.2deg);
    box-shadow: 0 8px 25px rgba(31, 61, 43, 0.5), 0 0 0 4px rgba(255, 215, 64, 0.2);
    background: linear-gradient(135deg, #2E5A45 0%, #3D775C 100%);
    border-color: rgba(255, 215, 64, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 64, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary::nth-child(1) {
    animation-delay: 0.3s;
}

.btn-secondary {
    background: transparent;
    color: #1F3D2B;
    border: 2px solid rgba(31, 61, 43, 0.5);
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Tiro Bangla', serif;
    background-color: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.5s both;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 61, 43, 0.3), transparent);
    transition: 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.03) rotate(-0.2deg);
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(31, 61, 43, 0.7);
    box-shadow: 0 4px 20px rgba(31, 61, 43, 0.15), 0 0 0 4px rgba(31, 61, 43, 0.2);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(31, 61, 43, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary::nth-child(2) {
    animation-delay: 0.5s;
}

.hero-stats {
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    font-family: 'Tiro Bangla', serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Tiro Bangla', serif;
}

/* Improved content positioning */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.hero-content > * {
    transform: translateZ(0);
}

/* Animation classes */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(244, 180, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title-main {
        font-size: 4.8rem;
    }
    
    .hero-paragraph {
        font-size: 1.3rem;
    }
    
    .hero-image-container {
        height: 45vh;
        min-height: 400px;
    }
    
    .hero-glass-card {
        top: 20px;
        right: 20px;
        max-width: 250px;
        padding: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-title-main {
        font-size: 3.8rem;
    }
    
    .hero-paragraph {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image-container {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-glass-card {
        top: 15px;
        right: 15px;
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-paragraph {
        font-size: 1.1rem;
    }
    
    .hero-image-container {
        height: 35vh;
        min-height: 300px;
    }
    
    .hero-glass-card {
        top: 10px;
        right: 10px;
        padding: 10px;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

.hero-cta {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #1F3D2B;
    border: 2px solid rgba(31, 61, 43, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(31, 61, 43, 0.7);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: url('https://images.unsplash.com/photo-1542444648-2b123407658d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

/* Section Styling */


.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: var(--radius-sm);
}

.section-title p {
    font-size: 1.4rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 24px;
    color: white;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--gray);
    padding: 0 32px 32px;
    text-align: center;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--light-gray);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 32px;
    left: 32px;
    font-size: 6rem;
    color: rgba(26, 74, 27, 0.05);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.7;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 140px 0;
}

.cta-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.cta-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 48px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 48px;
    font-size: 1.2rem;
}

.cta-buttons .btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 74, 27, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: #adb5bd;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-paragraph {
        font-size: 1.2rem;
    }
    
    .hero-image {
        width: 45%;
        height: 70%;
    }
}

@media (max-width: 768px) {
    /* Compact header for mobile */
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 10px 0;
        position: relative;
    }
    
    .logo {
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .logo-icon img {
        height: 32px !important;
        width: 32px !important;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 15px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-top: 2px solid rgba(26, 74, 27, 0.1);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.show {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links .nav-link {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-links .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-links .nav-link-highlight {
        margin: 8px 0;
        background: linear-gradient(135deg, #1a4a1b, #4a9e4b);
        color: white;
        border-radius: 8px;
        border: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer !important;
        background: rgba(26, 74, 27, 0.05) !important;
        border-radius: 8px !important;
        padding: 10px !important;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(26, 74, 27, 0.1) !important;
    }
    
    .mobile-menu-btn i {
        font-size: 1.4rem;
        color: #1a4a1b;
    }
    
    /* Remove duplicate hero padding - handled in main 768px media query */
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-paragraph {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image {
        display: none;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-paragraph {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }

.pt-8 { padding-top: 2rem !important; }

.max-w-6xl { max-width: 72rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Honeycomb Pattern */
.honeycomb-bg {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 65' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='30,0 60,16.25 60,48.75 30,65 0,48.75 0,16.25' fill='%231a4a1b' fill-opacity='0.02'/%3E%3C/svg%3E");
}

/* Section divider */
.section-divider {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #FFD740, #FFC107, #FF9800);
    margin: 24px auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 215, 64, 0.3);
}

/* About Section Styles */
.about-content-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(31, 61, 43, 0.1);
}

.about-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(31, 61, 43, 0.2);
}

.about-title {
    color: #1F3D2B;
    font-weight: 700;
    font-family: 'Tiro Bangla', serif;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD740, #FFC107);
    border-radius: 2px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD740, #FFC107);
    border-radius: 50%;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.4rem;
    color: white;
}

.about-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 215, 64, 0.4);
}

.feature-subtitle {
    color: #1F3D2B;
    font-weight: 700;
    font-family: 'Tiro Bangla', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-text {
    color: rgba(31, 61, 43, 0.8);
    font-family: 'Tiro Bangla', serif;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-image {
    transition: all 0.5s ease;
    border-radius: 16px;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.7), rgba(31, 61, 43, 0.9));
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.about-image-container:hover .about-overlay {
    opacity: 1;
}

.overlay-content {
    max-width: 90%;
}

.overlay-title {
    color: #FFD740;
    font-weight: 700;
    font-family: 'Tiro Bangla', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-text {
    color: white;
    font-family: 'Tiro Bangla', serif;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* New About Section Styles for Perfect Design */
.about-perfect-design-section {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(31, 61, 43, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(31, 61, 43, 0.9);
    font-family: 'Tiro Bangla', serif;
}

.about-goals-list {
    list-style: none;
    padding: 0;
}

.goal-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(31, 61, 43, 0.05);
}

.goal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.goal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD740, #FFC107);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.goal-icon i {
    font-size: 1.4rem;
    color: white;
}

.goal-text {
    color: rgba(31, 61, 43, 0.85);
    font-family: 'Tiro Bangla', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustments for About section */
@media (max-width: 992px) {
    .about-perfect-design-section {
        padding: 32px 24px;
    }
    
    .about-content p.lead {
        font-size: 1.2rem;
    }
    
    .goal-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-perfect-design-section {
        padding: 24px 16px;
    }
    
    .about-content p.lead {
        font-size: 1.1rem;
    }
    
    .goal-icon {
        width: 48px;
        height: 48px;
    }
    
    .goal-icon i {
        font-size: 1.2rem;
    }
    
    .goal-text {
        font-size: 1.05rem;
    }
}

/* ========================================
   NEW SECTIONS: About, Programs, Events
   ======================================== */

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

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1F3D2B;
    line-height: 1.2;
    margin-bottom: 32px;
}

.section-text {
    font-size: 1.2rem;
    color: rgba(31, 61, 43, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* About Section */
.about-section {
    background: #fefcf6;
    padding: 100px 0;
}

.about-section .row {
    display: flex;
    flex-wrap: wrap;
}

.about-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.mv-card {
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.mv-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.mv-card p {
    font-size: 1.05rem;
    color: rgba(31, 61, 43, 0.7);
    line-height: 1.6;
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    border: 1px solid rgba(31, 61, 43, 0.1);
}

.badge-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(31, 61, 43, 0.7);
    line-height: 1.4;
}

/* Programs Section */
.programs-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.program-card:nth-child(1) { animation-delay: 0ms; }
.program-card:nth-child(2) { animation-delay: 100ms; }
.program-card:nth-child(3) { animation-delay: 200ms; }
.program-card:nth-child(4) { animation-delay: 300ms; }
.program-card:nth-child(5) { animation-delay: 400ms; }
.program-card:nth-child(6) { animation-delay: 500ms; }

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 74, 27, 0.3);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.program-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Event Section */
.event-section {
    position: relative;
    background: var(--primary-dark);
    padding: 120px 0;
    overflow: hidden;
}

.event-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/training.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 44, 16, 0.95) 0%, rgba(13, 44, 16, 0.85) 100%);
}

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

.event-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.event-section .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 20px;
}

.event-section .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 20px;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 64, 0.15);
    border: 1px solid rgba(255, 215, 64, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFD740;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.event-badge span:last-child {
    font-size: 0.9rem;
    color: #FFD740;
    font-weight: 600;
}

.event-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.event-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
}

.event-details {
    margin-bottom: 40px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: white;
}

.detail-icon {
    font-size: 1.3rem;
}

.btn-event {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FFD740, #FFC107);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 215, 64, 0.3);
}

.btn-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 64, 0.5);
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown-item {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD740;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 2.8rem;
    }
    
    .about-section .col-lg-6,
    .event-section .col-lg-7,
    .event-section .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .about-section .col-lg-6:last-child {
        margin-top: 40px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .event-title {
        font-size: 3.2rem;
    }
    
    .countdown-number {
        font-size: 2.8rem;
    }
    
    .event-section .col-lg-5 {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-title {
        font-size: 2.6rem;
    }
    
    .event-description {
        font-size: 1.1rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .about-badge {
        bottom: -15px;
        left: -15px;
        padding: 16px;
        max-width: 180px;
    }
    
    .badge-year {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .btn-event {
        padding: 14px 32px;
        font-size: 1rem;
    }
}