: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 */

/* Trust Section Styles */
.stat-description {
    margin-top: 10px;
}

.description-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.trust-badges {
    margin-top: 30px;
    padding: 20px 0;
}

.badge-custom {
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.badge-custom i {
    color: #d4af37;
    margin-right: 8px;
}

.badge-custom:hover {
    background-color: #d4af37;
    color: white;
    border-color: #d4af37;
}

.badge-custom:hover i {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .badge-custom {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .badge-custom.me-3 {
        margin-right: 0 !important;
    }
}

/* Benefits List Styles */
.industry-benefits {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0e6d2;
    height: 100%;
}

.benefits-heading {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0e6d2;
}

.benefits-heading:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    color: #d4af37;
}

.benefit-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-item span {
    line-height: 1.4;
}

.btn-benefits {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d4af37 0%, #b8942f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}

.btn-benefits:hover {
    background: linear-gradient(135deg, #b8942f 0%, #9e7e2a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-benefits i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-benefits:hover i {
    transform: translateX(5px);
}
/* Gold live price and buy sell gold - STARTS */
    /* Gold Tabs Container */
    .gold-tabs-container {
        background: white;
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    /* Tabs Navigation */
    .tabs-navigation {
        display: flex;
        gap: 8px;
        margin-bottom: 18px;
        background: #f8f9fa;
        padding: 6px;
        border-radius: 45px;
    }

    .tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 15px;
        border: none;
        background: transparent;
        color: #666;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        border-radius: 38px;
        transition: all 0.3s ease;
    }

    .tab-btn i {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .tab-btn.active {
        background: linear-gradient(135deg, #d4af37 0%, #b8942f 100%);
        color: white;
        box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
    }

    .tab-btn.active i {
        color: white;
    }

    .tab-btn:hover:not(.active) {
        background: #e9ecef;
        color: #d4af37;
    }

    /* Tab Content */
    .tabs-content {
        min-height: 285px;
    }

    .tab-pane {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Buy Tab Styles */
    .price-box {
        background: #faf3e0;
        padding: 15px;
        border-radius: 15px;
        margin-bottom: 15px;
        border: 1px solid #f0e6d2;
    }

    .price-info, .purity-info {
        display: flex;
        flex-direction: column;
    }

    .price-label, .purity-label {
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .price-value {
        font-size: 1.4rem;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
    }

    .price-value small {
        font-size: 0.85rem;
        font-weight: 400;
        color: #999;
    }

    .purity-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: #d4af37;
    }

    .calculator-box {
        background: #ffffff;
        padding: 18px;
        border-radius: 15px;
        border: 1px solid #e0e0e0;
    }

    .radio-group {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
    }

    .radio-label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 500;
        color: #666;
        transition: all 0.3s ease;
    }

    .radio-label.active {
        color: #d4af37;
    }

    .radio-custom {
        width: 16px;
        height: 16px;
        border: 2px solid #ddd;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        transition: all 0.3s ease;
    }

    .radio-label.active .radio-custom {
        border-color: #d4af37;
    }

    .radio-label.active .radio-custom::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: #d4af37;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .calculator-input-group {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        align-items: center;
    }

    .input-wrapper {
        flex: 1;
        position: relative;
    }

    .input-symbol {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        font-weight: 600;
        color: #d4af37;
    }

    .calculator-input {
        width: 100%;
        padding: 12px 12px 12px 38px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .calculator-input:focus {
        outline: none;
        border-color: #d4af37;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }

    .calculator-result {
        background: #f8f9fa;
        padding: 10px 15px;
        border-radius: 12px;
        min-width: 100px;
        text-align: center;
    }

    .result-label {
        display: block;
        font-size: 0.7rem;
        color: #666;
        margin-bottom: 4px;
    }

    .result-value {
        font-size: 1rem;
        font-weight: 700;
        color: #d4af37;
    }

    .buy-gold-btn {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, #d4af37 0%, #b8942f 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .buy-gold-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }

    .buy-gold-btn i {
        font-size: 1rem;
    }

    /* Sell & Jewellery Tab Common Styles */
    .sell-content, .jewellery-content {
        text-align: center;
        padding: 15px;
    }

    .sell-image, .jewellery-image {
        margin-bottom: 18px;
    }

    .tab-image {
        max-width: 135px;
        height: auto;
        filter: drop-shadow(0 8px 15px rgba(212, 175, 55, 0.2));
        transition: all 0.3s ease;
    }

    .tab-image:hover {
        transform: scale(1.05);
    }

    .sell-title, .jewellery-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
    }

    .sell-description, .jewellery-description {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .action-btn {
        padding: 12px 30px;
        border: none;
        border-radius: 38px;
        font-size: 0.95rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sell-now-btn {
        background: linear-gradient(135deg, #d4af37 0%, #b8942f 100%);
        color: white;
    }

    .signup-btn {
        background: #28a745;
        color: white;
    }

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .sell-now-btn:hover {
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }

    .signup-btn:hover {
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .gold-tabs-container {
            padding: 12px;
        }
        
        .tabs-navigation {
            flex-direction: column;
            border-radius: 15px;
        }
        
        .calculator-input-group {
            flex-direction: column;
        }
        
        .calculator-result {
            width: 100%;
        }
        
        .price-value {
            font-size: 1.2rem;
        }
        
        .purity-value {
            font-size: 1rem;
        }
    }
/* Gold live price and buy sell gold - ENDS */