@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8941F;
    --brown-dark: #614105;
    --brown-medium: #754C00;
    --yellow20: rgba(184, 148, 31, 0.20);
    --brown-light: #D2B48C;
    --cream: #FFF5E0;
    --cream-dark: #E6E6D3;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;


    --bg-color: var(--cream);
    --brown-color: #9C3300;
    --heading-color: var(--brown-dark);
    --body-text: var(--brown-medium);
    
    /* Typography */
    --font-primary: "Libre Caslon Text", serif;
    --font-secondary: "Inter", sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease-in-out;
    --transition-slow: all 0.6s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: normal;
    background-color: var(--cream);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Scroll Out Animation Styles */
[data-aos-mirror="true"] {
    transition: all 1s ease-in-out;
}

[data-aos-mirror="true"].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

[data-aos-mirror="true"]:not(.aos-animate) {
    opacity: 0;
}

/* Specific scroll-out effects */
[data-aos="fade-up"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: translateY(50px);
}

[data-aos="fade-down"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: translateY(-50px);
}

[data-aos="fade-left"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: translateX(50px);
}

[data-aos="fade-right"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: translateX(-50px);
}

[data-aos="zoom-in"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: scale(0.5);
}

[data-aos="zoom-out"][data-aos-mirror="true"]:not(.aos-animate) {
    transform: scale(1.5);
}

/* Button CSS */
.btn-golder-gradient {
    color: var(--white);
    background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    border-radius: 0.5rem;
    padding: 0.8rem 2rem;
    border: 0;
    font-weight: 700;
}
.btn-golder-gradient:hover {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:active {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:focus {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:disabled {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:focus-visible {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:focus-within {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
.btn-golder-gradient:focus-visible {
    background: linear-gradient(to right, var(--gold-dark), var(--primary-gold));
    color: var(--white);
}
a{
    text-decoration: none;
    color: var(--brown-dark);
}
a:hover{
    color: var(--primary-gold);
}

/* Navbar Section CSS */
.navbar {
    border-bottom: 1px solid hwb(0deg 0% 100% / 10%);
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background: #fff5e073 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--brown-dark);
    gap: 1rem;
    text-transform: uppercase;
}


/* Navbar link color changes when scrolling to sections */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
    color: var(--brown-dark);
    font-weight: 400;
}

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

/* Active state styling - this should override the default */
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
    font-weight: 600 !important;
}

.navbar-nav .show>.nav-link {
    color: var(--brown-dark);
}




/* Hero Section CSS */
.hero-section{
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}
.hero-title {
    font-size: 5.625rem;
    font-weight: 700;
    color: var(--brown-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-title span{
    font-size: 3.125rem;
    font-weight: 400;
    color: var(--brown-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-subtitle {
    font-size: 1.5rem ;
    font-weight: 400;
    color: var(--brown-medium);
}



/* About Section CSS */
.section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 5rem;
}
.section-header span {
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(41deg 100% 70% / 20%);
    color: #BB4D00;
    width: auto;
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.625rem 1.875rem;
    border-radius: 1.25rem;
    text-transform: uppercase;
}
 .section-header h2 {
     font-size: 3.313rem;
     color: var(--heading-color);
     word-wrap: break-word;
     overflow-wrap: break-word;
 }
 .section-header p {
    color: hsl(39deg 100% 23% / 80%);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.25rem;
}

 /* About Section Styles */
 .about-section .story-section > div:first-of-type,  .vision-section .story-section > div:first-of-type {
    padding-bottom: 2.25rem;
 }
 .about-section .story-section h3, .about-section .vision-section h3{
    color: var(--brown-dark);
 }
 .about-section .story-section p, .about-section .vision-section p{
    color: var(--body-text);
    font-size: 1.25rem;
 }
 .about-section .story-section .highlight-box-light{
    color: #35270B;
    background: #F4D8A0;
    border-left: 3px solid #A26C00;
    padding: 1rem;
}
.story-section{
    position: relative;
}
.story-section:before{
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg,rgba(231, 194, 120, 0) 0%, rgba(231, 194, 120, 1) 50%, rgba(231, 194, 120, 0) 100%);
    top: 0;
    right: -4rem;
}
.g-8, .gy-8 {
    --bs-gutter-x: 8rem;
}

@media (max-width: 768px) {
    .g-8, .gy-8 {
        --bs-gutter-x: 2rem;
    }
}
.about-section .vision-section .highlight-box-dark{
    background: var(--brown-color);
    border-left: 3px solid #FFAA00;
    padding: 1rem;
}
.about-section .vision-section .highlight-box-dark span:first-child{
    color: #FED485;
    font-size: 1.25rem;
    font-weight: 600;
}
.about-section .vision-section .highlight-box-dark span:last-child{
    color: #FFDE9D;
    display: block;
    padding-top: 0.5rem;
    font-weight: 300;
    font-size: 1.25rem;
}


 .about-section {
     background-color: var(--cream);
     padding: 100px 0;
 }

 .story-section, .vision-section {
     padding: 20px 0;
 }

 .learn-more-link {
     transition: var(--transition-smooth);
     display: inline-block;
     color: #614105;
 }

 .learn-more-link:hover {
     color: #4b3204 !important;
     transform: translateX(5px);
 }
 .learn-more-link i {
    color: #614105;
 }

 .highlight-box-light {
     transition: var(--transition-smooth);
 }
 .highlight-box-light {
    background: hsl(0deg 0% 100% / 50%);
    border-left: 3px solid #A26C00;
    padding: 1rem;
    font-size: 1.25rem;
    font-style: italic;
    color: #35270B;
}
.app-mockup h3 {
    color: #614105;
}
 .highlight-box-light:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .highlight-box-dark {
     transition: var(--transition-smooth);
 }

 .highlight-box-dark:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 .icon-box {
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: var(--yellow20);
}
 /* Lucide icon styles */
 .icon-box  .lucide-icon {
     width: 24px;
     height: 24px;
     color: var(--brown-color);
     stroke-width: 2.4px;
     transition: var(--transition-smooth);
 }
 
 
 .icon-box  .lucide-icon:hover {
     transform: scale(1.1);
     color: var(--brown-color);
 }

/* Mobile responsiveness for hero section */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title span {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title span {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Mobile responsiveness for about section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .story-section, .vision-section {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .highlight-box-light, .highlight-box-dark {
        padding: 15px;
    }
    
    .story-section:before {
        display: none;
    }
}


 .app-mockup{
    position: relative;
 }
.app-mockup img {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
    position: relative;
    z-index: 9;
}
.app-mockup::after {
    position: absolute;
    content: '';
    width: 66px;
    height: 66px;
    background: var(--yellow20);
    border-radius: -0.5rem;
    bottom: -23px;
    right: -20px;
    rotate: 45deg;
    z-index: 1;
}
 .app-mockup::before {
     position: absolute;
     content: '';
     width: 66px;
     height: 66px;
     background: none;
     border-radius: 50%;
     top: -23px;
     left: -24px;
     rotate: 45deg;
     z-index: 1;
     border: 1px solid var(--yellow20);
 }

 /* Three Pillars Section Styles */
 .section-header-sm h2 {
    font-size: 2.25rem;
    color: #614105;
    text-align: center;
    padding-bottom: .5rem;
}
.section-header-sm p {
    color: hsl(39deg 100% 23% / 80%);
    font-size: 1.25rem;
}
.section-header-sm {
    margin-bottom: 3rem;
}
 .three-pillars-section {
     background-color: var(--cream);
     padding: 100px 0;
 }
 .pillar-number {
    font-size: 5.25rem;
    color: #7B5206;
    opacity: .06;
    position: absolute;
    top: -18px;
    right: 0;

}
 .pillar-card {
    background: hsl(0deg 0% 100% / 60%);
    border-radius: 15px;
    padding: 2rem;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
    border: 1px solid hsl(48deg 98% 76% / 20%);
}

 .pillar-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }


 .pillar-card > * {
     position: relative;
     z-index: 2;
 }

 .pillar-card-header {
     margin-bottom: 1rem;
     position: relative;
 }

 .pillar-icon-box {
     width: 4rem;
     height: 4rem;
     background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition-smooth);
 }

 .pillar-card:hover .pillar-icon-box {
     transform: scale(1.1);
     background: linear-gradient(360deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
 }

 .pillar-icon-box .lucide-icon {
     width: 28px;
     height: 28px;
     color: var(--white);
     stroke-width: 2.5px;
 }

 .pillar-card:hover .pillar-icon-box .lucide-icon {
     color: var(--white);
 }

 .pillar-title {
     font-size: 1.25rem;
     color: #7B5206;
     margin-bottom: 0;
 }

 .pillar-description {
     color: #BA7900;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .pillar-features {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .pillar-features li {
     color: #BA7900;
     font-size: 1rem;
     line-height: 1.5;
     margin-bottom: 0.75rem;
     padding-left: 1.5rem;
     position: relative;
 }

 .pillar-features li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0.5rem;
     width: 6px;
     height: 6px;
     background: #FEA500;
     border-radius: 50%;
 }

 /* Mobile responsiveness for three pillars */
 @media (max-width: 768px) {
     .three-pillars-section {
         padding: 60px 0;
     }
     
     .pillar-card {
         padding: 1.5rem;
         margin-bottom: 2rem;
     }
     
     .pillar-icon-box {
         width: 3.5rem;
         height: 3.5rem;
     }
     
     .pillar-icon-box .lucide-icon {
         width: 24px;
         height: 24px;
     }
     
     .pillar-title {
         font-size: 1.25rem;
     }
     
     .pillar-description {
         font-size: 1rem;
     }
 }

 /* New Model Section Styles */
 .new-model-section {
     background-color: var(--cream);
     padding: 100px 0;
     position: relative;
    overflow: hidden;
 }
 .current-productions-section{
    padding-bottom: 80px;
 }
 .latest-updates-section{
    padding: 100px 0;
 }
 .gold-gradient-border {
    position: relative;
 }
 .gold-gradient-border:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 6px;
    bottom: 0;
    background: linear-gradient(266deg,rgba(255, 177, 21, 0) 0%, rgba(255, 177, 21, 1) 50%, rgba(255, 177, 21, 0) 100%);
    opacity: .4;
 }
 .gold-icon {
     width: 4rem;
     height: 4rem;
     background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
 }

 .gold-icon .lucide-icon {
     width: 32px;
     height: 32px;
     color: var(--white);
     stroke-width: 2.5px;
 }


 .new-model-area {
    background: hsl(0deg 0% 100% / 50%);
    border: 1px solid hsl(48deg 98% 76% / 20%);
    border-radius: 1.25rem;
    padding: 3rem;
    position: relative;
    z-index: 1;
}
.new-model-area:before {
    position: absolute;
    content: '';
    width: 59.878rem;
    height: 8.781rem;
    background: linear-gradient(360deg, #FFCF68 0%, #FFCF68 100%);
    opacity: .5;
    filter: blur(45px);
    border-radius: 50%;
    bottom: -9.625rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 768px) {
    .new-model-area:before {
        width: 30rem;
        height: 4rem;
        bottom: -2rem;
    }
}
 .new-model-subtitle {
     font-size: 1.5rem;
     color: var(--brown-medium);
     font-weight: 400;
     margin-bottom: 0;
 }

 .model-box {
     border-radius: 20px;
     padding: 1.5rem;
     height: 100%;
     transition: var(--transition-smooth);
     border: 1px solid rgba(184, 148, 31, 0.1);
 }

 .model-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .model-box-light {
     background-color: hsl(39deg 97% 89% / 50%);
     border: 1px solid rgb(255 183 48 / 50%);
 }

 .model-box-dark {
     background: linear-gradient(135deg, #9F2D00 0%, #9F2D00 100%);
 }

 .model-box-bottom {
     background-color: var(--cream);
     border: 1px solid rgba(184, 148, 31, 0.2);
     text-align: center;
 }

 .model-box-title {
    font-size: 1.5rem;
    color: #7B5206;
    margin-bottom: 2rem;
    text-align: center;
 }

 .model-box-title-white {
     color:#FED485;
 }

 .funding-breakdown {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .funding-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px;
    background: hsl(0deg 0% 100% / 50%);
    border-radius: 10px;
 }

 .funding-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
 }

 .funding-badge-green {
     background: #05e17333;
     color: #008236;
 }

 .funding-badge-blue {
    background: hsl(212deg 100% 66% / 20%);
    color: #1447E6;
}

 .funding-details {
     flex: 1;
 }

 .funding-title {
    font-size: 1rem;
    color: #976200;
    margin-bottom: 0.3rem;
 }

 .funding-description {
    font-size: 14px;
    color: #BB7A00;
    margin-bottom: 0;
 }



 .calendar-icon .lucide-icon {
     width: 2rem;
     height: 2rem;
     color: #FED485;
     stroke-width: 2.5px;
 }

 .model-box-description {
    color: #FEEAC6;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
 }

 .model-box-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .model-box-list li {
    color: #FEEAC6;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
 }
 .model-box-list li:last-child {
    margin-bottom: 0;
 }

 .model-box-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: #FFB730;
    border-radius: 50%;
 }

 .model-box-statement {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin: 0;
 }

 /* Mobile responsiveness for new model section */
 @media (max-width: 768px) {
     .new-model-section {
         padding: 60px 0;
     }
     
     .new-model-title {
         font-size: 2.5rem;
     }
     
     .new-model-subtitle {
         font-size: 1.25rem;
     }
     
     .model-box {
         padding: 1rem;
         margin-bottom: 2rem;
     }
     
     .model-box-title {
         font-size: 2rem;
     }
     
     .funding-item {
         flex-direction: column;
         text-align: center;
         gap: 1rem;
     }
     
     .funding-badge {
         width: 2.5rem;
         height: 2.5rem;
         font-size: 1rem;
     }
     
     .model-box-statement {
         font-size: 1.5rem;
     }
 }

 .productions-title {
    color: #7B5206;
}
.productions-co-written {
    font-style: italic;
    color: #BA7900;
}
.productions-date {
    font-size: 14px;
    color: #7B5206;
}
.productions-tag {
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 22px;
}

.productions-tag.green{
    background-color: #05DF72;
}
.productions-tag.orange{
    background-color: #E6A830;
}

.btn-white {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid hwb(25deg 0% 27% / 50%);
    border-radius: 6px;
    display: flex;
    gap: 10px;
    color: #BB4D00;
}


.news-cards {
    overflow: hidden;
    border: 1px solid hsl(48deg 98% 76% / 50%);
    border-radius: 1rem;
    display: block;
}

.card-header-main{
    background: hsl(0deg 0% 100% / 60%);
}
.card-header-main, .news-card-footer{
    padding: 2rem;
}

.news-card-footer{
    background-color: hsl(48deg 100% 96% / 80%);
    border-top: 1px solid hsl(48deg 98% 76% / 50%);
    font-size: 14px;
    color: #973C00;
}

.news-card-header .company-update {
    font-size: 12px;
    background: #FEF3C6;
    padding: 5px 8px;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    border-radius: 6px;
    color: #973C00;
}
.post-date{
    color: #E17100;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.post-date svg{
    color: #E17100;
    width: 16px;
    height: 16px;
    
}
.featured-tag{
    background: linear-gradient(45deg, #FE9A00 0%, #FF6900 100%);
    color: #fff;
    font-family: "Inter", sans-serif;
    padding: 3px 8px;
    border-radius: 6px;
}
.news-card-description {
    color: #614105;
}

.news-card-tags {
    font-size: 12px;
    border: 1px solid #FFD230;
    padding: 5px 8px;
    color: #BB4D00;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
}
.news-card-title {
    color: #614105;
}

.news-card-header .icon-box, .right-contact-card .icon-box {
    background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    color: #fff !important;
}
.news-card-header .icon-box .lucide-icon, .right-contact-card .icon-box .lucide-icon {
    color: #fff !important;
}


/* File Upload Styles */
.file-upload-container {
    margin-top: 0.5rem;
}

.file-upload-area {
    border: 2px dashed var(--primary-gold);
    border-radius: 12px;
    background-color: hwb(0deg 100% 0% / 40%);
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.file-upload-area:hover {
    border-color: var(--gold-dark);
    background-color: #FFF8E7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.file-upload-area.dragover {
    border-color: var(--gold-dark);
    background-color: #FFF8E7;
    transform: scale(1.02);
}


.upload-icon .lucide-icon {
    width: 3rem;
    height: 3rem;
    color: #E17100;
    stroke-width: 2px;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-main-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brown-color);
    margin: 0;
}

.upload-sub-text {
    font-size: 0.875rem;
    color: var(--brown-color);
    margin: 0;
    opacity: 0.8;
}

.choose-files-btn {
    background-color: var(--cream);
    border: 1px solid var(--brown-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: var(--brown-color);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.choose-files-btn:hover {
    background-color: var(--brown-color);
    color: var(--cream);
    transform: translateY(-1px);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin-top: 1rem;
    display: none;
}

.file-list.show {
    display: block;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #FFF8E7;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.file-item:hover {
    background-color: #FFF0D6;
    transform: translateX(2px);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.file-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-icon .lucide-icon {
    width: 1rem;
    height: 1rem;
    color: var(--white);
    stroke-width: 2px;
}

.file-details {
    flex: 1;
}

.file-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brown-color);
    margin: 0;
    font-family: var(--font-secondary);
}

.file-size {
    font-size: 0.75rem;
    color: var(--brown-color);
    opacity: 0.7;
    margin: 0;
    font-family: var(--font-secondary);
}

.remove-file-btn {
    background: none;
    border: none;
    color: var(--brown-color);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file-btn:hover {
    background-color: #FFE6E6;
    color: #D32F2F;
}

.remove-file-btn .lucide-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2px;
}

/* Mobile responsiveness for file upload */
@media (max-width: 768px) {
    .file-upload-area {
        padding: 2rem 1rem;
        min-height: 180px;
    }
    
    
    .upload-icon .lucide-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .upload-main-text {
        font-size: 1rem;
    }
    
    .upload-sub-text {
        font-size: 0.8rem;
    }
    
    .choose-files-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: hsl(0deg 0% 100% / 80%);
    background-clip: padding-box;
    border: 1px solid #FEE685;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-label {
    margin-bottom: .5rem;
    font-size: 14px;
    color: #7B3306;
    font-weight: 600;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #dfc96e;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(230 168 48 / 15%);
}
.contact-card-title {
    font-size: 1.875rem;
    color: #614105;
}
.right-contact-card p {
    color: #614105;
}

.right-contact-card-1 {
    padding: 32px;
    border: 2px solid #FED485;
    border-radius: 1rem;
    background: linear-gradient(135deg, #9F2D00 0%, #9F2D00 100%);
}
.right-contact-card-1 .icon-box {
    width: 4rem;
    height: 4rem;
    background: hsl(44deg 100% 50% / 20%);
}
.right-contact-card-1 .icon-box .lucide-icon {
    width: 2rem;
    height: 2rem;
    color: #FEE685;
    stroke-width: 2px;
}
.personal-note-title {
    font-size: 2rem;
    color: #fff;
}
.personal-note-description {
    color: #FEE685;
}

.quote-text {
    font-size: 22px;
    color: #FEF3C6;
    font-style: italic;
}

.quote-box {
    padding: 1.25rem;
    background: hsl(44deg 100% 50% / 20%);
    border-left: 4px solid #FFD230;
    border-radius: 10px;
}
.quote-author {
    color: #FEF3C6;
    font-family: var(--font-secondary);
    font-style: italic;
}
.pb-32{
    padding-bottom: 2rem;
}
.mb-32{
    margin-bottom: 2rem;
}

.contact-info-card {
    padding: 2rem;
    background: hsl(0deg 0% 100% / 60%);
    border: 1px solid hsl(48deg 98% 76% / 50%);
    border-radius: 16px;
}
.contact-info-card h2{
    color: #614105;
}
.contact-info-icon-box {
    background: hwb(44deg 0% 0% / 20%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.contact-info-icon-box .lucide-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #BB4D00;
    stroke-width: 2px;
}
.contact-info-text-title {
    color: #E17100;
    font-size: 14px;
}
.contact-info-text-description {
    color: #7B3306;
}
.main-contact-card{
    background-color: hsl(0, 0%, 50%);
    border: 1px solid hsl(48deg 98% 76% / 50%);
}
.main-contact-card {
    background-color: hsl(0deg 0% 100% / 60%);
    border: 1px solid hsl(48deg 98% 76% / 50%);
    padding: 2rem;
    border-radius: 16px;
}

/* Footer Section Styles */
.footer-section {
    background: #7E2A0C;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-brand-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.footer-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}


.footer-description {
    color: #FEE685;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: hsl(44deg 100% 50% / 20%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.social-icon:hover {
    background: #FFD230;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon .lucide-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #FFD230;
    stroke-width: 2px;
    transition: var(--transition-smooth);
}

.social-icon:hover .lucide-icon {
    color: var(--brown-dark);
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #F4E4BC;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: var(--font-secondary);
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-connect-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.footer-decorative-circle {
    width: 60px;
    height: 60px;
    border: 2px solid hsl(47deg 100% 59% / 20%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -140px;
    opacity: 0.6;
}
.our-mission-card .icon-box {
    width: 5rem;
    height: 5rem;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: linear-gradient(360deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
}
.our-mission-card .icon-box .lucide-icon {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke-width: 2px;
}
.our-mission-card h4 {
    color: #8b4513;
}
.our-mission-card p {
    color: #8b4513;
}
.our-mission-card {
    box-shadow: 0 11px 16px -5px #00000012, 0 8px 10px -6px #00000008;
    /* background-image: linear-gradient(to bottom right, #FFF8DC,  white,  #fff); */
    border-radius: 15px;
    background: hsl(0deg 0% 100% / 50%);
}

/* Our Revolutionary Approach Section Styles */
.our-revolutionary-approach-section {
    background-color: var(--cream);
    padding: 100px 0;
}

.approach-card {
    box-shadow: 0 11px 16px -5px #00000012, 0 8px 10px -6px #00000008;

    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    background: hsl(0deg 0% 100% / 50%);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 15px -6px rgba(0, 0, 0, 0.1);
}

.approach-card h3 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.approach-card .icon-box {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    color: #fff;
}

.approach-card .icon-box .lucide-icon {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke-width: 2px;
}

.approach-list {
    margin-top: 1.5rem;
}

.approach-list li {
    color: var(--body-text);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.approach-list li:hover {
    color: var(--heading-color);
    transform: translateX(5px);
}

.approach-list .lucide-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Mobile responsiveness for Our Revolutionary Approach section */
@media (max-width: 768px) {
    .our-revolutionary-approach-section {
        padding: 60px 0;
    }
    
    .approach-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .approach-card h3 {
        font-size: 1.75rem;
    }
    
    .approach-card .icon-box {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .approach-card .icon-box .lucide-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .approach-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .our-revolutionary-approach-section {
        padding: 40px 0;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
    
    .approach-card h3 {
        font-size: 1.5rem;
    }
    
    .approach-list li {
        font-size: 0.95rem;
    }
}

/* Vision for the Future Section Styles */
.vision-for-the-future-section {
    padding: 100px 0;
}

.vision-description {
    font-size: 1.25rem;
    color: var(--body-text);
    line-height: 1.7;
    font-weight: 400;
}
.vision-pillar-card {
    background: transparent;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid #d1b683;
}

.vision-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #FFF5E0 0%, #F0E68C 100%);
}

.pillar-icon-box {
    width: 5rem;
    height: 5rem;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.vision-pillar-card:hover .pillar-icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.pillar-icon-box .lucide-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    stroke-width: 2px;
}

.pillar-title {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pillar-description {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile responsiveness for Vision for the Future section */
@media (max-width: 768px) {
    .vision-for-the-future-section {
        padding: 60px 0;
    }
    
    .vision-description {
        font-size: 1.125rem;
    }
    
    .vision-pillar-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pillar-icon-box {
        width: 4rem;
        height: 4rem;
    }
    
    .pillar-icon-box .lucide-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .pillar-title {
        font-size: 1.25rem;
    }
    
    .pillar-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .vision-for-the-future-section {
        padding: 40px 0;
    }
    
    .vision-description {
        font-size: 1rem;
    }
    
    .vision-pillar-card {
        padding: 1.5rem 1rem;
    }
    
    .pillar-icon-box {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .pillar-icon-box .lucide-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .pillar-title {
        font-size: 1.125rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
}

/* What Makes Us Different Section Styles */
.what-makes-us-different-section {
    padding: 100px 0;
}

.section-separator {
    margin-top: 1rem;
}

.separator-line {
    width: 40px;
    height: 2px;
    background-color: var(--brown-light);
}

.separator-icon {
    width: 20px;
    height: 20px;
    color: var(--brown-light);
    stroke-width: 2px;
}

.difference-card {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 50%, #B8860B 100%);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.difference-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card-icon-section {
    text-align: center;
}

.shield-icon-wrapper {
    position: relative;
    display: inline-block;
}

.shield-icon {
    width: 4rem;
    height: 4rem;
    color: #FFF8DC;
    stroke-width: 2px;
}

.sparkle-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1.5rem;
    height: 1.5rem;
    color: #FFF8DC;
    stroke-width: 2px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1) rotate(180deg);
    }
}

.card-text-content {
    text-align: center;
    margin-bottom: 2rem;
}

.difference-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #FFF8DC;
    margin-bottom: 0;
    font-weight: 400;
}

.difference-text strong {
    font-weight: 700;
    color: #FFFFFF;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 248, 220, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.pagination-dots .dot.active {
    background-color: #FFF8DC;
    transform: scale(1.2);
}

.pagination-dots .dot:hover {
    background-color: rgba(255, 248, 220, 0.8);
}

/* Mobile responsiveness for What Makes Us Different section */
@media (max-width: 768px) {
    .what-makes-us-different-section {
        padding: 60px 0;
    }
    
    .difference-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .shield-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .sparkle-icon {
        width: 1.25rem;
        height: 1.25rem;
        top: -6px;
        right: -6px;
    }
    
    .difference-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .what-makes-us-different-section {
        padding: 40px 0;
    }
    
    .difference-card {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .shield-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .sparkle-icon {
        width: 1rem;
        height: 1rem;
        top: -4px;
        right: -4px;
    }
    
    .difference-text {
        font-size: 1rem;
    }
    
    .separator-line {
        width: 30px;
    }
    
    .separator-icon {
        width: 16px;
        height: 16px;
    }
}

/* Why This Matters Section Styles */
.why-this-matters-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-this-matters-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 20px;
    height: 20px;
    background: rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.why-this-matters-section::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 8%;
    width: 15px;
    height: 15px;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.matters-card {
    background:hsl(0deg 0% 100% / 50%);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.matters-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -5px rgba(0, 0, 0, 0.15), 0 10px 20px -4px rgba(0, 0, 0, 0.1);
}

.card-content {
    text-align: center;
}

.card-icon-section {
    margin-bottom: 2rem;
}

.globe-icon-wrapper {
    position: relative;
    display: inline-block;
}

.globe-icon {
    width: 4rem;
    height: 4rem;
    color: var(--brown-light);
    stroke-width: 2px;
}

.globe-sparkle-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brown-light);
    stroke-width: 2px;
    animation: sparkle 2s ease-in-out infinite;
}

.card-text-content {
    margin-bottom: 2.5rem;
}

.matters-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 0;
    font-weight: 400;
}

.matters-text strong {
    font-weight: 700;
    color: var(--heading-color);
}

.cta-section {
    margin-top: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #FF8C00 0%, #D2691E 100%);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-block;
    min-width: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
}

.cta-line-1,
.cta-line-2 {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.cta-line-1 {
    margin-bottom: 0.5rem;
}

.cta-line-2 {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mobile responsiveness for Why This Matters section */
@media (max-width: 768px) {
    .why-this-matters-section {
        padding: 60px 0;
    }
    
    .matters-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .globe-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .globe-sparkle-icon {
        width: 1.25rem;
        height: 1.25rem;
        top: -6px;
        right: -6px;
    }
    
    .matters-text {
        font-size: 1.125rem;
    }
    
    .cta-button {
        min-width: 300px;
        padding: 1.25rem 1.5rem;
    }
    
    .cta-line-1,
    .cta-line-2 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .why-this-matters-section {
        padding: 40px 0;
    }
    
    .matters-card {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .globe-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .globe-sparkle-icon {
        width: 1rem;
        height: 1rem;
        top: -4px;
        right: -4px;
    }
    
    .matters-text {
        font-size: 1rem;
    }
    
    .cta-button {
        min-width: 250px;
        padding: 1rem 1.25rem;
    }
    
    .cta-line-1 {
        font-size: 0.95rem;
    }
    
    .cta-line-2 {
        font-size: 0.9rem;
    }
    
    .separator-line {
        width: 30px;
    }
    
    .separator-icon {
        width: 16px;
        height: 16px;
    }
}

/* Our Vision is Simple Section Styles */
.our-vision-simple-section {
    padding: 100px 0;
    position: relative;
}

.vision-simple-card {
    background: #CD853F;
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid #D2B48C;
}

.vision-simple-card::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border: 2px solid #D2B48C;
    border-radius: 50%;
    z-index: 1;
}

.vision-simple-card::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #D2B48C;
    transform: rotate(45deg);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon-section {
    margin-bottom: 2rem;
}

.film-icon-wrapper {
    position: relative;
    display: inline-block;
}

.film-icon {
    width: 4rem;
    height: 4rem;
    color: #FFFFFF;
    stroke-width: 2px;
}

.film-heart-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1.5rem;
    height: 1.5rem;
    color: #FFFFFF;
    stroke-width: 2px;
    animation: sparkle 2s ease-in-out infinite;
}

.vision-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.vision-separator {
    margin-bottom: 2rem;
}

.separator-line {
    width: 40px;
    height: 2px;
    background-color: #FFFFFF;
}

.separator-star {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    stroke-width: 2px;
}

.vision-text-content {
    margin-bottom: 2rem;
}

.vision-text {
    color: #FFFFFF;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--font-secondary);
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.pagination-dots .dot.active {
    background-color: #FFFFFF;
    transform: scale(1.2);
}

.pagination-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness for Our Vision is Simple section */
@media (max-width: 768px) {
    .our-vision-simple-section {
        padding: 60px 0;
    }
    
    .vision-simple-card {
        padding: 3rem 2rem;
        border-radius: 1.5rem;
    }
    
    .vision-simple-card::before {
        top: 20px;
        left: 20px;
        width: 30px;
        height: 30px;
    }
    
    .vision-simple-card::after {
        bottom: 20px;
        right: 20px;
        width: 25px;
        height: 25px;
    }
    
    .film-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .film-heart-icon {
        width: 1.25rem;
        height: 1.25rem;
        top: -6px;
        right: -6px;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .vision-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .our-vision-simple-section {
        padding: 40px 0;
    }
    
    .vision-simple-card {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }
    
    .vision-simple-card::before {
        top: 15px;
        left: 15px;
        width: 25px;
        height: 25px;
    }
    
    .vision-simple-card::after {
        bottom: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
    }
    
    .film-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .film-heart-icon {
        width: 1rem;
        height: 1rem;
        top: -4px;
        right: -4px;
    }
    
    .vision-title {
        font-size: 1.75rem;
    }
    
    .vision-text {
        font-size: 0.95rem;
    }
    
    .separator-line {
        width: 30px;
    }
    
    .separator-star {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1200px) {
    .footer-decorative-circle {
        right: -50px;
    }
}

.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-text {
    color: #F4E4BC;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: rgba(244, 228, 188, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    color: var(--brown-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--primary-gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    margin-top: 1rem;
    position: relative;
}

.footer-separator {
    height: 1px;
    background: hwb(44deg 0% 0% / 20%);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.footer-copyright p {
    color: #FEE685;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: #FEE685;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-link:hover {
    color: var(--primary-gold);
}

.footer-bottom-diamond {
    position: absolute;
    bottom: 0;
    left: -140px;
    width: 60px;
    height: 60px;
    border: 2px solid hsl(46deg 65% 52% / 20%);
    transform: rotate(45deg);
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .footer-bottom-diamond {
        left: -50px;
    }
}

.contact-us-section {
    padding: 100px 0;
}
/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 0;
    }
    
    .footer-brand-title {
        font-size: 2rem;
    }
    
    .footer-section-title {
        font-size: 1.25rem;
    }
    
    .footer-social-icons {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal-links {
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-decorative-circle {
        display: none;
    }
    
    .footer-bottom-diamond {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0 0;
    }
    
    .footer-brand-title {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .social-icon .lucide-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Film Projects Section */
.film-projects-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--brown-medium);
    margin-bottom: 0;
}

.film-card {
    background: hsl(0deg 0% 100% / 50%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.film-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.film-title-section {
    flex: 1;
}

.film-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.film-year {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.film-genre {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.film-status-badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-production {
    background: linear-gradient(135deg, #05e173 0%, #4caf50 100%);
    color: var(--white);
}

.status-development {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    color: var(--white);
}

.film-co-writer {
    background: #f4e4bc61;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd230;
}

.co-writer-text {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--brown-dark);
    font-style: italic;
    font-weight: 500;
}

.film-synopsis {
    margin-bottom: 20px;
    flex: 1;
}

.film-synopsis p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.film-current-stage {
    background: #f4e4bc61;
    padding: 12px 16px;
    border-radius: 12px;
    /* margin-bottom: 25px; */
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-icon {
    /* width: 16px;
    height: 16px; */
    color: var(--brown-dark);
}

.film-current-stage span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--brown-dark);
    font-weight: 500;
}

.film-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.btn-behind-scenes {
    background: var(--white);
    color: #05e173;
    border: 2px solid #05e173;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-behind-scenes:hover {
    background: #05e173;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 225, 115, 0.3);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-arrow {
    width: 14px;
    height: 14px;
}

/* Vision & Mission Section */
.vision-mission-section {

    padding: 80px 0;
}

.vision-mission-card {
    background:hsl(0deg 0% 100% / 50%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-mission-card .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 0;
    line-height: 1.2;
}

.card-content {
    margin-bottom: 0;
}

.card-content p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-medium);
    line-height: 1.7;
    margin: 0;
}

/* Testimonial Quote Section */
.testimonial-quote {
    background:hsl(0deg 0% 100% / 50%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-style: italic;
 
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Vision & Mission */
@media (max-width: 768px) {
    .vision-mission-card {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-quote {
        padding: 40px 30px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-quote {
        padding: 30px 20px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

/* News Article Styling */
.news-article-content {
    position: relative;
    z-index: 2;
}

/* Back to News Link */
.back-to-news {
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-dark);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.back-icon {
    width: 18px;
    height: 18px;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--brown-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Article Date */
.article-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-icon {
    width: 18px;
    height: 18px;
    color: var(--brown-dark);
}

.date-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 500;
}

/* Article Title */
.article-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Article Meta */
.article-meta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 20px;
    height: 20px;
    color: var(--brown-dark);
}

.author-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-dark);
}

.reading-time {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--brown-dark);
    margin-left: 10px;
}

/* Engagement Metrics */
.engagement-metrics {
    display: flex;
    gap: 25px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-icon {
    width: 18px;
    height: 18px;
    color: var(--brown-dark);
}

.metric-number {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 600;
}

/* News Content Section */
.news-content-section {
    background: var(--cream);
    padding: 80px 0;
}

.article-body {
    background: hsla(0, 0%, 100%, 0.50);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgb(255 183 48 / 30%);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
}

.article-intro .lead {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--brown-dark);
    line-height: 1.7;
    font-weight: 500;
}

.article-content {
    margin-top: 2rem;
}

.content-heading {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 2rem 0 1rem 0;
    padding-bottom: 10px;
    /* border-bottom: 2px solid var(--primary-gold); */
}

.article-content p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--brown-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--brown-medium);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.call-to-action-box {
    background: linear-gradient(135deg, var(--gold-light) 0%, #FFF8DC 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary-gold);
}

.call-to-action-box h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.call-to-action-box p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Additional Article Styling */
.sub-heading {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin: 1.5rem 0 1rem 0;
}

.themes-list {
    background: var(--gold-light);
    padding: 25px;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-gold);
}

.themes-list h5 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.themes-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.themes-list li {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-medium);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.application-requirements {
    background: hsl(39deg 97% 89% / 50%);
    padding: 25px;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgb(255 183 48 / 50%);
}

.application-requirements h5 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.application-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-requirements li {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--brown-medium);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.application-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.deadline-notice {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.deadline-notice p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 0;
}

/* Engagement Section */
.engagement-section {
    border-top: 2px solid #e9ecef !important;
}

.engagement-buttons .btn {
    border-color: var(--primary-gold);
    color: var(--brown-dark);
    font-family: var(--font-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.engagement-buttons .btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-light);
    color: var(--brown-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-share-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.social-share-btn i {
    width: 18px;
    height: 18px;
}
.article-intro img {
    width: 100%;
    height: 381px;
    object-fit: cover;
    border-radius: 18px;
}

/* Responsive Design for News Article */
@media (max-width: 768px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .engagement-metrics {
        gap: 20px;
    }
    
    .back-to-news {
        margin-top: 1rem;
    }
    
    .article-body {
        padding: 30px 25px;
    }
    
    .content-heading {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 2rem;
    }
    
    .engagement-metrics {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .author-info {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .article-body {
        padding: 25px 20px;
    }
    
    .call-to-action-box {
        padding: 25px 20px;
    }
}

/* Déjà Vu Project Section */
.deja-vu-project-section {
    background: var(--cream);
    padding: 80px 0;
}

/* Déjà Vu Card Styling */
.deja-vu-card {
    background: linear-gradient(135deg, #9F2D00 0%, #9F2D00 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.deja-vu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.deja-vu-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.deja-vu-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.deja-vu-icon {
    width: 60px;
    height: 60px;
    background: hsl(44deg 100% 50% / 20%);
    /* border: 3px solid var(--brown-dark); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.book-icon {
    width: 28px;
    height: 28px;
    color: #FEE685;
}

.deja-vu-title {
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.1;
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

.deja-vu-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.deja-vu-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #FEE685;
    line-height: 1.7;
    margin-bottom: 20px;
}

.deja-vu-text:last-of-type {
    margin-bottom: 0;
}

.deja-vu-text em {
    font-style: italic;
    color: #FEE685;
    font-weight: 600;
}

.deja-vu-tagline {
    background: hsl(44deg 100% 50% / 20%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #FFD230;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.tagline-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #FEF3C6;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}
.news-hero{min-height: 30vh;}
.article-img img {
    width: 100%;
    height: 312px;
    object-fit: cover;
    border-radius: 12px;
}
.dark-text{
    color: var(--brown-dark);
}

/* Responsive Design for Film Cards */
@media (max-width: 768px) {
    .film-card {
        padding: 25px;
    }
    
    .film-title {
        font-size: 1.75rem;
    }
    
    .film-actions {
        flex-direction: column;
    }
    
    .btn-read-more,
    .btn-behind-scenes {
        justify-content: center;
        width: 100%;
    }
    
    .deja-vu-card {
        padding: 30px 25px;
        margin-top: 1.5rem;
    }
    
    .deja-vu-title {
        font-size: 2.5rem;
    }
    
    .deja-vu-text {
        font-size: 1rem;
    }
    
    .tagline-text {
        font-size: 1.1rem;
    }
    
    .deja-vu-icon {
        width: 50px;
        height: 50px;
    }
    
    .book-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .deja-vu-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .deja-vu-title {
        font-size: 2rem;
    }
    
    .deja-vu-tagline {
        padding: 20px;
    }
}
.header-content .hero-title {
    font-size: 3rem;
    line-height: 1.5;
}

.no-news{
    color: hsl(39deg 100% 23% / 80%);
}