:root {
    --primary-light-color: #71512F;
    --primary-color: #462901;
    --text-white: #ffffff;
    --box-opacity: 0.4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f5f5f5;
}

/* Top header with navigation - extended to cover hero section */
.top-header {
    background-color: var(--primary-light-color);
    --background-overlay:'';
    padding: 0 0 0 0;
    position: relative;
}

/* Container for navigation to align it to right */
.nav-container {
    display: flex;
    justify-content: flex-end;
}

/* White navigation bar - now only covers menu length */
.nav-bar {
    background-color: white;
    border-radius: 10px;
    padding: 6px 30px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Only take width of content */
    width: auto; /* Auto width based on menu items */
}

/* Navigation menu styling */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    gap:25px;
}

.nav-item {
    position: relative;
    margin-left: 25px;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-link:hover {
    color: #d4af37; /* Gold color */
}

/* Submenu styling */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    padding: 10px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.submenu-item:last-child {
    border-bottom: none;
}

.submenu-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.submenu-link:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Hero section with background color extended from header */
.hero-section {
    padding: 10px 0 50px;
    position: relative;
    background-color: var(--primary-light-color);
}

/* White opacity box covering ALL content */
.white-opacity-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Logo row styling */
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo-right img {
    max-height: 70px;
    width: auto;
}
.logo-left img {
    max-height: 70px;
    width: auto;
}


/* Content rows styling */
.content-row {
    color: var(--text-white);
    margin-bottom: 5px;
}

.row-1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Poppins", sans-serif;
}

.row-2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.row-3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #f0f0f0;
    font-family: "Poppins", sans-serif;
}

.row-4 img {
    max-height: 50px;
    margin-bottom: 25px;
    width: auto;
}

.row-5 {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn img {
    height: 100px;
    border-radius: 8px;
    width: auto;
}

/* Large image styling - Now inside the white box */
.large-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-image {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .row-1 {
        font-size: 2.2rem;
    }
    
    .row-2 {
        font-size: 1.8rem;
    }
    
    .row-3 {
        font-size: 1.3rem;
    }
    
    .large-image-container {
        margin-top: 30px;
    }
    
    .white-opacity-box {
        padding: 25px;
    }
    
    .nav-bar {
        padding: 12px 25px;
    }
    
    .nav-item {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 10px 20px;
        margin-top: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        margin: 0 15px 5px 15px;
    }
    
    .row-1 {
        font-size: 1.8rem;
    }
    
    .row-2 {
        font-size: 1.5rem;
    }
    
    .row-3 {
        font-size: 1.2rem;
    }
    
    .row-5 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-btn {
        margin-bottom: 10px;
    }
    
    .logo-left img, .logo-right img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .nav-bar {
        padding: 8px 15px;
        border-radius: 25px;
        margin-top: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 5px 0;
    }
    
    .white-opacity-box {
        padding: 20px;
        border-radius: 15px;
    }
    
    .row-1 {
        font-size: 1.6rem;
    }
    
    .row-2 {
        font-size: 1.3rem;
    }
    
    .row-3 {
        font-size: 1.1rem;
    }
    
    .logo-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .logo-left img, .logo-right img {
        max-height: 45px;
    }
    
    .row-4 img {
        max-height: 40px;
    }
    
    .download-btn img {
        height: 45px;
    }
    
    .large-image {
        max-height: 350px;
    }
    
    /* Adjust submenu for mobile */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 10px 0 0 15px;
        min-width: auto;
        display: none; /* Hidden by default on mobile */
    }
    
    .nav-item:hover .submenu {
        display: block; /* Show on hover/tap */
    }
    
    .submenu-item {
        padding: 8px 0;
        border-bottom: none;
    }
    
    .submenu-link {
        color: var(--primary-color);
        font-size: 13px;
    }
}

/* For very small screens */
@media (max-width: 380px) {
    .nav-bar {
        padding: 8px 12px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .row-1 {
        font-size: 1.4rem;
    }
    
    .row-2 {
        font-size: 1.1rem;
    }
    
    .row-3 {
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f5f0;
    position: relative;
}

.features-title h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-subtitle {
    font-family: "Poppins", sans-serif;
    color: #71512F;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Box */
.feature-box {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6d6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.feature-icon {
    margin-bottom: 25px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 20px;
}

.feature-image {
    max-width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-image {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-text {
    font-family: "Poppins", sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for features */
@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-title h2 {
        font-size: 2.2rem;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-image {
        max-width: 55px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-title h2 {
        font-size: 1.8rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .feature-image {
        max-width: 50px;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-title h2 {
        font-size: 1.6rem;
    }
    
    .features-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #f9f5f0;
}

.stats-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-subtitle {
    font-family: "Poppins", sans-serif;
    color: #71512F;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-box {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-svg {
    width: 60px;
    height: 60px;
    fill: #d4af37;
}

.stat-image {
    margin-bottom: 20px;
}

.stat-image img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.stat-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.stat-counter {
    margin-top: 15px;
}

.counter-number {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #d4af37;
    font-size: 2.5rem;
    margin: 0;
}

/* Industry Section */
.industry-section {
    padding: 80px 0;
    background-color: white;
}

.industry-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.industry-box {
    background-color: #f9f5f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0e6d6;
}

.industry-box:hover {
    background-color: white;
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.industry-box h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.industry-box p {
    font-family: "Poppins", sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.industry-stats {
}

.counter-box {
    background-color: #f9f5f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-box:hover {
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.counter-number {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 3rem;
    display: inline-block;
}

.counter-suffix {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 2rem;
    display: inline-block;
    margin-left: 5px;
}

.counter-label {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-size: 1rem;
    margin-top: 10px;
}

.industry-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f9f5f0;
}

.benefits-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-box {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6d6;
    display: flex;
    align-items: flex-start;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.benefit-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

.benefit-content h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-content p {
    font-family: "Poppins", sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Delivery Section */
.delivery-section {
    padding: 80px 0;
    background-color: white;
}

.delivery-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.delivery-content {
    padding-left: 50px;
}

.delivery-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.delivery-text {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f5f0;
}

.testimonials-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-family: "Poppins", sans-serif;
    color: #71512F;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-box {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0e6d6;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #f0e6d6;
    padding-top: 20px;
}

.author-name {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-designation {
    font-family: "Poppins", sans-serif;
    color: #71512F;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-color);
    padding: 80px 0 30px;
    color: white;
}

.footer-logo-img {
    max-height: 60px;
    margin-bottom: 25px;
}

.footer-about p {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #d4af37;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}

.contact-item span {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d4af37;
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-section,
    .industry-section,
    .benefits-section,
    .delivery-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .stats-title,
    .industry-title,
    .benefits-title,
    .testimonials-title {
        font-size: 2rem;
    }
    
    .delivery-title {
        font-size: 2rem;
    }
    
    .delivery-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-section,
    .industry-section,
    .benefits-section,
    .delivery-section,
    .testimonials-section {
        padding: 50px 0;
    }
    
    .stats-title,
    .industry-title,
    .benefits-title,
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .stats-subtitle,
    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .delivery-title {
        font-size: 1.8rem;
    }
    
    .delivery-text {
        font-size: 1rem;
    }
    
    .counter-number {
        font-size: 2.2rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
    
    .benefit-box {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stats-section,
    .industry-section,
    .benefits-section,
    .delivery-section,
    .testimonials-section {
        padding: 40px 0;
    }
    
    .stats-title,
    .industry-title,
    .benefits-title,
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .stats-subtitle,
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    
    .delivery-title {
        font-size: 1.6rem;
    }
    
    .delivery-text {
        font-size: 0.95rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-suffix {
        font-size: 1.3rem;
    }
    
    .stat-box,
    .industry-box,
    .benefit-box,
    .testimonial-box {
        padding: 20px;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
}

/* Todaygold custom - STARTS */
    .distributor{ font-size: 80px;}

    .content-row.row-6 {
        position: relative;
        margin-top: -80px; /* Adjust this value to control overlap */
        width: 100%;
    }

    .large-horizontal-image {
        width: 100%;
        max-width: 600px; /* Adjust based on your design */
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
    }

    /* Adjust overlap amount based on your button height */
    .row-5 {
        position: relative;
        z-index: 2;
    }
/* Todaygold custom - ENDS */

/* Mobile navigation - STARTS */
    .mobile-nav{
        display: none;
        background: transparent;   /* no background */
        padding: 0;
        width: auto;
        box-shadow: none;
        position: relative;
    }

    .mobile-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-title{
        font-weight: 600;
        color: var(--primary-color);
    }

    .mobile-hamburger{
        font-size: 26px;
        cursor: pointer;
        margin-left: auto;
        color: white !important;
    }
    .mobile-menu{
        list-style: none;
        padding: 10px 0 0 0;
        margin: 0;
        display: none;
    }

    .mobile-menu li{
        padding-left: 10px;
        margin-top: 10px;
        text-align: left;
    }

    .mobile-menu a{
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-menu.active{
        display: block;
    }

    .mobile-menu{
        list-style: none;
        padding: 15px 0;
        margin-top: 10px;
        display: none;

        background: white;
        width: 220px;
        position: absolute;
        right: 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    .mobile-has-sub.open .mobile-submenu{
        display: block;
    }

    /* SHOW / HIDE BASED ON SCREEN */

    @media (max-width:768px){
        .nav-bar{ display: none; }     /* hide desktop */
        .mobile-nav{ display: block; } /* show mobile */
        .nav-container {justify-content: end;}
    }
/* Mobile navigation - ENDS */

/* SEO pages CSS - STARTS */
/* STATE-SPECIFIC HERO SECTION */
.state-hero-section {
    background-color: #f9f5f0;
    padding: 60px 0;
}

.state-hero-title {
    color: #462901;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.state-hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.state-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.state-stat-item {
    flex: 1;
    min-width: 120px;
}

.state-stat-number {
    color: #d4af37;
    font-size: 2rem;
    margin: 0;
}

.state-stat-label {
    color: #666;
    margin: 5px 0 0 0;
}

.state-hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* STATE CULTURE & GOLD SECTION */
.state-culture-section {
    padding: 60px 0;
    background-color: white;
}

.state-culture-title {
    text-align: center;
    color: #462901;
    font-weight: 700;
    margin-bottom: 40px;
}

.culture-box {
    background-color: #f9f5f0;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.culture-box-title {
    color: #462901;
    font-weight: 600;
    margin-bottom: 20px;
}

.culture-box-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.culture-box-list {
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

.culture-highlight-box {
    background-color: #462901;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.culture-highlight-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.culture-highlight-text {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* STATE-SPECIFIC FOOTER SECTION */
.state-footer-section {
    background-color: #462901;
    color: white;
    padding: 60px 0;
}

.state-footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}

.state-footer-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.state-footer-subtitle {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
}

.state-footer-list {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    padding-left: 20px;
}

.state-footer-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
}

.state-footer-card-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.state-footer-card-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.state-footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.state-footer-btn {
    background-color: white;
    color: #462901;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.state-footer-btn:hover {
    background-color: #f9f5f0;
    transform: translateY(-2px);
    color: #462901;
}

.state-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.state-footer-copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .state-hero-title {
        font-size: 2rem;
    }
    
    .state-stats {
        gap: 20px;
    }
    
    .state-stat-item {
        min-width: 100px;
    }
    
    .state-stat-number {
        font-size: 1.8rem;
    }
    
    .state-footer-buttons {
        justify-content: center;
    }
    
    .state-footer-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .state-hero-section,
    .state-culture-section,
    .state-footer-section {
        padding: 40px 0;
    }
    
    .state-hero-title {
        font-size: 1.8rem;
    }
    
    .state-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .state-stat-item {
        text-align: center;
    }
}
/* SEO pages CSS - ENDS */

/* DISTRICT CONTENT SECTION */
.district-content-section {
    background-color: #f9f5f0;
}

.district-content-section h2 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.district-content-section p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.district-content-section p strong {
    color: #462901;
    font-weight: 600;
}

/* DISTRICT BENEFITS SECTION */
.district-benefits {
    background-color: white;
    padding: 60px 0;
    margin: 40px 0;
}

.district-benefits h3 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.district-benefits h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37;
}

.district-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.district-benefits li {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.district-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.state-district-footer-section {
    background-color: #f9f5f0;
    color: white;
    padding: 60px 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .district-content-section,
    .district-benefits {
        padding: 40px 0;
    }
    
    .district-content-section h2 {
        font-size: 1.8rem;
    }
    
    .district-benefits h3 {
        font-size: 1.6rem;
    }
    
    .district-content-section p,
    .district-benefits li {
        font-size: 1rem;
    }
    
    .district-benefits li {
        padding-left: 30px;
    }
    
    .district-benefits li::before {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .district-content-section,
    .district-benefits {
        padding: 30px 15px;
    }
    
    .district-content-section h2 {
        font-size: 1.6rem;
    }
    
    .district-benefits h3 {
        font-size: 1.4rem;
    }
    
    .district-content-section p,
    .district-benefits li {
        font-size: 0.95rem;
    }
    
    .district-benefits li {
        padding-left: 25px;
        margin-bottom: 12px;
    }
    
    .district-benefits li::before {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }
}