:root {
    --primary-dark-green: #042015;
    --primary-light-green: #1B5E20;
    --accent-gold: #FBC02D;
    --accent-orange: #FF8F00;
    --text-light: #F1F8E9;
    --text-white: #FFFFFF;
    --background-light: #F4F9F6;
    --text-dark: #2C3E35;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(10, 58, 42, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tiro Bangla', serif !important;
}

html, body { width: 100%; max-width: 100vw; overflow-x: hidden; margin: 0; padding: 0; }
body {
    font-family: 'Tiro Bangla', serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 38px;
    /* In case image is dark, add a drop shadow or adjust filter if needed */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation */
.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navigation ul li a:hover {
    color: var(--accent-gold);
}

.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navigation ul li a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 54px;
    min-height: calc(100vh - 54px);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

.main-title {
    font-family: 'Tiro Bangla', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-title span {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #4a5c50;
    margin-bottom: 40px;
}

/* Glassmorphism Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .action-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn .icon {
    font-size: 1.3rem;
}

.primary-btn {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.8), rgba(10, 58, 42, 0.9));
    color: var(--text-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(27, 94, 32, 0.6);
    background: linear-gradient(135deg, rgba(35, 117, 41, 0.9), rgba(16, 77, 56, 1));
}

.secondary-btn {
    background: #ffffff;
    color: var(--primary-dark-green);
    border: 1px solid var(--primary-dark-green);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark-green);
    color: var(--text-white);
    box-shadow: 0 12px 20px rgba(10, 58, 42, 0.2);
}

/* Background Blobs for Animation */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(27, 94, 32, 0.4);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(251, 192, 45, 0.2);
    bottom: -50px;
    right: 10%;
    animation-delay: -5s;
}

/* Info Section */
.info-section {
    padding: 50px 5%;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
    z-index: 10;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.info-card h2 {
    color: var(--primary-dark-green);
    margin-bottom: 20px;
    font-family: 'Tiro Bangla', serif;
}

.info-card ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.info-card ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Form Styles for Subpages */
.hero-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 120px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-split-left {
    flex: 1;
    width: 100%;
}

.hero-split-right {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .hero-split {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    .hero-split-right {
        justify-content: flex-end;
    }
}

.result-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .result-form-container {
        padding: 40px;
        max-width: 480px;
    }
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(10, 58, 42, 0.2);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark-green);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(10, 58, 42, 0.1);
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark-green);
    color: var(--text-white);
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Universal Flip Clock Timer styles */
.timer-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    max-width: 500px;
}
.timer-flex div {
    min-width: 0;
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.timer-flex div span:first-child {
    display: block;
    background: #2a2c2e;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 49%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    border-radius: 10px;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    color: #e5e5e5;
    font-family: 'Tiro Bangla', serif;
    position: relative;
    padding: 15px 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), inset 0 2px 2px rgba(255,255,255,0.1);
}
.timer-flex div span:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    margin-top: -1px;
}
.timer-flex div span:last-child {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #CC8800; /* Gold/Orange */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Tiro Bangla', serif;
}

/* Why Choose Us Fixed 2x2 Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.why-choose-grid .info-card {
    display: flex;
    flex-direction: column;
}

@media(max-width: 600px) {
    .timer-flex { gap: 8px; margin: 20px auto; }
    .timer-flex div span:first-child { font-size: 2.8rem; padding: 12px 2px; }
    .timer-flex div span:last-child { font-size: 0.6rem; letter-spacing: 1px; margin-top: 8px; }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .why-choose-grid .info-card {
        padding: 15px !important;
    }
    .why-choose-grid h3 {
        font-size: 1.05rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    .why-choose-grid p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .menu-icon {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark-green);
        flex-direction: column;
        transition: right 0.4s ease;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .navigation.active {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 40px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
}

