@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Sora:wght@100..800&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Commissioner", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Update color variables at the top */
:root {
    --primary-gold: #F4B41A;    /* Logo's gold color */
    --primary-brown: #4A2511;   /* Logo's brown color */
    --secondary-gold: #FFD700;  /* Slightly lighter gold for hover effects */
    --light-brown: #8B4513;     /* Lighter brown for better readability */
    --bg-cream: #FFF8E7;        /* Light cream background */
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}
.bees{
    margin-left: 30%;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 2rem;
    margin-right: 1rem;
}

.nav-links li a {
    color: var(--primary-brown);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(74, 37, 17, 0.9), rgba(74, 37, 17, 0.9));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: float 6s infinite;
}

.floating-icon:nth-child(1) {
    font-size: 3rem;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    font-size: 2.5rem;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    font-size: 4rem;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    font-size: 3.5rem;
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    font-size: 3rem;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    font-size: 2.5rem;
    bottom: 30%;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    margin-top: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero h1 span {
    color: var(--primary-gold);
}

.typing-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--primary-gold);
    animation: typing 3.5s steps(40, end);
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--primary-gold);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button Styling */
.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    background: var(--primary-gold);
    color: var(--primary-brown);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 180, 26, 0.3);
    animation: pulse 2s infinite;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--secondary-gold);
    box-shadow: 0 8px 20px rgba(244, 180, 26, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(244, 180, 26, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(244, 180, 26, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(244, 180, 26, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(244, 180, 26, 0.3);
    }
}

/* Responsive adjustment for the button */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    #mobile-logo{
        display: block !important;
width: 120px;
    }
    .bees{
        margin-left: 2%;
    }
}
#mobile-logo{
    display: none;
}
/* Services Section */
.services {
    padding: 1rem 2rem;
    background: var(--bg-cream);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-brown);
}

/* Adjust grid for larger screens */
@media (min-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Adjust for medium screens */
@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.clients h2 {
    color: var(--primary-brown);
    margin-bottom:0rem;
}

.client-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0rem 0 ;
}

.client-carousel::before,
.client-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.client-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.client-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.client-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.client-logo {
    flex: 0 0 200px;
    margin: 0 2rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.client-logo img {
    width:20rem;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 13));
    }
}

/* Pause animation on hover */
.client-carousel:hover .client-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 150px;
        margin: 0 1rem;
    }
    
    .client-carousel::before,
    .client-carousel::after {
        width: 50px;
    }
    .client-logo img {
        width:10rem;
       
    }
    .client-track {
        display: flex;
        animation: scroll 60s linear infinite;
        width: max-content;
    }
}

@media (max-width: 480px) {
    .client-logo {
        flex: 0 0 120px;
        margin: 0 0.5rem;
    }
}

/* Works Section */
.works {
    padding: 5rem 2rem;
    background: white;
}

.works h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-brown);
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-brown);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-brown);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    justify-items: center;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.work-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
    max-height: 600px;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(74, 37, 17, 0.9));
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.work-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.work-overlay p {
    font-size: 1.1rem;
    color: var(--primary-gold);
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item:hover .work-image img {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .work-overlay {
        padding: 1.5rem 1rem;
    }

    .work-overlay h3 {
        font-size: 1.2rem;
    }

    .work-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-image img {
        max-height: 500px;
    }
    .nav-links {
       
        margin-right: 0rem;
    }
}

/* Social Media and Hoarding Items */
.work-item.social{
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
    height: auto;
}
.work-item.hoarding {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
    width: 100%;
    height: fit-content;
}
.hoarding-img {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hoarding-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(74, 37, 17, 0.9));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

/* Campaign Items */
.work-item.campaign {
    grid-column: 1 / -1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.campaign-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.campaign-info{
    display: flex;
    flex-direction: column;
    gap:70px;
}
.campaign-info h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.campaign-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-brown);
}

.campaign-description {
    color: var(--light-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.campaign-visuals {
    display: grid;
    gap: 1rem;
}

.campaign-visuals img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .campaign-container {
        grid-template-columns: 1fr;
    }

    .campaign-stats {
        grid-template-columns: 1fr;
    }

    .work-item.social,
    .work-item.hoarding {
        grid-column: 1 / -1;
    }
    .nav-links {
       
        margin-right: 0rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact-form textarea {
    height: 150px;
}

#contact-form button {
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--primary-brown);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

#contact-form button:hover {
    background: var(--secondary-gold);
}

/* Footer */
footer {
    background: var(--primary-brown);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {


    

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .floating-icon {
        font-size: 2rem !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .works-grid,
    .service-cards,
    .footer-content {
        padding: 0 1rem;
    }

    .campaign-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .typing-text {
        font-size: 1.3rem;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation mobile styles already exist */

    .hero-content {
        padding: 1rem;
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .typing-text {
        font-size: 1.2rem;
        white-space: normal;
        border-right: none;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .works-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .campaign-stats {
        grid-template-columns: 1fr;
    }

    .campaign-info h3 {
        font-size: 1.5rem;
    }

    .contact form {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .logo img {
        height: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .typing-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .works h2,
    .services h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .work-overlay h3 {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .campaign-description {
        font-size: 0.9rem;
    }

    #contact-form input,
    #contact-form select,
    #contact-form textarea {
        font-size: 0.9rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }
}

/* Animation adjustments for mobile */
@media (prefers-reduced-motion: reduce) {
    .floating-icon,
    .cta-button,
    .work-item,
    .service-card {
        animation: none;
        transition: none;
    }

    .typing-text {
        animation: none;
        width: 100%;
    }
}

/* Wave Animation */
.wave-container {
    position: relative;
    height: 150px;
    background: var(--bg-cream);
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%234A2511'/%3E%3C/svg%3E");
    background-size: 50% 100%;
    animation: wave 15s linear infinite;
    transform-origin: center bottom;
    opacity: 1;
}

.wave2 {
    animation: wave2 10s linear infinite;
    opacity: 0.5;
}

.wave3 {
    animation: wave3 5s linear infinite;
    opacity: 0.2;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

@keyframes wave2 {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.9);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

@keyframes wave3 {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(1.1);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

/* Responsive adjustments for wave */
@media (max-width: 768px) {
    .wave-container {
        height: 100px;
    }
    
    .wave {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .wave-container {
        height: 70px;
    }
    
    .wave {
        height: 50px;
    }
}

.logo span {
    font-weight: bold;
    font-size: 1.5rem;
}

.logo .ra-re {
    color: var(--primary-gold);
}

.logo .bees {
    color: var(--primary-brown);
}

/* Update existing hamburger styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    position: relative;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1003;
}

/* Add new hamburger active state styles */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-brown);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-brown);
}

/* Update mobile navigation styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-brown);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-links {
    
        position: fixed;
        top:  70px;
        right: 0;
        opacity: 0;
        width: 100%;
        height: 0vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;;

pointer-events: none;
        transition: 0.3s  cubic-bezier(0.77,0.8,0.05,0.8);
      
        
    }

    .nav-links.active {
        top: 70px;
        height: 40vh;
        display: flex;
        opacity: 1;
        pointer-events: auto;
        
    }

    .nav-links.active::before {
        opacity: 1;
        visibility: visible;
        
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
       
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        
        
    }
   
    /* Delay each nav item animation */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        padding: 2px 25px;
        color: var(--primary-brown);
        font-weight: 500;
    
    }

   
    .modal-content {
      
        margin-top: 20% !important;
       
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    .modal-content {
       
        margin-top: 20% !important;
        
    }
 
    
}

/* Update Flying Bee Animation */
.flying-bee {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 999;
    pointer-events: none;
    opacity: 0; /* Hide by default */
    visibility: hidden; /* Hide by default */
    transition: opacity 0.3s ease;
}

/* Add this new class for showing the bee */
.flying-bee.active {
    opacity: 1;
    visibility: visible;
    animation: flyPath 20s linear;
}

.bee-body {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 50% 50% 50% 50%;
    transform: rotate(-45deg);
    animation: beeBody 0.2s ease infinite alternate;
}

.wing {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(159, 149, 149, 0.571);
    border-radius: 50% 50% 0 50%;
}

.wing-left {
    top: -10px;
    left: 5px;
    transform-origin: bottom right;
    animation: wingBeat 0.1s ease-in-out infinite alternate;
}

.wing-right {
    top: -10px;
    right: 5px;
    transform: scaleX(-1);
    transform-origin: bottom left;
    animation: wingBeat 0.1s ease-in-out infinite alternate;
}

.stripes {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-brown),
        var(--primary-brown) 5px,
        var(--primary-gold) 5px,
        var(--primary-gold) 10px
    );
    border-radius: 50%;
    opacity: 0.7;
}

@keyframes flyPath {
    0% {
        transform: translate(-100px, 50vh);
    }
    25% {
        transform: translate(25vw, 20vh) rotate(20deg);
    }
    50% {
        transform: translate(50vw, 80vh) rotate(-20deg);
    }
    75% {
        transform: translate(75vw, 30vh) rotate(20deg);
    }
    100% {
        transform: translate(100vw, 50vh);
    }
}

@keyframes beeBody {
    from {
        transform: rotate(-45deg) translateY(0);
    }
    to {
        transform: rotate(-45deg) translateY(2px);
    }
}

@keyframes wingBeat {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(30deg);
    }
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .flying-bee {
        width: 30px;
        height: 30px;
    }

    .wing {
        width: 15px;
        height: 15px;
    }
    .award-item img {
        width: 200px !important; /* Adjust size as needed */
        height: auto;
        margin-bottom: 1rem;
    }
    .award-desc{
        width: 300px !important;
    font-size: 12px;  
    }

}

/* Add prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
    .flying-bee {
        display: none;
    }
}

/* Additional bee flight paths */
.bee-2.active {
    animation: flyPath2 15s linear;
}

.bee-3.active {
    animation: flyPath3 18s linear;
}

.bee-4.active {
    animation: flyPath4 12s linear;
}

.bee-5.active {
    animation: flyPath5 20s linear;
}

/* Additional flight path animations */
@keyframes flyPath2 {
    0% {
        transform: translate(100vw, 20vh);
    }
    25% {
        transform: translate(75vw, 60vh) rotate(-20deg);
    }
    50% {
        transform: translate(50vw, 30vh) rotate(20deg);
    }
    75% {
        transform: translate(25vw, 70vh) rotate(-20deg);
    }
    100% {
        transform: translate(-100px, 40vh);
    }
}

@keyframes flyPath3 {
    0% {
        transform: translate(50vw, -100px);
    }
    25% {
        transform: translate(75vw, 25vh) rotate(20deg);
    }
    50% {
        transform: translate(25vw, 50vh) rotate(-20deg);
    }
    75% {
        transform: translate(60vw, 75vh) rotate(20deg);
    }
    100% {
        transform: translate(50vw, 100vh);
    }
}

@keyframes flyPath4 {
    0% {
        transform: translate(-100px, 80vh);
    }
    25% {
        transform: translate(30vw, 40vh) rotate(20deg);
    }
    50% {
        transform: translate(60vw, 60vh) rotate(-20deg);
    }
    75% {
        transform: translate(80vw, 20vh) rotate(20deg);
    }
    100% {
        transform: translate(100vw, 70vh);
    }
}

@keyframes flyPath5 {
    0% {
        transform: translate(100vw, 90vh);
    }
    25% {
        transform: translate(60vw, 30vh) rotate(-20deg);
    }
    50% {
        transform: translate(40vw, 70vh) rotate(20deg);
    }
    75% {
        transform: translate(20vw, 40vh) rotate(-20deg);
    }
    100% {
        transform: translate(-100px, 10vh);
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal-content {
    margin: auto;
    margin-top: 1%;
    display: block;
    width: 80%; /* Width of the image */
    max-width: 700px; /* Max width of the image */
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
}

.get-started-link {
    color: var(--primary-brown); /* Use the primary gold color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make it bold */
    transition: color 0.3s ease; /* Smooth color transition */
}

.get-started-link:hover {
    color: var(--secondary-gold); /* Change color on hover */
}

/* Awards and Recognition Section */
.awards {
    padding: 5rem 2rem;
    background: var(--bg-cream);
    text-align: center;
}

.awards h2 {
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
      display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
}

.award-item img {
    width: 500px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 1rem;
}
.award-desc{
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-item h3 {
   
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--light-brown);
}

/* Hover effect */
.award-item:hover {
    transform: translateY(-5px);
}

/* Center the last poster */
.last-poster {
    display: flex;
    justify-content: center; /* Center the content */
    margin: 0 auto; /* Center the item in the grid */
}

