@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #333;
  }

  header {
    background: white;
    padding: 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: rgba(255, 255, 255, 0.481); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 5%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    height: 80px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 1000;
}

.nav-links a.apply {
    background: #186454;
    color: #ffffff;
    box-shadow: 0px 2px 5px rgba(108, 92, 231, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 95px;
    width: auto;
}

.nav-links {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    gap: 15px;
    font-weight: bold;
    list-style: none;
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 18px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

/* Hover & Focus Effects */
.nav-links a:hover,
.nav-links a:focus {
    background: #6c5ce7;
    color: #ffffff;
    box-shadow: 0px 2px 5px rgba(108, 92, 231, 0.2);
}

/* Hamburger Button */
.hamburger {
    background: #6c5ce7;
    color: white;
    font-size: 20px;
    border: none;
    padding: 8px 12px;
    border-radius: 16px;
    position: absolute; 
    display: none;
    flex-direction: column;
    cursor: pointer;
    top: 20%;
    right: 20px;
    transform: translateY(-5%);
}

/* Style for active link */
.nav-links a.active {
    background: #6c5ce7;
    color: #ffffff;
    box-shadow: 0px 2px 5px rgba(108, 92, 231, 0.2);
}

.hamburger span {
    height: 2px;
    width: 25px;
    background-color: black;
    margin: 4px;
    border-radius: 2px;
  }

.pricing {
    text-align: center;
    padding: 50px 20px;
}

.pricing h2 {
    font-size: 2.5rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust columns dynamically */
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 370px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    gap: 50px;
    margin: 20px;
}

.es {
    box-shadow: 0px 0px 15px #817FF0;
}

.aiml {
    box-shadow: 0px 0px 10px #817FF0;
}

.dd {
    box-shadow: 0px 0px 10px #817FF0;
}

.course-category {
    background: #636AE8;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-card h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.gst {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

.apply-btn, .reserve-btn {
    display: block;
    width: 70%;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #636AE8;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn {
    display: block;
    width: 70%;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #636AE8;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover, .reserve-btn:hover {
    opacity: 0.9;
    background-color: #817FF0;
    color: white;
}

.eligibility-criteria {
    margin-top: 15px;
    text-align: left;
}

.eligibility-criteria h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.eligibility-criteria ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.eligibility-criteria ul li {
    display: flex;
    margin-bottom: 5px;
}

.eligibility-criteria ul li::before {
    content: "➱";
    color: #817FF0;
    font-size: 14px;
    margin-right: 8px;
}

@media (max-width: 1200px) {
    .navbar{
        flex-direction: column;
        align-items: center;
        position: relative;
    }
        
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: flex-start;
        flex-grow: 0.7;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 90px;
        margin: 0px auto;
        height: calc(100vh - 60px);
        background-color: rgba(255, 255, 255, 0.974);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 2000;
    }
    
    .nav-links.show {
        max-height: 550px;
        min-width: 280px;
        transform: translateY(0);
        opacity: 1;
        padding: 0;
        border-radius: 8px;
        visibility: visible;
        z-index: 2000;
    }

    .nav-links li {
        margin: 12px 0;
        border-bottom: 1px solid #6c5ce7;
    }

}

/* Responsive Navbar */
@media (max-width: 768px) {
.pricing-container {
    grid-template-columns: 1fr; /* Stacks cards in one column */
}

.pricing-card {
    max-width: 90%; /* Ensures cards take most of the width */
}
}

/* Goal Section */
.goal {
    text-align: center;
    padding: 50px;
    background: #fff;
    background-image: url('../images/s3.png'); /* Ensure correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

/* Heading */
.goal h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Paragraph */
.goal p {
    max-width: 600px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

/* Button */
.goal .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    background: #6c5ce7;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

.goal .btn:hover {
    background: #5945d6;
}

.duration {
    text-align: center;
    padding: 50px 80px; /* Reduced padding for mobile */
    background: #fff;
    background-image: url('../images/Group110_2.png'); /* Ensure correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

.duration-conatiner {
    text-align: center;
    justify-items: center;
}

/* Heading */
.duration h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Paragraph */
.duration p {
    max-width: 600px;
    margin: auto;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* Button */
.duration .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    background: #6c5ce7;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

.duration .btn:hover {
    background: #5945d6;
}

/* List */
.duration ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    justify-self: center;
    justify-items: left;
}

/* List Items */
.duration ul li {
    display: flex;
    align-items: center; /* Aligns bullet and text */
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}

/* Custom Bullet Point */
.duration ul li::before {
    content: "➱";
    color: #817FF0;
    font-size: 22px; /* Increased for better visibility */
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .goal {
        padding: 40px 20px;
        background-size: contain;
    }

    .goal h3 {
        font-size: 22px;
    }

    .goal p {
        font-size: 16px;
        max-width: 80%;
    }

    .goal .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .goal {
        padding: 30px 15px;
    }

    .goal h3 {
        font-size: 20px;
    }

    .goal p {
        font-size: 14px;
        max-width: 90%;
    }

    .goal .btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    .duration {
        padding: 30px 15px; /* Adjusted padding for mobile */
    }

    .duration h3 {
        font-size: 20px; /* Reduced size for small screens */
    }

    .duration p {
        font-size: 16px; /* Reduced size for readability */
    }

    .duration .btn {
        font-size: 14px;
        padding: 10px 20px; /* Adjusted for smaller screens */
    }

    .duration ul {
        font-size: 14px; /* Slightly smaller for better fit */
    }

    .duration ul li {
        font-size: 14px;
        margin-bottom: 8px;
        text-align: left;
    }

    .duration ul li::before {
        font-size: 18px; /* Scales down bullet on small screens */
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .goal {
        padding: 20px 10px;
    }

    .goal h3 {
        font-size: 18px;
    }

    .goal p {
        font-size: 12px;
        max-width: 95%;
    }

    .goal .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    .duration {
        padding: 20px 10px;
        background-image: url('../images/Group110_3.png');
    }

    .duration h3 {
        font-size: 18px;
    }

    .duration p {
        font-size: 14px;
    }

    .duration .btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .duration ul {
        font-size: 13px;
    }

    .duration ul li {
        font-size: 13px;
        margin-bottom: 6px;
        text-align: left;
    }

    .duration ul li::before {
        font-size: 16px;
        margin-right: 6px;
    }
}

  
 /* Internship Benefits */
.internship-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background: #fff;
    flex-wrap: wrap;
}

.benefits-content {
    max-width: 50%;
    margin-left: -80px;
    text-align: left;
}

.benefits-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefits-content h2 span {
    color: #5c4ef2;
}

.benefits-content ul {
    list-style: none;
    font-size: 18px;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    color: #5c4ef2;
    font-weight: bold;
    text-decoration: none;
}

.benefits-image img {
    border-radius: 10px;
    position: relative;
    height: 100%;
    width: 450px;
    padding: 15px;
    margin-left: 60px;
    border-radius: 36px;
}

/* Responsive Internship Benefits */
@media (max-width: 1024px) {
    .internship-benefits {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px;
    }
    .benefits-content {
        max-width: 100%;
        margin: 0;
        font-size: 18px;
    }
    .benefits-content ul{
        max-width: 100%;
        margin: 0;
        font-size: 14px;
    }
    .benefits-image img {
        width: 100%;
        max-width: 350px;
        margin-left: 10px;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #5945d6;
    background-image: url('../images/Course6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
    color: #000;
    height: 550px;
    width: 100%;
    flex-wrap: wrap;
    
}

.content {
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    margin-left: 30px;
    text-align: center;
}

.content h1 {
    font-size: 2em;
    font-weight: 800;
    color: #ffffff;
}

.content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: bold;
}

.content button {
    display: inline-block;
    padding: 12px 24px;
    background: #f2f2fd;
    color: #6c5ce7;
    font-size: 16px;
    border-radius: 20px;
}

.content button:hover {
    background: #f0f2ff;
}

.image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .content h1{
        max-width: 80%;
        margin: auto;
        font-size: 16px;
    }
    .content {
        margin-left: auto;
    }
    .content p {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px;
    }

    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 12px;
    }

    .content button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .benefits-content h2 {
        text-align: center;
    }
}

.marquee-wrapper {
    width: 100%;
    background-color: #ffcc00; /* Eye-catching yellow */
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 16px;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.highlight {
    color: red;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    width: 850px;
    margin: 0 auto;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.contact-form label {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: -5px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    margin-top: 0;
    padding: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
    font-size: 16px;
}

.contact-heading {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    width: 200px;
}

.submit-btn:hover {
    background: #8c7ae6;
}

.location-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.location-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
}

.location-item {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.box-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-container {
        width: 90%;
        flex-direction: column;
        height: auto;
    }

    .contact-form {
        width: 100%;
        font-size: 14px;
    }

    .map-container {
        width: 100%;
        height: 300px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-container {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .contact-heading {
        font-size: 24px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px;
    }

    .contact-heading {
        font-size: 20px;
    }

    .map-container {
        height: 200px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }
}


/* News Letter Section */
.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything */
    justify-content: center;
    text-align: center;
    color: #333;
    margin-top: 50px;
}

.newsletter-input {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: -2px;
    margin-top: 20px;
    margin-bottom: 100px;
    height: 45px;
    width: 500px; /* Adjusted for balance */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    gap: 10px; /* Adds spacing between elements */
}

.email-icon {
    font-size: 18px;
    color: #777;
    margin-left: 10px;
}

.newsletter-input input {
    border: none;
    background: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
    flex: 1;
    width: 100%;
}

.newsletter-input button {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0px 20px 20px 0px;
    cursor: pointer;
    height: auto;
    transition: 0.3s ease-in-out;
}

.newsletter-input button:hover {
    background: #8c7ae6;
}

@media (max-width: 768px) {
    .newsletter-input {
        flex-direction: row;
        width: 78%;
        height: 38px;
    }
    .newsletter-container {
        margin-top: 90px;
    }
    .newsletter-input input {
        font-size: 14px;
        padding: 10px;
    }

    .newsletter-input button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .newsletter-input button { 
        width: 110px;
    }
}

@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: row;
        width: 80%;
        height: 38px;
    }
    .newsletter-container {
        margin-top: 90px;
    }
    .newsletter-input input {
        font-size: 14px;
        padding: 10px;
    }

    .newsletter-input button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .newsletter-input button { 
        width: 100px;
    }
}

/* Footer Styling */
footer {
    background-color: #fff; /* White background */
    color: #333;
    font-family: 'Poppins', sans-serif;
    padding: 50px 8%;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1); /* Subtle top shadow */
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* About Us Section */
.about-us {
    max-width: 350px;
    text-align: center;
}

.about-us h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.about-us p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #000;
}

/* Follow Us Section */
.follow-us h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.follow-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.follow-us ul li {
    margin-bottom: 8px;
}

.follow-us ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.follow-us ul li a:hover {
    color: #000;
}

/* Footer Bottom Section */
hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    width: 90px;
    height: 90px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-container img {
    width: 90px;
    height: 90px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* EV Academy Button */
.ev-academy-button {
    background-color: #6c5ce7;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 20px;
    border: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        flex-direction: column;
    }
    .location-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Video Carousel Styles */
.video-testimonials-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.video-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.video-carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: 0 40px;
}

.video-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.video-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.video-slide iframe {
  width: 100%;
  max-width: 640px;
  height: 360px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-caption {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  max-width: 600px;
  line-height: 1.5;
  text-align: center;
}

.v-carousel-btn {
  background-color: #6c5ce7;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.v-carousel-btn:hover {
  background-color: #5a4bcf;
}

.v-prev-btn { left: 0; }
.v-next-btn { right: 0; }

@media (max-width: 768px) {
  .video-slide iframe { height: 250px; }
  .video-track-container { margin: 0 30px; }
  .v-carousel-btn { width: 35px; height: 35px; font-size: 16px; }
}

/* Marquee Scrolling Styles */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: fit-content;
  animation: scrollLeft 60s linear infinite; /* Adjusted speed for 19 images */
  gap: 20px;
  padding: 10px 0;
}

.marquee-content img {
  height: 240px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}

.marquee-content img:hover {
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}