 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Poppins', sans-serif;
        color: #333;
        background-color: #f8f9fa;
      }

      .main {
        width: 100%;
        background-color: transparent;
      }

      /* Navbar Styling */
      .navbar {
        width: 100%;
        padding: 20px 0;
      }

      .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .navbar-nav {
        display: flex;
        justify-content: center;
        flex-grow: 1;
      }

      .navbar-nav .nav-item {
        margin: 0 15px;
      }

      /* Carousel Styling */
      #carouselExample {
        margin: 40px auto 0 auto;
        max-width: 80%;
      }

      .carousel-inner {
        text-align: center;
      }

      .carousel-item img {
        width: 70%;
        margin: 0 auto;
        border-radius: 12px;
      }

      /* Cards Grid Styling */
      .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 40px;
        padding: 0 5%;
        gap: 20px;
      }

      .grid .g-col-4 {
        flex: 0 0 32%;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
      }

      .grid .g-col-4:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }

      .grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-bottom: 4px solid purple;
      }

      .grid .g-col-4 p {
        color: #333;
        padding: 10px 15px;
        font-weight: 500;
        text-align: center;
      }
      @media (max-width: 768px) {
        .grid {
          padding: 0 10px;
          justify-content: center;
        }
      
        .grid .g-col-4 {
          flex: 0 0 100%;
          max-width: 100%;
        }
      
        .grid img {
          height: 180px;
        }
      
        .grid .g-col-4 p {
          font-size: 16px;
          padding: 10px;
        }
      }
      
      /* Footer Styling */
      footer {
        background-color: #343a40;
        color: white;
        padding: 20px 0;
        text-align: center;
      }

      footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
      }

      footer a:hover {
        text-decoration: underline;
      }