/* Ultra Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5737c4;
    --secondary: #cc2eb2;
    --accent: #6c5ce7;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hover: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

/* Fix horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}


/* Premium Hero Section */
.hero-premium {
    position: relative;
    min-height: 75vh;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: white;
    display: flex;
    align-items: center;
    overflow: hidden;
   padding-top: 120px;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
     pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 75%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: black;
}

.hero-badge {
    display: inline-block;
           background: var(--gradient);

    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    /* margin-bottom: 2rem; */
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.img-fluid{
  border-radius: 10px;
}


.gradient-text-h {
       background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
        background: var(--gradient);

    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
      

}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Hero Visual - Simplified for Mobile */

.main-visual {
    /* position: absolute;
    top: 10% !important;
    left: 20%; */
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    margin-left: 30px;
}

.main-visual img {
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    background: white;
}

.trusted-label {
    text-align: center;
    /* color: var(--text-light); */
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* .logo-item {
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
} */

.logo-item img {
    height: 30px;
    width: auto;
}

/* Premium Features */
.features-premium {
    padding: 6rem 0;
    background: var(--light);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    
    margin: 0 auto;
}

.features-content {
    padding-right: 2rem;
}

.features-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.feature-highlight-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    background: var(--gradient);
    padding: 1rem;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.list-item i {
    color: var(--primary);
    background: rgba(87, 55, 196, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.features-visual {
    position: relative;
}

.features-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

.visual-floating-element {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

/* Premium Services */
.services-premium {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary);
    gap: 1rem;
}

/* Premium CTA */
.cta-premium {
    padding: 6rem 0;
    /* background: var(--gradient); */
    color: black;
    text-align: left !important;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: left;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--primary);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
  
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .visual-floating-element {
        display: none;
    }
    
    
      #press-row{
           display: block;
           text-align: center;
        }
   
    
   
    
    .main-visual {
        width: 90%;
    }
}



@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
   
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    
    
    
    .main-visual {
      margin-left: 0px;
        width: 100%;
    }
}

/* Mobile Navbar Improvements */
@media (max-width: 991px) {

    .main-visual{
      margin-bottom: 20px;
    }

  .hero-premium{
   padding-top: 50px;
  }
   
    
    /* Ensure dropdowns are scrollable on mobile */
    .dropdown-menu {
        max-height: 250px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .features-intro {
        text-align: center;
    }
}


/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/* Features Under One Roof Section */
.features-roof-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(87, 55, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.feature-icon img {
    max-width: 40px;
    max-height: 40px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Seamless Section */
.seamless-section {
    padding: 6rem 0;
    background: white;
}

/* Fixed Marquee Styles - 100% Working */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.marquee-item img {
    height: 35px;
    width: auto;
    /* filter: grayscale(100%); */
    transition: var(--transition);
}

/* .marquee-item:hover img {
    filter: grayscale(0%);
} */

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-content:hover {
    animation-play-state: paused;
}

/* Payment Methods Section */
/* .payment-methods-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
} */

.payment-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payment-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    padding: 0.75rem 0;
}

.payment-feature i {
    color: var(--primary);
    background: rgba(87, 55, 196, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-visual {
    text-align: center;
}

.payment-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 100%;
    height: auto;
}

/* Beyond Payments Section */
.beyond-payments-section {
    padding: 2rem 0;
    background: white;
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.beyond-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.beyond-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.beyond-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.beyond-card:hover .beyond-icon {
    transform: scale(1.1) rotate(10deg);
}

.beyond-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.beyond-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Latest Content Section */
.latest-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.content-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.content-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.content-link:hover {
    color: var(--secondary);
    gap: 1rem;
}

.content-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card {
        order: 2;
    }
    
    .content-visual {
        order: 1;
    }
    
    .payment-content h2 {
        font-size: 2rem;
    }
    
    .marquee-item {
        padding: 0 2rem;
    }

    .hero-premium {
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .beyond-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-features {
        gap: 0.5rem;
    }
    
    .marquee-item img {
        height: 25px;
    }
    
    .marquee-item {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .feature-card,
    .beyond-card,
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .payment-content h2 {
        font-size: 1.75rem;
    }
    
    .content-info h3 {
        font-size: 1.5rem;
    }
    
    .marquee-item {
        padding: 0 1rem;
    }
    
    .marquee-item img {
        height: 20px;
    }
}




/*---------media sections for footer----------*/    


.media-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    /* background: white; */
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    margin-top: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: var(--transition);
    gap: 20px;
    justify-content: center;
}

.carousel-card {
    flex: 0 0 auto;
    width: 350px;
    max-width: 90%;
}

@media (min-width: 768px) {
    .carousel-card {
        width: 320px;
    }

   

}

.card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

.card-description {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.card-link:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 55, 196, 0.3);
}

.card-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(3px);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.carousel-btn {
    background: white;
    border: 1px solid #e0e0e0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--text);
    border-color: #e0e0e0;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.auto-play-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.toggle-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: var(--transition);
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--gradient);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.card-date {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.card-date i {
    margin-right: 5px;
    font-size: 0.7rem;
}

/* Hide navigation when only one or two cards */
.media-section.single-card .carousel-nav,
.media-section.single-card .auto-play-toggle,
.media-section.two-cards .carousel-nav,
.media-section.two-cards .auto-play-toggle {
    display: none;
}
    #presalesbody{
            background-color: white;
            color: var(--text);
            line-height: 1.6;
            padding: 20px;
            
            display: flex;
            align-items: center;
            justify-content: center;
    }

     .presales {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            max-width: 1100px;
            width: 100%;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        .presales-content {
            flex: 1 1 500px;
            padding: 100px 20px;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s ease-out 0.3s forwards;
        }

        .presales-image {
            flex: 1 1 500px;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.8s ease-out 0.5s forwards;
            margin-right: 0px;
        }

        .presales-image img {
            width: 100% !important;
            height: 300px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .presales-image img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }

        .presales-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }

        .presales-description {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 500px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.9s forwards;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .presales {
                flex-direction: column;
            }
            
            .presales-content, .presales-image {
                flex: 1 1 100%;
                padding: 40px 30px;
            }
            
            .presales-image {
                order: -1;
            }
            
            .presales-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 576px) {
            .presales-title {
                font-size: 2rem;
            }
            
            .presales-description {
                font-size: 1.1rem;
            }
            
            .presales-content, .presales-image {
                padding: 30px 20px;
            }
        }


        
        .presales-button {
            display: inline-block;
            padding: 16px 40px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            text-decoration: none;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1.1s forwards;
        }

        .presales-button:hover {
            background: var(--gradient-hover);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }


       
        /*-------------------------------*/

        