/* CSS Variables & Reset */
:root {
    --color-primary: #B76E2E;
    --color-primary-dark: #8B4E1F;
    --color-secondary: #D98C3B;
    --color-accent: #E6A15E;
    --color-background: #FDF8F2;
    --color-foreground: #2C1E12;
    --color-muted: #8B7356;
    --color-border: #E6D7C4;
    --gradient-hero: linear-gradient(135deg, rgba(44, 30, 18, 0.95) 0%, rgba(139, 78, 31, 0.85) 100%);
    --gradient-warm: linear-gradient(135deg, #FDF8F2 0%, #FEF3E9 100%);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.navbar-brand img{
height:70px;
}

.nav-link{
font-weight:500;
}


.navbar-nav .nav-item{
    margin-left: 15px;
    margin-right: 15px;
}


.dropdown-menu{
    padding:10px 0;
}

.dropdown-item{
    padding:8px 20px;
}


.navbar .nav-link{
    transition: all 0.3s ease;
}

.navbar .nav-link:hover{
    color:#B8331E;
}



@media (max-width: 991px) {

.navbar-nav .nav-item{
    border-bottom:1px solid #e5e5e5;
}

.navbar-nav .nav-item:last-child{
    border-bottom:none;
}

.navbar-nav .nav-link{
    padding:12px 15px;
}

}


/* Desktop hover dropdown */
@media (min-width: 992px) {

.navbar .dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
}

}


/* Dropdown animation */
@media (min-width: 992px) {

.navbar .dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all 0.3s ease;
    margin-top:0;
}

.navbar .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(44, 30, 18, 0.05);
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
/*    height: 64px;*/
/*    height: 90px;*/
    height: 70px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-logo span {
    color: var(--color-secondary);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    transition: color 0.2s;
}

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

.dropdown-trigger {
    composes: nav-link;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    width: 176px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(44, 30, 18, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--color-foreground);
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: var(--color-border);
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.mobile-menu-btn {
    display: block;
    padding: 8px;
    color: var(--color-foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
/*    top: 64px;*/
    top: 90px;
    left: 0;
    right: 0;
    background: var(--color-background);

/*    border-bottom: 1px solid var(--color-border);*/

    box-shadow: 0 4px 10px rgba(44, 30, 18, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-nav-items {
    padding: 8px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link,
.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-foreground);
    width: 100%;
    text-align: left;
}

.mobile-dropdown-trigger .dropdown-icon {
    transition: transform 0.2s;
}

.mobile-dropdown-menu {
    background: rgba(230, 215, 196, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.mobile-dropdown-menu.active {
    max-height: 120px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 40px;
    font-size: 0.875rem;
    color: var(--color-foreground);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 24px;
    text-align: center;
}



.hero-eyebrow {
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (min-width: 640px) {
    .hero-details {
        flex-direction: row;
        gap: 24px;
    }
}

.hero-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 896px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
/*    display: flex;*/
    align-items: center;
/*    gap: 12px;*/
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-item i{
    padding-right: 20px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}


.footer ol, ul {
padding-left: 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary {
    background: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(230, 161, 94, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot::after {
    content: '';
    width: 6px;
    height: 12px;
    border-radius: 999px;
    background: var(--color-accent);
}

/* About Section */
.about {
    background: var(--gradient-warm);
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .about {
        padding: 112px 0;
    }
}

.section-header {
/*    max-width: 768px;*/
    max-width: 1094px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-highlight {
    
/*    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);*/

    background: linear-gradient(135deg, hsl(8 72% 42%), hsl(38 85% 55%));


    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.625;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 80px;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
    box-shadow: 0 4px 6px rgba(44, 30, 18, 0.05);
}

.stat-card svg {
    color: var(--color-primary);
    margin: 0 auto 12px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.location-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .location-image {
        height: 384px;
    }
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 30, 18, 0.95), rgba(44, 30, 18, 0.4));
}

.location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
/*    max-width: 768px;*/
    max-width: 1003px;
}

.location-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-background);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .location-title {
        font-size: 2.25rem;
    }
}

.location-highlight {
    color: var(--color-accent);
}

.location-description {
    color: rgba(253, 248, 242, 0.85);
    font-size: 1rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .location-description {
        font-size: 1.125rem;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Add these styles to your existing styles.css */

/* Participants Section */
.participants {
    padding: 80px 0;
    background: white;
}

@media (min-width: 1024px) {
    .participants {
        padding: 112px 0;
    }
}

.participants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1024px;
    margin: 0 auto 60px;
}

@media (min-width: 768px) {
    .participants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

.participants-column {
    background: var(--color-background);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px rgba(44, 30, 18, 0.05);
}

.participants-column-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
}

.participants-list {
    list-style: none;
}

.participant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--color-foreground);
    border-bottom: 1px dashed var(--color-border);
}

.participant-item:last-child {
    border-bottom: none;
}

.participant-item i {
    color: var(--color-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.participants-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 16px;
    color: white;
}

.participants-cta p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-primary {
    background: white;
    color: var(--color-primary)!important;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--color-foreground);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--color-accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .footer-newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-btn {
    padding: 12px 24px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: var(--color-secondary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}






.inner-page-header{
margin-top:97px;
padding:60px 0;
position:relative;
overflow:hidden;

background:
linear-gradient(120deg, rgba(0,0,0,0.65), rgba(184,51,30,0.55)),
url('/assets/images/home/masala-expo-background-10.jpg');

background-size:cover;
background-position:center;
}

/* Animated gradient layer */
.inner-page-header::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:linear-gradient(
120deg,
rgba(0,0,0,0.55),
rgba(184,51,30,0.45),
rgba(0,0,0,0.55)
);

background-size:200% 200%;
animation:gradientMove 12s ease infinite;
z-index:1;
}

/* Keep content above overlay */
.inner-page-header .container{
position:relative;
z-index:2;
}

/* Animation */
@keyframes gradientMove{
0%{
background-position:0% 50%;
}
50%{
background-position:100% 50%;
}
100%{
background-position:0% 50%;
}
}


.page-title{
font-size:40px;
font-weight:700;
margin-bottom:10px;
color:#fff;
}

.page-title::after{
content:'';
display:block;
width:60px;
height:3px;
background:#B8331E;
margin-top:10px;
}

.page-breadcrumb{
font-size:14px;
color:#f1f1f1;
}

.page-breadcrumb a{
color:#ffffff;
text-decoration:none;
font-weight:500;
}

.page-breadcrumb span{
margin:0 5px;
}



.exhibitor-categories h5{
font-weight:600;
margin-bottom:15px;
}



.inner-ul-style{
    list-style-type: square;
    padding-left: 20px;
}

.inner-ul-style li{
    margin-bottom: 6px;
}



.inner-pages-forms-section{
background:#fff;
}

.inner-pages-forms-section .form-label{
font-weight:500;
margin-bottom:5px;
}
