
.pg{
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 90px;
}

.pgbtn{
    font-size: 1.5rem; 
    padding: 10px 20px; 
    border-radius: 12px;
}
.fixed-size {
    width: 300px; /* Set a fixed width */
    height: 300px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image maintains aspect ratio and fills the area */
}

.bg-overlay {
    
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 50px;
}

.bg-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay color */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.content h2 {
    font-weight: bold;
    color:#28a3d4;
}
.content h5 {
    
    color:#28a3d4;
}
.content p {
    font-size: 1rem;
    line-height: 1.6;
    
}

   .card-container {
        perspective: 1000px; /* Add perspective for 3D effect */
    }

    .card {
        cursor: pointer;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        /*background: linear-gradient(to bottom, #0e122b, #87CEEB, #ffffff);*/
    }

  

    .card p {
        font-weight:600;
    }

    /* Hover effect for all cards */
    .card:hover {
        transform: scale(1.05) rotateY(5deg); /* Slight scale up and tilt effect */
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, rotateY 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .unique-card {
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.unique-card:hover {
  transform: translateY(-40px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.unique-card h5 {
  color: #0d6efd;
}

.unique-card hr {
  border-top: 1px solid #ddd;
}



@media (max-width: 768px) {
  .unique-card {
    margin-bottom: 20px;
  }

 
}
     @keyframes scroll1 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 10));
        }
    }
   .logo-slider {
        height: 100px;
        overflow: hidden;
        position: relative;
    }
    
    .logo-slider .slide-track {
        display: flex;
        animation: scroll1 15s linear infinite;
        width: calc(190px * 8); /* Adjust based on total slides (4 original + 4 duplicate) */
    }
    
    .logo-slider .slide {
        flex: 0 0 190px; /* Match width of individual slides */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
  
   