body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo img {
  height: 36px;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.navbar-container{
    width: 100%;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* hidden by default */
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  border-bottom: 1px solid #eee;
}

.side-menu ul li a {
  display: block;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.side-menu ul li a:hover {
  background: #f5f5f5;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.swiper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .card-bd{
      height:100% !important;
  }
  
  .link {
      display: inline-grid;
      height:100%;
  }
  
  .card-bd {
      height:100% !important;
  }
  
  .card-con {
      height:100%;
  }

  .learn-more-btn {
    background-color: #db3a44;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  .learn-more-btn:hover {
    background-color: #b71c1c;
    text-decoration: none;
    color: white;
  }
  .learn-more-btn i {
    margin-left: 8px;
  }
  .card-text {
    min-height: 120px; /* Keep height consistent */
  }
  
  
.custom-footer-design {
  position: relative;
  z-index: 2; /* Ensure this content is above the triangle */
}

.custom-footer-design::before {
 content: "";
    position: absolute;
    left: -150px;
    top: -49px;
    width: 0;
    height: 0;
    border-top: 150px solid transparent;
    border-bottom: 138px solid transparent;
    border-left: 150px solid #E30613;
    z-index: -1;
}





  
  
 