/* Courses Section */
.course {
    padding: 20px 0;
  }
  
  .courses {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
  }
  
  .course img {
    width: 300px;
    height: auto;
  }
  
  .course-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .course-details h1 {
    color: #800080;
    margin-bottom: 10px;
  }
  
  .course-details p {
    margin: 5px 0;
  }
  
  .addCart {
    background-color: #800080;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .addCart:hover {
    background-color: #5e005e;
  }
  
  /* Testimonials */
  .testimonial-container {
    background-color: #800080;
    padding: 40px 0;
    color: #fff;
    text-align: center;
  }
  
  .testimonial {
    margin: 20px;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: inline-block;
    width: calc(25% - 40px);
  }
  
  .testimonial p {
    margin: 10px 0;
  }
  
  /* Footer */
  .footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
  }
  
  .footer h3 {
    margin-bottom: 20px;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer p, .footer ul {
    margin: 0;
  }
  
  .copy {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #495057;
    margin-top: 20px;
    font-size: 14px;
  }
  
  .copi {
    text-align: center;
    font-size: 12px;
    margin-top: -10px;
    color: #ccc;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .courses {
        flex-direction: column;
        align-items: center;
    }
  
    .course img {
        width: 100%;
        height: auto;
    }
  
    .testimonial {
        width: calc(50% - 40px);
    }
  }
  
  @media (max-width: 576px) {
    .navbar-brand span {
        font-size: 12px;
    }
  
    .testimonial {
        width: calc(100% - 40px);
    }
    .pdf-container {
      width: fit-content;
    }
  }
  
  
  /* General Styling */
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Courses Section */
  .course {
    padding: 40px 0;
    background-color: #f8f9fa;
  }
  
  .courses {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
  }
  
  .course img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: cover;
  }
  
  .course-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .course-details h1 {
    color: #800080;
    margin-bottom: 15px;
  }
  
  .course-details p {
    margin: 5px 0;
    font-size: 16px;
  }
  
  .addCart {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .addCart:hover {
    background-color: #333;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .courses {
        flex-direction: column;
        align-items: center;
    }
  
    .course img {
        width: 100%;
        height: auto;
    }
  }
  
  
  /*ismein marque rolling ka add hai*/
  .custom-footer {
    background-color: #dc2626; /* Bootstrap's bg-danger equivalent */
    color: white;
    padding: 0.5rem 0; /* Equivalent to py-2 */
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Equivalent to gap-2 */
    max-width: 100%;
    padding: 0 1rem; /* Padding for content */
  }
  
  .scrolling-text-wrapper {
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
  }
  
  .scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 12s linear infinite;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .scrolling-text-wrapper {
      width: 100%;
    }
  }
  /*about us new */
  .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  .visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .content {
    text-align: center;
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .content h4 {
    margin: 0;
  }
  .content h2 {
    color: #800080;
    margin: 20px 0;
  }
  .content p {
    color: black;
    line-height: 1.6;
    margin: 10px 0;
  }
  .content p b {
    color: #333;
  }
  @media (max-width: 768px) {
    .wrapper {
        padding: 10px;
    }
    .content {
        padding: 15px;
    }
  }
  @media (max-width: 564px) {
    .content h2 {
      font-size: 18px;
    }
  }
  /*course wala hai*/
  .opener {
    padding: 1rem; /* Equivalent to p-4 */
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .batter {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 column by default */
    gap: 1rem; /* Equivalent to gap-4 */
  }
  
  @media (min-width: 768px) {
    .batter {
      grid-template-columns: repeat(3, 1fr); /* 2 columns for md screens and above */
    }
  }
  @media (min-width: 564px) {
    .batter {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for md screens and above */
    }
  }
  
  @media (min-width: 1024px) {
    .batter {
      grid-template-columns: repeat(4, 1fr); /* 3 columns for lg screens and above */
    }
  }
  
  .baller {
    background-color: white;
    border-radius: 0.5rem; /* Equivalent to rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Equivalent to shadow-md */
    overflow: hidden;
  }
  
  .dark .baller {
    background-color: #2d2d2d; /* Equivalent to dark:bg-zinc-800 */
  }
  
  .virat {
    padding: 1rem; /* Equivalent to p-4 */
  }
  
  .w-full {
    width: 100%;
  }
  
  .h-48 {
    height: 12rem; /* Equivalent to h-48 */
  }
  
  .object-cover {
    object-fit: cover;
  }
  
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem; /* Equivalent to mb-2 */
  }
  
  .w-5 {
    width: 1.25rem; /* Equivalent to w-5 */
  }
  
  .h-5 {
    height: 1.25rem; /* Equivalent to h-5 */
  }
  
  .mr-2 {
    margin-right: 0.5rem; /* Equivalent to mr-2 */
  }
  
  .text-sm {
    font-size: 0.875rem; /* Equivalent to text-sm */
  }
  
  .font-medium {
    font-weight: 500; /* Equivalent to font-medium */
  }
  
  .text-lg {
    font-size: 1.125rem; /* Equivalent to text-lg */
  }
  
  .font-semibold {
    font-weight: 600; /* Equivalent to font-semibold */
  }
  
  .text-zinc-600 {
    color: #525252; /* Equivalent to text-zinc-600 */
  }
  
  .dark .text-zinc-400 {
    color: #a3a3a3; /* Equivalent to dark:text-zinc-400 */
  }
  
  .text-yellow-500 {
    color: #f59e0b; /* Equivalent to text-yellow-500 */
  }
  
  .w-4 {
    width: 1rem; /* Equivalent to w-4 */
  }
  
  .h-4 {
    height: 1rem; /* Equivalent to h-4 */
  }
  
  .fill-current {
    fill: currentColor;
  }
  