/* COMPONENTS.CSS - Buttons, Popups, Widgets */


/* FROM: hero-explore-button.css */
/* Hero Explore Button Styles */

.hero-bottom-button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    pointer-events: auto; /* Ensure buttons are clickable */
}

.explore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #FFB82C;
    color: #000;
    text-decoration: none;
    border-radius: 50px 0 0 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    white-space: nowrap;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    /* Hidden by default */
    flex: 0 0 0;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
}

/* Show Explore button on hover */
.hero-bottom-button:hover .explore-button {
    flex: 1 1 auto;
    min-width: max-content;
    opacity: 1;
    visibility: visible;
}

.explore-button:hover {
    background: #4A148C;
    color: #fff;
    transform: translateY(-2px);
}

.explore-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.explore-button:hover i {
    transform: translateX(5px);
}

/* Apply Now Button Styles */
.apply-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #DC143C;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

/* When expanded, adjust Apply Now button radius */
.hero-bottom-button:hover .apply-now-button {
    border-radius: 0 50px 50px 0;
}

.apply-now-button:hover {
    background: #B22222;
    transform: translateY(-2px);
}

.apply-now-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.apply-now-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-bottom-button {
        bottom: 40px;
    }

    .explore-button,
    .apply-now-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-bottom-button:hover .explore-button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 768px) {
    .hero-bottom-button {
        bottom: 30px;
        flex-direction: column;
        border-radius: 15px;
    }

    .explore-button {
        border-radius: 15px 15px 0 0;
        border-right: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        padding: 0;
        font-size: 0.9rem;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-bottom-button:hover .explore-button {
        max-height: 100px;
        padding: 12px 25px;
    }

    .apply-now-button {
        border-radius: 15px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-bottom-button:hover .apply-now-button {
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .hero-bottom-button {
        bottom: 20px;
    }

    .explore-button,
    .apply-now-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-bottom-button:hover .explore-button {
        padding: 10px 20px;
    }
}

/* FROM: hero-slide-link.css */
/* Hero Slide Link Styling */
.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 2; /* Ensure link is above overlay */
}

.hero-slide-link:hover .hero-slide {
    transform: none; /* No zoom on hover */
}

/* FROM: whatsapp-popup.css */
/* ========================================
   WHATSAPP CHAT POPUP
   ======================================== */

/* WhatsApp Popup Container */
.whatsapp-popup {
    position: fixed !important;
    bottom: 90px !important;
    /* Adjusted for complete visibility */
    right: 30px !important;
    width: 350px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 999999 !important;
    /* Ensure it appears above all elements including parallax */
    display: none;
    animation: slideUp 0.3s ease;
    transform: translateZ(0) !important;
    /* Force GPU acceleration and prevent parallax interference */
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
    isolation: isolate;
    /* Create new stacking context */
    pointer-events: auto;
    /* Ensure it's clickable */
}

.whatsapp-popup.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popup Header */
.whatsapp-popup-header {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #FFFFFF;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-popup-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-popup-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    position: relative;
}

.whatsapp-popup-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-popup-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.whatsapp-popup-info h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
}

.whatsapp-popup-info p {
    margin: 5px 0 0 0;
    font-size: 0.85em;
    opacity: 1;
    color: #FFFFFF;
}

.whatsapp-popup-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.whatsapp-popup-close:hover {
    opacity: 0.7;
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 20px;
    background: #ECE5DD;
    max-height: 400px;
    overflow-y: auto;
}

.whatsapp-message {
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #FFFFFF;
    border-left: 10px solid transparent;
}

.whatsapp-message-header {
    font-weight: 700;
    color: #128C7E;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.whatsapp-message-text {
    color: #333333;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.whatsapp-message-fields {
    color: #666666;
    font-size: 0.85em;
    line-height: 1.8;
}

.whatsapp-message-time {
    text-align: right;
    color: #999999;
    font-size: 0.75em;
    margin-top: 5px;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 0 0 15px 15px;
}

.whatsapp-start-chat {
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-start-chat:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-start-chat i {
    font-size: 1.3em;
}

/* Responsive */
@media (max-width: 480px) {
    .whatsapp-popup {
        width: calc(100% - 40px) !important;
        right: 20px !important;
        bottom: 90px !important;
        max-height: calc(100vh - 110px) !important;
        overflow-y: auto;
    }

    .whatsapp-popup-body {
        max-height: 300px !important;
    }
}

/* FROM: scroll-to-top.css */
/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3A3184;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(58, 49, 132, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #FFB82C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 49, 132, 0.6);
}

.scroll-to-top i {
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
        bottom: 20px;
        right: 20px;
    }
}

/* FROM: admission-popup.css */
/* ========================================
   ADMISSION ENQUIRY POPUP FORM
   ======================================== */

/* Popup Overlay */
.admission-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.admission-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Popup Container */
.admission-popup-container {
    background: #FFFFFF;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.admission-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.5em;
    color: #000000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.admission-popup-close:hover {
    color: #FF0000;
    transform: rotate(90deg);
}

/* Popup Header */
.admission-popup-header {
    background: #F5F5F5;
    padding: 40px 40px 30px;
    border-radius: 10px 10px 0 0;
}

.admission-popup-header h2 {
    font-size: 2em;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
}

/* Admission Officer Info */
.admission-officer-info h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.officer-title {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 15px;
}

.contact-details p {
    font-size: 1em;
    color: #333333;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #FFB82C;
    font-size: 1.1em;
    width: 20px;
}

/* Form Styling */
.admission-popup-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.admission-popup-form input,
.admission-popup-form select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1em;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    background: #F9F9F9;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.admission-popup-form input:focus,
.admission-popup-form select:focus {
    outline: none;
    border-color: #FFB82C;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 184, 44, 0.1);
}

.admission-popup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Submit Button */
.admission-submit-btn {
    width: 100%;
    background: #000000;
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.admission-submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.admission-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .admission-popup-container {
        width: 95%;
        max-height: 95vh;
    }

    .admission-popup-header {
        padding: 30px 25px 25px;
    }

    .admission-popup-header h2 {
        font-size: 1.6em;
    }

    .admission-officer-info h3 {
        font-size: 1.3em;
    }

    .admission-popup-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admission-popup-close {
        top: 15px;
        right: 15px;
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .admission-popup-header {
        padding: 25px 20px 20px;
    }

    .admission-popup-header h2 {
        font-size: 1.4em;
    }

    .admission-popup-form {
        padding: 25px 20px;
    }

    .contact-details p {
        font-size: 0.9em;
    }
}

/* ========================================
   SOCIAL MEDIA SIDEBAR
   ======================================== */

.social-sidebar {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.social-sidebar-btn {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.3em;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Social Label - Hidden by default */
.social-label {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.9);
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Show label on hover */
.social-sidebar-btn:hover .social-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Brand Colors */
.social-sidebar-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.social-sidebar-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.social-sidebar-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-sidebar-btn.twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-sidebar-btn.threads {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-sidebar-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

/* Hover Effects */
.social-sidebar-btn:hover {
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-sidebar-btn.facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%);
}

.social-sidebar-btn.linkedin:hover {
    background: linear-gradient(135deg, #004182 0%, #0A66C2 100%);
}

.social-sidebar-btn.instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E4405F 100%);
}

.social-sidebar-btn.twitter:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

.social-sidebar-btn.threads:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

/* Threads Icon Image Styling */
.threads-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-sidebar-btn.threads:hover .threads-icon {
    transform: rotate(360deg);
}

.social-sidebar-btn.youtube:hover {
    background: linear-gradient(135deg, #CC0000 0%, #FF0000 100%);
}

/* Icon Animation */
.social-sidebar-btn i {
    transition: transform 0.3s ease;
}

.social-sidebar-btn:hover i {
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .social-sidebar {
        right: 20px;
    }

    .social-sidebar-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .threads-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .social-sidebar {
        right: 15px;
        gap: 12px;
    }

    .social-sidebar-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }

    .threads-icon {
        width: 20px;
        height: 20px;
    }

    /* Hide labels on mobile */
    .social-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        right: 10px;
        gap: 10px;
    }

    .social-sidebar-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

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

/* ========================================
   HERO ANNOUNCEMENT TICKER
   ======================================== */

.ticker-box {
    position: absolute;
    top: 30px;
    left: 20px;
    transform: translateY(0);
    width: 280px;
    height: 350px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-left: 4px solid #FFB82C;
    padding: 15px;
    border-radius: 10px;
    z-index: 5;
}

.ticker {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scroll 20s linear infinite;
}

.ticker li {
    color: #fff;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticker li:hover {
    background: rgba(255, 184, 44, 0.1);
    padding-left: 5px;
}

.ticker li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.ticker li a:hover {
    color: #FFB82C;
}

.ticker li:last-child {
    border-bottom: none;
}

@keyframes scroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.ticker-box:hover .ticker {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-box {
        width: 280px;
        height: 180px;
        left: 15px;
        top: auto;
        bottom: 100px;
        transform: none;
    }

    .ticker li {
        font-size: 14px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .ticker-box {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        height: 150px;
        bottom: 80px;
    }

    .ticker li {
        font-size: 13px;
        padding: 8px 0;
    }
}

.ticker-label {
    background: linear-gradient(135deg, #FFB82C 0%, #FF9800 100%);
    color: #000;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-label span {
    letter-spacing: 1px;
}

.hero-news-ticker .ticker-label i {
    font-size: 1.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-news-ticker .ticker-content {
    overflow: hidden;
    height: 390px;
    padding-top: 10px;
}

.hero-news-ticker .ticker-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: scroll-ticker-vertical 20s linear infinite;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Pause animation on hover */
.hero-news-ticker:hover .ticker-items {
    animation-play-state: paused;
}

@keyframes scroll-ticker-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.hero-news-ticker .ticker-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.hero-news-ticker .ticker-item:hover {
    background: rgba(255, 184, 44, 0.1);
}

.hero-news-ticker .ticker-item i.fa-circle {
    font-size: 0.4em;
    color: #FFB82C;
    margin-top: 6px;
    flex-shrink: 0;
}

.hero-news-ticker .ticker-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 230px;
}

.hero-news-ticker .ticker-item a:hover {
    color: #FFB82C;
}

.hero-news-ticker .ticker-item span {
    color: #FFFFFF;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 230px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-news-ticker {
        left: 15px;
        max-width: 250px;
        max-height: 350px;
    }

    .ticker-content {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-news-ticker {
        bottom: 80px;
        left: 15px;
        right: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .ticker-label {
        padding: 10px 15px;
        justify-content: center;
        font-size: 0.85rem;
    }

    .ticker-content {
        padding: 10px 15px;
    }

    .ticker-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-news-ticker {
        bottom: 70px;
        left: 10px;
        right: 10px;
    }

    .ticker-label {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .ticker-content {
        padding: 8px 12px;
    }

    .ticker-item {
        font-size: 0.8rem;
        gap: 8px;
    }
}