﻿body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .btn:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
    }


.section-title {
    margin-bottom: 50px;
    text-align: center;
}

    .section-title h2 {
        color: var(--primary-dark);
        position: relative;
        display: inline-block;
        font-size: 2.5rem;
        font-weight: 600;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary));
            border-radius: 2px;
        }

    .section-title p {
        color: #666;
        margin-top: 20px;
        font-size: 1.1rem;
    }


/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


    .carousel-slide.active {
        opacity: 1;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }


    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
    }
}


.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -100px;
}


/* Animation for the carousel */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(-33.33%);
    }

    66.66% {
        transform: translateX(-66.66%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* Notifications Panel */
.notifications-panel {
    position: absolute;
    right: 50px;
    top: 400px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px;
    width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: slideInRight 1s ease 0.6s forwards;
    opacity: 0;
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
}

    .notifications-panel h3 {
        color: var(--primary-color);
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .notifications-panel h3 i {
            margin-right: 10px;
            color: var(--accent-color);
        }

.notifications-scroller {
    max-height: 300px;
    overflow-y: hidden;
    flex-grow: 1;
}

.notification-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .notification-item:hover {
        transform: translateX(5px);
    }

    .notification-item:last-child {
        border-bottom: none;
    }

.notification-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.notification-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.notification-content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 3px;
    display: flex;
    align-items: center;
}

    .notification-time i {
        margin-right: 5px;
        font-size: 0.7rem;
    }

.view-all-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

/* Additional Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100px) translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Responsive Adjustments */
@media(max-width: 768px) {
    .notifications-panel {
        position: relative;
        width: 90%;
        margin-top: 30px !important;
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-content {
        padding-top: 100px;
    }
}

@keyframes slideLeftMobile {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(-33.33%);
    }

    66.66% {
        transform: translateX(-66.66%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Notification Marquee */
.notification-marquee {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    white-space: nowrap;
    font-size: 0.95rem;
    position: relative;
}

.marquee-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pause on hover for better readability */
.notification-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .marquee-item {
        font-size: 0.9rem;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .notification-marquee {
        padding: 10px 0;
    }

    .marquee-item {
        font-size: 0.85rem;
        padding: 0 25px;
    }

    .marquee-badge {
        padding: 2px 8px;
        font-size: 0.65rem;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .marquee-item {
        font-size: 0.8rem;
        padding: 0 20px;
        white-space: normal;
    }

    .marquee-content {
        animation-duration: 60s; /* Slower on mobile for readability */
    }
}




/* Info-Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .info-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

    .info-section::before {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background-color: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

.info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border-radius: 15px;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .info-card::before {
        content: '';
        position: absolute;
        top: -150%;
        left: -150%;
        width: 400%;
        height: 400%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: rotate(45deg);
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .info-card:hover::before {
        opacity: 1;
        transform: translate(50%, 50%) rotate(45deg);
        animation: radialShine 3s linear infinite;
    }

@keyframes radialShine {
    0% {
        transform: translate(50%, 50%) rotate(45deg) scale(1);
    }

    50% {
        transform: translate(50%, 50%) rotate(45deg) scale(1.2);
    }

    100% {
        transform: translate(50%, 50%) rotate(45deg) scale(1);
    }
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.info-card:hover::after {
    box-shadow: 0 0 20px var(--secondary);
}

.info-card .icon {
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--accent-color);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

    .info-card:hover .icon {
        background: var(--primary-color);
        color: white;
        transform: scale(1.2) rotate(360deg);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
        animation: iconBounce 0.5s ease-in-out;
    }

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotate(360deg) translateY(0);
    }

    50% {
        transform: scale(1.2) rotate(360deg) translateY(-5px);
    }
}

.info-card:hover h3 {
    color: var(--secondary);
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 99, 255, 0.8), rgba(255, 179, 0, 0.6));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s ease;
    transform: scale(0.5) rotate(-45deg);
    z-index: 2;
}

.info-card:hover .info-overlay {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.view-btn {
    background-color: white;
    color: var(--primary-dark);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulseBtn 1.5s infinite ease-in-out;
}

@keyframes pulseBtn {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
}

.view-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
    color: var(--dark);
    animation: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}



/* About Section */
.about-section {
    padding: 50px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}



.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-text {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    height: 500px;
}

    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease;
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 0 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 8px;
}

.highlight-box {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .highlight-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(71, 99, 255, 0.2);
}

.highlight-content h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--gray);
}

/* Animation */
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-section.in-view .about-content {
    opacity: 1;
    transform: translateY(0);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-frame:hover .image-overlay {
    opacity: 0.2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .image-frame {
        height: 450px;
    }

    .about-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .image-frame {
        height: 400px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .stats-overlay {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .highlight-box {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .image-frame {
        height: 350px;
    }

    .stats-overlay {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        align-items: center;
    }

    .stat-item {
        padding: 0;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .highlight-box {
        flex-direction: column;
        gap: 15px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Director's Message Section */
.director-message {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}


.message-container {
    display: flex;
    gap: 40px;
    position: relative;
}

.director-photo {
    flex: 0 0 350px;
    position: relative;
    align-self: flex-start;
}

.photo-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 450px;
}

    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.director-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

    .director-info h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .director-info p {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 15px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

.signature img {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    opacity: 0.9;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.message-text {
    background-color: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .message-text::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary));
    }

    .message-text p {
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--dark);
        position: relative;
        transform: translateX(-20px);
        transition: all 0.5s ease;
    }



.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    position: relative;
    overflow: hidden;
}

    .read-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .read-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
    }

        .read-more-btn:hover::before {
            left: 100%;
        }

    .read-more-btn:active {
        transform: translateY(0);
    }

.read-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* Animation when section comes into view */
.director-message.in-view .photo-frame {
    transform: perspective(1000px) rotateY(0);
}

.director-message.in-view .director-info {
    transform: translateY(0);
    opacity: 1;
}

.director-message.in-view .message-text p {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .director-photo {
        flex: 0 0 300px;
    }

    .photo-frame {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .message-container {
        flex-direction: column;
    }

    .director-photo {
        flex: 0 0 auto;
        max-width: 350px;
        margin: 0 auto;
    }

    .photo-frame {
        transform: perspective(1000px) rotateY(0);
    }

    .director-info {
        transform: translateY(0);
        opacity: 1;
    }

    .message-text p {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .director-message {
        padding: 60px 0;
    }

    .director-info h3 {
        font-size: 1.5rem;
    }

    .message-text {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .director-photo {
        max-width: 280px;
    }

    .photo-frame {
        height: 350px;
    }

    .director-info {
        left: 20px;
        bottom: 20px;
    }

        .director-info h3 {
            font-size: 1.3rem;
        }

    .message-text {
        padding: 25px 20px;
    }

        .message-text p {
            font-size: 1rem;
        }
}


/* YouTube Shorts Section */
.youtube-shorts {
    padding: 50px 0;
    background-color: var(--light);
    position: relative;
}

.shorts-container {
    position: relative;
    overflow: hidden;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.short-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .short-item:hover {
        transform: translateY(-5px);
    }

    .short-item iframe {
        width: 100%;
        height: 320px;
        display: block;
        border: none;
        background-color: #000;
    }

.short-caption {
    padding: 15px;
    background-color: var(--white);
    text-align: center;
    font-weight: 500;
    color: var(--primary-dark);
}

.shorts-mobile-nav {
    display: none;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 15px;
    z-index: 2;
}

.short-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .short-nav-btn:hover {
        background-color: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .short-item {
        min-width: 100%;
        scroll-snap-align: start;
    }

    .shorts-mobile-nav {
        display: flex;
    }

    .short-item iframe {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .short-item iframe {
        height: 400px;
    }
}

/* Hide scrollbar for shorts grid */
.shorts-grid::-webkit-scrollbar {
    display: none;
}

.shorts-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* Success Stories Section */
.success-stories {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
}


.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .story-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.story-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-video {
    width: 100%;
    height: 100%;
}

    .story-video iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.story-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .story-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--primary-dark);
        line-height: 1.4;
    }

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .meta-item i {
        font-size: 0.8rem;
        color: var(--primary-color);
    }

.story-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
    flex: 1;
}

.story-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.story-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .story-link i {
        transition: transform 0.3s ease;
    }

    .story-link:hover {
        color: var(--primary-dark);
    }

        .story-link:hover i {
            transform: translateX(5px);
        }

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Animation */
.story-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-stories.in-view .story-card {
    opacity: 1;
    transform: translateY(0);
}

    .success-stories.in-view .story-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .success-stories.in-view .story-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .success-stories.in-view .story-card:nth-child(3) {
        transition-delay: 0.3s;
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .stories-container {
        gap: 25px;
    }

    .story-media {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .success-stories {
        padding: 60px 0;
    }

    .story-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stories-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .story-media {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .story-media {
        height: 250px;
    }

    .story-content {
        padding: 20px;
    }

        .story-content h3 {
            font-size: 1.2rem;
        }

    .stat {
        padding: 12px;
        min-width: 70px;
    }

    .stat-value {
        font-size: 1.3rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: var(--light);
    position: relative;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .lightbox.show {
        top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    max-width: 80%;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .lightbox-close:hover {
        color: var(--primary-color);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 4rem;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
    transition: color 0.3s ease;
}

    .lightbox-nav:hover {
        color: var(--primary-color);
    }

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-nav {
        font-size: 3rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lightbox-nav {
        font-size: 2rem;
        padding: 0 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-image {
        max-height: 50vh;
    }
}


/* Testimonials */
.testimonials {
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

    .testimonials::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(71, 99, 255, 0.6), rgba(255, 179, 0, 0.2));
        pointer-events: none;
    }

    .testimonials .section-title h2 {
        color: var(--white);
        position: relative;
        z-index: 2;
    }

    .testimonials .section-title p {
        color: rgba(255, 255, 255, 0.8);
        position: relative;
        z-index: 2;
    }

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        background-color: rgba(255, 255, 255, 0.15);
    }

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    color: rgba(255,255,255,0.9);
}

    .testimonial-text::before,
    .testimonial-text::after {
        content: '"';
        font-size: 2.5rem;
        color: var(--secondary);
        opacity: 0.5;
        position: absolute;
        font-family: serif;
    }

    .testimonial-text::before {
        top: -20px;
        left: -15px;
    }

    .testimonial-text::after {
        bottom: -40px;
        right: -15px;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-align: left;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: left;
}

.rating {
    color: var(--secondary);
    margin-top: 5px;
    text-align: left;
    font-size: 0.9rem;
}


/* Newsletter */
.newsletter {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .newsletter::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

    .newsletter::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background-color: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

    .newsletter h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .newsletter p {
        max-width: 600px;
        margin: 0 auto 40px;
        opacity: 0.9;
        font-size: clamp(0.95rem, 1.5vw, 1.1rem);
        position: relative;
        z-index: 2;
    }

.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
}

    .newsletter-form input {
        flex: 1;
        padding: 16px 25px;
        border-radius: 50px;
        border: none;
        font-size: 1rem;
        outline: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

        .newsletter-form input::placeholder {
            color: #aaa;
        }

    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        background-color: var(--secondary);
        color: var(--dark);
        border: none;
        border-radius: 50px;
        padding: 0 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

        .newsletter-form button:hover {
            background-color: #ffca28;
            transform: translateY(-2px);
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .notifications-panel {
        right: 30px;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .notifications-panel {
        position: static;
        transform: none;
        margin-top: 150px;
        width: 100%;
        max-width: 500px;
        animation: fadeInUp 1s ease 0.6s forwards;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .plants-grid, .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 800px;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
        text-align: center;
    }

    .plants-filter {
        justify-content: center;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .author-info h4,
    .author-info p,
    .rating {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 700px;
    }

    .btn {
        padding: 10px 25px;
    }


    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

        .newsletter-form input {
            width: 100%;
            padding: 14px 20px;
        }

        .newsletter-form button {
            position: static;
            padding: 12px 25px;
            width: 100%;
        }

    .feature-card,
    .plant-card,
    .blog-card {
        padding: 25px;
    }

    .plant-img {
        height: 240px;
    }
}

@media (max-width: 400px) {
    .plants-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .plants-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 80%;
        text-align: center;
    }
}
