:root{
  --base-color: #F6F7FB;
  --base-variant: white;
  --text-color: #141B2D;
  --secondary-text: #74788d;
  --primary-color: #525ce5;
  --accent-color: rgba(82,92,229, 0.7);
  --btn-text-color: #fff;
  --box-shadow: rgba(126, 142, 177, 0.1);
}
.darkmode{
  --base-color: #141B2D;
  --base-variant: #1F2A40;
  --text-color: #ffffff;
  --secondary-text: #C3CAE4;
  --primary-color: #525ce5;
  --accent-color: rgba(82,92,229, 0.7);
  --btn-text-color: #fff;
  --box-shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--base-color);
    color: var(--text-color);
    text-align: center;
}


/* Importing fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* Apply font to class 'heading-font' */
.heading-font {
  font-family: 'Roboto', sans-serif;
}

/* Apply font to class 'body-font' */
.body-font {
  font-family: 'Open Sans', sans-serif;
}

/* Apply font to all paragraphs */
p {
    font-family: 'Open Sans', sans-serif;
    color: var(--secondary-text);
}

/* Apply font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}



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


/* General header styling */
.header-content {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--base-variant);
    padding: 10px 15px;
    border-bottom: 1px solid var(--base-variant);
    box-shadow: 0 2px 4px var(--box-shadow);
}

/* Left section (Drawer icon and Logo) */
.left-section {
    display: flex;
    align-items: center;
}

.drawer-icon {
    font-size: 22px;
    color: var(--text-color);
    cursor: pointer;
    margin-right: 10px;
    margin-left: 5px;
    display: none;
}

.logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

/* Nav menu styling */
.nav-menu {
    display: flex;
    gap: 20px;
    text-align: left;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    transition: color 0.3s ease;
    padding-left: 10px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

a {
  text-decoration: none;
}

.auth-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--btn-text-color);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0px 4px var(--accent-color);
    transition: all 0.2s ease;
}

.auth-buttons button:hover {
    box-shadow: 4px 4px var(--accent-color);
  transform: translateY(-5px);
}

/* Responsive design for mobile (below 480px) */
@media (max-width: 480px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        gap: 25px;
        left: 0;
        width: 100%;
        background-color: var(--base-variant);
        padding: 15px;
        box-shadow: 0 2px 4px var(--box-shadow);
    }

    .drawer-icon {
        display: block;
    }

    .logo {
        width: 100px;
        height: 50px;
    }

    .auth-buttons {
        gap: 10px;
    }

    .auth-buttons button {
        font-size: 14px;
        padding: 8px 10px;
    }
    
   .auth-buttons button span {
     display: none;
   }
}

/* Responsive design for tablets (below 768px) */
@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
    }

    .logo {
        width: 100px;
        height: 50px;
    }
    
   .drawer-icon {
     display: none;
   }

    .auth-buttons button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Responsive design for PCs (below 1024px) */
@media (max-width: 1024px) {
    .header-content {
        padding: 10px 20px;
    }
    
   .drawer-icon {
     display: none;
   }
}

/* General Styles */
.intro {
    animation: fadeIn 2s ease;
    padding: 20px;
    color: var(--text-color);
}

.intro .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro .left {
    flex: 1;
    padding: 20px;
}

.intro .right {
    flex: 1;
    padding: 20px;
}

.heading {
    font-size: 40px;
    color: var(--text-color);
    text-align: left;
}

.heading span {
    color: var(--primary-color); /* Highlight text in yellow */
}

.intro p {
    font-size: 18px;
    margin: 20px 0;
    color: var(--secondary-text);
    text-align: left;
}

.buttons {
    margin-top: 30px;
    text-align: left;
}

.get-started, .demo {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 4px var(--accent-color);
    transition: all 0.2s ease;
}

.demo {
    background-color: #354562;
    color: #F5F5F5;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 4px  #1F2A40;
    transition: all 0.2s ease;
}

.demo:hover {
    box-shadow: 4px 4px #1F2A40;
  transform: translateY(-5px);
}

.get-started:hover {
    box-shadow: 4px 4px var(--accent-color);
  transform: translateY(-5px);
}

/* Image Illustration */
.illustration {
    width: 100%;
    max-width: 550px; /* Adjust based on your image size */
    height: auto;
    margin: 20px 0;
}

/* Media Queries for Responsiveness */

/* For PCs or larger screens */
@media (min-width: 1024px) {
    .intro .content {
        flex-direction: row;
    }

    .heading {
        font-size: 45px;
        text-align: left;
    }

    .intro p {
        font-size: 20px;
        text-align: left;
    }

    .illustration {
        max-width: 550px;
        margin-bottom: 0;
    }
}

/* For tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .intro .content {
  flex-direction: row;
}

.heading {
  font-size: 30px;
  text-align: left;
}

.intro p {
  font-size: 15px;
  text-align: left;
}

.illustration {
  max-width: 550px;
  margin-bottom: 0;
}

.get-started, .demo {
  font-size: 15px;
  padding: 10px 20px;
}

}

/* For mobile phones */
@media (max-width: 767px) {
    .intro .content {
        flex-direction: column;
        text-align: center;
    }

    /* Make the image appear before heading */
    .right {
        order: -1; /* Move image above */
    }

    .illustration {
        max-width: 400px;
        margin-bottom: 0px; /* Space between image and heading */
    }

    .heading {
        font-size: 30px;
        text-align: center;
    }

    .intro p {
        font-size: 16px;
        text-align: center;
    }

    .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .get-started, .demo {
      font-size: 16px;
      padding: 12px 20px;
    }
}





.features, .testimonials, .cta, .downloads, .pricing, .faq {
    background-color: var(--base-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.features {
    align-items: center;
}

.grid-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
  margin-top: 10px;
}

.feature {
    background-color: var(--base-variant);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: fadeInUp 1s ease;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    box-shadow: 0 2px 4px var(--box-shadow);
}

.feature i {
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: var(--primary-color); /* প্রাইমারি কালার */
    background-color: rgba(82,92,229, 0.1); /* প্রাথমিক অবস্থায় হালকা ব্যাকগ্রাউন্ড */
    border: 2px solid var(--primary-color); /* প্রাথমিক অবস্থায় বর্ডার কালার */
    border-radius: 10px; /* গোলাকার বর্ডার */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.2s ease; /* ট্রানজিশন টাইম */
}

.feature:hover {
    box-shadow: 
        0px 4px 8px var(--box-shadow),
        0px 8px 16px var(--box-shadow),
        0px 16px 24px var(--box-shadow);
    transform: translateY(-7px);
    transition: all 0.3s ease;
}

.feature:hover i {
    background-color: var(--primary-color); /* হোভার অবস্থায় ব্যাকগ্রাউন্ড কালার */
    border: 2px solid var(--primary-color); /* হোভার অবস্থায় বর্ডার হিড হবে */
    color: #fff; /* হোভার অবস্থায় আইকনের কালার হবে */
}

.feature h3 {
    margin: 10px 0;
    font-size: 18px;
}

.feature p {
    font-size: 18px;
}

.download-count {
    background-color: var(--base-variant);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
    animation: fadeInUp 1s ease;
    box-shadow: 0 2px 4px var(--box-shadow);
}

.download-count p {
    color: var(--primary-color); /* প্রাইমারি কালার */
}

.download-count i {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.testimonials {
    text-align: center;
}

.testimonialss {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-content: center;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial {
    background-color: var(--base-variant);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    animation: zoomIn 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px var(--box-shadow);
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial p {
    margin: 0;
    font-size: 16px;
    color: var(--secondary-text); /* প্রাইমারি কালারের উপরে থাকা টেক্সটের রং */
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--primary-color); /* প্রাইমারি কালার */
}

.cta {
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
    color: var(--text-color); /* প্রাইমারি কালারের উপরে থাকা টেক্সটের রং */
}

.download-button button,
.cta button {
    background-color: var(--primary-color); /* প্রাইমারি কালার */
    color: var(--btn-text-color); /* প্রাইমারি কালারের উপরে থাকা টেক্সটের রং */
    border: none;
    width: 80%;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px var(--accent-color); /* প্রাইমারি কালার */
  transition: all 0.2s ease;
}

.cta button:hover,
.download-button button:hover {
    box-shadow: 4px 4px var(--accent-color); /* প্রাইমারি কালার */
  transform: translateY(-5px);
}

.downloads {
    text-align: center;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  justify-content: center;
}

.download-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-count h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.download-count p {
    font-size: 48px;
    margin: 0;
    animation: count 2s ease-in-out forwards;
}

.download-count span {
    font-size: 18px;
    margin-top: 5px;
}


/* CSS */
.footer {
  background-color: #1F2A40;
  color: #C3CAE4;
  padding: 40px 0;
  text-align: left;
  font-family: Arial, sans-serif;
  border-top: 2px solid #3A3F50;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo img {
  max-height: 50px;
  width: 150px;
  object-fit: contain;
}

.footer-links,
.footer-address,
.footer-social {
  flex: 1;
  margin: 10px;
}

.footer-links h4,
.footer-address h4,
.footer-social h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-links a,
.footer-address p {
  display: block;
  color: #C3CAE4;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a {
  display: inline-block;
  margin: 5px 10px 5px 0;
}

.footer-social i {
  width: 24px;
  height: 24px;
  color: #fff;
}

.footer-bottom {
  padding-top: 15px;
  border-top: 1px solid #3A3F50;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #A1A6B2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-address,
  .footer-social {
    margin: 0px 0;
  }

  .footer-logo img {
    max-height: 40px;
    width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    padding: 0 10px;
  }

  .footer-links h4,
  .footer-address h4,
  .footer-social h4 {
    font-size: 16px;
  }

  .footer-links a,
  .footer-address p,
  .footer-bottom p {
    font-size: 12px;
  }

  .footer-logo img {
    max-height: 30px;
    width: 150px;
  }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 85%;
    }
    
    .ccc {
      text-align: center;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .testimonial img {
        margin-bottom: 10px;
    }

    .testimonial p {
        font-size: 14px;
    }
    
   .testimonial span {
        font-weight: bold;
   }
}

@media (max-width: 480px) {
    .banner {
        max-width: 100%;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 12px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta button,
    .download-button button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .download-count h3 {
        font-size: 16px;
    }

    .download-count p {
        font-size: 36px;
    }

    .testimonial p {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing {
  background-color: var(--base-color);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}

.pricing .plans {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  justify-content: center;
}

/* General plan styles */
.plan {
  background-color: var(--base-variant);
  padding: 0 20px 20px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
  animation: fadeInUp 1s ease;
  box-shadow: 0 2px 4px var(--box-shadow);
  transition: all 0.2s ease;
}

.plan h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 0px;
  margin: 0;
}

.headplan {
  display: flex;
  text-align: center;
  justify-content: center;
  background: var(--primary-color); /* প্রাইমারি কালার */
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 0 0 20px 20px;
}

.headplan i {
  color : var(--btn-text-color);
}

.headplan h3 {
  color : var(--btn-text-color);
}

#icon {
  font-size: 20px;
  margin-right: 5px;
}

.plan .pri {
  display: flex;
  text-align: center;
  justify-content: center;
}


.plan .pri .tk {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color); /* প্রাইমারি কালার */
}

.plan p {
  margin-top: 0;
  font-size: 14px;
  color: var(--primary-color); /* প্রাইমারি কালারের উপরে থাকা টেক্সটের রং */
}



.plan li {
  list-style: none;
  text-align: left;
  margin-bottom: 10px;
}

.plan li i {
  color: var(--primary-color); /* প্রাইমারি কালার */
  margin-right: 10px;
}

.plan .price {
  font-size: 36px;
  color: var(--primary-color); /* প্রাইমারি কালার */
}

.plan button {
  width: 80%;
  background-color: var(--primary-color);
    color: var(--btn-text-color);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 4px var(--accent-color);
    transition: all 0.2s ease;
}

.plan button:hover {
  box-shadow: 4px 4px var(--accent-color);
}

.plan:hover {
  box-shadow: 
        0px 4px 8px var(--box-shadow),
        0px 8px 16px var(--box-shadow),
        0px 16px 24px var(--box-shadow);
    transform: translateY(-7px);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .plan {
    width: 85%;
  }
}


/* Scroll to Top Button */
#scrollTopBtn {
    display: none; /* By default, hide the button */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99; /* Keep it on top of other elements */
    border: none;
    outline: none;
    background-color: var(--primary-color); /* Button background color */
    color: #212631; /* Button text/icon color */
    cursor: pointer;
    padding: 10px; /* Smaller padding */
    border-radius: 50%; /* Circular shape */
    font-size: 16px;
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for smooth effect */
}

.faq {
    background-color: var(--base-color);
    color: var(--secondary-text);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
}

.faq h2 {
    color: var(--text-color);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-warp {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 10px;
justify-content: center;
}

.faq-item {
    margin-bottom: 10px;
    background-color: var(--base-variant);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--box-shadow);
}

.faq-question {
    background-color: var(--base-variant);
    color: var(--secondary-text);
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--secondary-text);
    background-color: var(--base-variant);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

#theme-switch{

  height: 50px;

  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--base-variant);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
}
#theme-switch svg{
  fill: var(--text-color);
}
#theme-switch svg:last-child{
  display: none;
}
.darkmode #theme-switch svg:first-child{
  display: none;
}
.darkmode #theme-switch svg:last-child{
  display: block;
}

.image-slider {
    overflow: hidden;
    width: 100%;
    height: 150px; /* ছবির উচ্চতা */
    background-color: transparent;
    margin: 20px auto;
}

.image-track {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

.image-track img {
    height: 100%;
    width: 150px;
    margin-right: 10px; /* ছবি গুলির মধ্যে ফাঁকা রাখতে */
}

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


#scrollTopBtn i {
    font-size: 18px; /* Size of the icon */
    transition: transform 0.3s ease; /* Smooth icon animation */
}

/* Smooth scroll animation */
html {
    scroll-behavior: smooth;
}


/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .plan {
    width: 85%;
  }
}



/* Card Container */
.card {
    width: 100%;
    max-width: 350px;
    background: var(--base-variant);
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--box-shadow);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 6px 12px var(--box-shadow);
}

/* Card Header */
.card-header {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--base-variant);
    border-bottom: 1px solid var(--box-shadow);
    color: var(--text-color);
}

/* Timestamp */
.card-header span {
    font-size: 12px;
    color: var(--secondary-text);
}

/* Card Body */
.card-body {
    padding: 0 15px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--btn-text-color);
    background: var(--primary-color);
    border-radius: 5px;
    margin-bottom: 7px;
}

/* Job Title */
.card-title {
    font-size: 16px;
    margin: 10px 0;
    color: var(--text-color);
}

/* Description */
.card-text {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--secondary-text);
}

/* Button Row */
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}

/* Amount Text */
.text-primary {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Button */
.btn {
    padding: 8px 15px;
    font-size: 14px;
    color: var(--btn-text-color);
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        max-width: 100%;
    }
}