/* Modern CSS Reset and Variables */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.newspa{.hero {
    background: linear-gradient(135deg, rgba(29, 170, 186, 0.8), rgba(10, 125, 140, 0.9)),url('/assets/images/pexels-pixabay-41949.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 3rem 0 2rem;
    overflow: hidden;
    position: relative;
    min-height: 60vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.hero-text p {
    margin-bottom: 2rem;
}

.hero-text p.fade-in-text {
    opacity: 0 ;
    transform: translateY(20px);
    animation: fade-in 1s ease-in 4s forwards !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

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

/* Satellite Background Animations */
.satellite-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.satellite-orbit {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.satellite-orbit::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: satellite-move 20s linear infinite;
    box-shadow: 0 0 15px #f59e0b;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.8), transparent);
    animation: stream-flow 3s ease-in-out infinite;
}

.stream-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.stream-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.stream-3 {
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.signal-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(29, 170, 186, 0.6);
    border-radius: 50%;
    animation: pulse-signal 2s ease-in-out infinite;
}

.pulse-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 70%;
    right: 30%;
    animation-delay: 0.7s;
}

.pulse-3 {
    top: 45%;
    left: 60%;
    animation-delay: 1.4s;
}

/* Breaking News Ticker */
.news-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 0;
    z-index: 3;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.breaking-label {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 3px;
    animation: blink 1.5s ease-in-out infinite;
}

.ticker-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Typewriter Effect */
.typewriter-text {
    overflow: hidden;
}

.typewriter-line {
    display: inline-block;
    border-right: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    min-height: 1.2em;
}

/* Fade-in text styling moved to more specific selector above */

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.icon-2 {
    top: 30%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.icon-3 {
    top: 70%;
    left: 85%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.icon-4 {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

/* Enhanced Stats Animation */
.hero-stats {
    opacity: 0;
    animation: slide-up 1s ease-out 5s forwards;
}

.stat-item {
    transform: translateY(20px);
    opacity: 0;
    animation: stat-appear 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 5.5s; }
.stat-item:nth-child(2) { animation-delay: 6s; }
.stat-item:nth-child(3) { animation-delay: 6.5s; }
}
/* Keyframe Animations */
@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes satellite-move {
    from { transform: translateX(-50%) rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes stream-flow {
    0%, 100% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(20px); }
}

@keyframes pulse-signal {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.6; }
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink-cursor {
    0%, 49% { border-right-color: #f59e0b; }
    50%, 100% { border-right-color: transparent; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes stat-appear {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
   .newspa{ .hero {
        min-height: 50vh;
        padding: 2rem 0 1.5rem;
    }
    
    .news-ticker {
        padding: 6px 0;
    }
    
    .breaking-label {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .ticker-text {
        font-size: 0.8rem;
    }
    
    .satellite-orbit {
        width: 150px;
        height: 150px;
        top: 15%;
        right: 5%;
    }
    
    .data-stream {
        height: 60px;
    }
    
    .floating-icon {
        font-size: 1.2rem;
    }
    
    .typewriter-line {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 5px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Reduce animation intensity on mobile */
    .signal-pulse {
        width: 15px;
        height: 15px;
    }
    
    .floating-icon {
        animation-duration: 4s !important;
    }
}
}
@media (max-width: 480px) {
    .newspa{
        .hero-stats {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .satellite-orbit {
        display: none; /* Hide complex animations on very small screens */
    }
    
    .data-stream {
        height: 40px;
    }}
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .satellite-orbit,
    .data-stream,
    .signal-pulse,
    .floating-icon {
        animation: none;
    }
    
    .ticker-content {
        animation: none;
        justify-content: center;
    }
    
    .typewriter-line {
        animation: fade-in 1s ease-in forwards;
        border-right: none;
        width: auto;
    }
    
    .hero-stats,
    .stat-item {
        animation: fade-in 1s ease-in forwards;
        opacity: 1;
        transform: none;
    }
}

/* Quick Actions */
.quick-actions {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.action-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1daaba, #f59e0b);
    transform: scaleX(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1daaba,#0a7d8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.action-card p {
    color: #475569;
    font-size: 0.875rem;
}

/* Featured Offers */
.featured-offers {
    padding: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    background: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #475569;
}

.filter-btn:hover {
    border-color: #1daaba;
    color: #1daaba;
}

.filter-btn.active {
    background: #1daaba;
    color: white;
    border-color: #1daaba;
}

.offers-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}



.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.category {
    background: #f8fafc;
    color: #334155;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.date {
    color: #64748b;
    font-size: 0.75rem;
}

.offer-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.offer-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1.125rem;

}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.btn-news {
    background: #1daaba;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: 20px;
}
.benefits-list li{
    color: #000 !important;
}

.offer-card p {
    font-size: 1rem;
    margin-bottom:10px !important;
    margin-top: 10px;
}
.btn-news:hover {
    background:#0a7d8c;
    transform: translateY(-1px);
    
}
ul.benefits-list {
    margin-left:20px;
}
.social-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn,
.soctbn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    color: white;
}

.share-btn,
.soctbn {
    background: #000;
}


a.soctbn{
    text-decoration: none;
    margin: 10px 10px 0 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a.soctbn:hover{
    transform: scale(1.1);
    filter: brightness(1.1);
}
/* .share-btn[data-platform="facebook"] {
    background: #1877f2;
}

.share-btn[data-platform="twitter"] {
    background: #1da1f2;
} */

.share-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Content Hub */
.content-hub {
    padding: 3rem 0;
    background: white;
}

.hub-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.hub-item {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.hub-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.follow-btn {
    background: #1daaba;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.follow-btn:hover {
    background:#0a7d8c;
}

.update-time {
    color: #64748b;
    font-size: 0.75rem;
}

.video-duration {
    background: #1e293b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Instagram Feed */
.feed-container {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.instagram-feed {
    width: 100%;
    height: 400px;
    border: none;
}

/* Trending Topics */
.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.topic-item:hover {
    border-color: #1daaba;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.topic-rank {
    background: #1daaba;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.topic-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.topic-content p {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.topic-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* Video Container */
.video-container {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.video-container iframe {
    width: 100%;
    border: none;
}

.offer-card{
    display: block !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .offer-card {
        flex: 0 1 calc(33.333% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
    .offer-card {
        flex: 0 1 calc(33.333% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
    .card-image img{
        object-fit:contain !important;
    }
    .btn-news{
        margin-bottom: 10px;
    }
    
    .hero {
        padding: 2rem 0 1.5rem;
    }
    header.hero {
        margin-bottom:30px
    }
    .hero-stats {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 10px;
    }
    
    .action-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .action-card {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .offers-grid {
        gap: 1rem;
        flex-wrap:wrap
    }
    
    .offer-card {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 250px;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .hub-item {
        padding: 1rem;
    }
    
    .topic-item {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .topic-rank {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .offers-grid {
        gap: 0.75rem;
    }
    
    .offer-card {
        flex: 0 1 100%;
        min-width: auto;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .hub-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* @media(min-width:767px){
    .slider-dots {
        display: none !important;
    }
} */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card {
    animation: fadeInUp 0.6s ease-out;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.filter-btn:focus,
.share-btn:focus,
.action-card:focus {
    outline: 2px solid #1daaba;
    outline-offset: 2px;
}

/* Brand consistency with WizzRide colors */

/* Modern Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: white;
    box-sizing: border-box;
}

.slide .offer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.slide.active .offer-card {
    transform: scale(1);
}

/* .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1daaba,#0a7d8c);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
} */

/* .slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
} */

/* .prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
} */

.slider-nav i {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.slider-nav:hover i {
    color: #1daaba;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
   
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-color: #000;
}

.dot.active {
    background: linear-gradient(135deg, #1daaba,#0a7d8c);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: linear-gradient(135deg, #1daaba,#0a7d8c);
    transform: scale(1.1);
}

/* Enhanced card styles for slider */
.slide .offer-card {
    border: none;
    background: #fff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide .card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.slide .card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
   object-fit: cover;
}

.slide .offer-card:hover .card-image img {
    transform: scale(1.05);
}

.slide .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #1daaba 0%,#0a7d8c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(29, 170, 186, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .slider-nav {
        display:none;
    }
    .action-grid {
        display:none;
    }
    /*.slider-container {
        margin: 0 1rem;
    }*/
    
    /* .slider-wrapper {
        height: 400px;
    }
     */
    .slide {
        padding: 1rem;
    }
    
    .slide .offer-card {
        padding: 1.5rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animation for slide transitions */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.slide.entering {
    animation: slideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.exiting {
    animation: slideOut 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
  }
  
  .more-content.show {
    max-height: 1000px; 
  }


.leftli {
  list-style: none; /* Remove default bullets */
  padding-left: 0;  /* Remove default left padding */
}

.leftli li {
  position: relative;
  padding-left: 20px; /* Space for the arrow */
  margin-bottom: 8px;  /* Optional spacing between items */
  font-size:17px;
  
}

.leftli li::before {
  content: ">";            /* Right angle arrow */
  position: absolute;
  left: 0;
  top:6px;
  color: #1daaba;          /* Arrow color */
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
}

.leftli a,
.rmore{
  text-decoration:none;
  color:#1daaba;
  font-weight:bold !important;
}


@media(max-width:767px){
    h1.typewriter-text {
    margin-top:40px !important;
}
}