

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      position: relative;
      height: 250px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4); /* dark overlay */
      z-index: 1;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-text {
      position: absolute;
      z-index: 2;
      bottom: 20px;
      left: 20px;
      color: #ffffff !important;
    }

    .card-text h3 {
      font-size: 1.5rem;
      margin-bottom: 5px;
      color: #ffffff !important;
    }

    .card-text p {
      font-size: 0.9rem;
      opacity: 0.9;
      color: #ffffff !important;
    }


    
    .slider1 {
      position: relative;
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease;
    }

    .slide {
      min-width: 100%;
      min-height: 350px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 50px;
      background-size: cover;
      background-position: center;
      position: relative;
      color: #ffffff !important;
    }

    /* Dark overlay for readability */
    .slide::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 100%;
    }

    .slide-content h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 15px;
       color: #ffffff !important;
    }

    .slide-content p {
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.5;
      color: #ffffff !important;
    }

    .slide-content .btn {
      display: inline-block;
      background: #e63946;
      color: #ffffff !important;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 4px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .slide-content .btn:hover {
      background: #d62828;
    }

    /* Dots inside the slider1 */
    .dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background: #e63946;
    }



/* Dropdown button */
.dropbtn {
  background-color: #fff;
  color: #333;
  padding: 8px 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 50px;
  cursor: pointer;
  
}

/* Dropdown container */
.dropdown {
  position: fixed;
  top: 15px;
  right: 15px;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 140px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  overflow: hidden;
}

/* Each language option */
.dropdown-content a {
  color: #333;
  padding: 8px 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

