@import url('https://fonts.cdnfonts.com/css/apple-garamond');
/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.8;
}

/*union section page start*/

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/images/clginfrastructure.png') no-repeat center center / cover;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-header h4 {
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    font-size: 50px;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00ffd5;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInDown {
    animation-name: slideInDown;
}


.union .container h2{
  font-family: apple-garamond;
}
.flip-card {
      perspective: 1000px;
    }

.flip-card .card-body h5{
  font-family:apple-garamond;
}

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 250px;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 0.375rem 0.375rem 0 0;
      overflow: hidden;
    }

    .flip-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .flip-card-back {
      background: linear-gradient(to right, #3a7bd5, #3a6073);
      transform: rotateY(180deg);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: white;
      padding: 20px;
      text-align: center;
    }
.flip-card-back h4, p{
  font-family: 'Poppins', sans-serif;
}
  /*student inion election end*/

  /* student guideline start*/

  .student-guidelines-wrapper {
    max-width: 1100px;
    margin: auto;
  }
  .student-guidelines-title {
    text-align: center;
    font-size: 3rem;
    color: #004080;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px #ccc;
  }
  .student-guidelines-banner {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    object-fit: cover;
    max-height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .student-guidelines-section {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
  }
  @keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  .student-guidelines-heading {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-left: 6px solid #198754;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    font-family: 'apple garmond';
    font-weight: bold;
  }
  .student-guidelines-heading i {
    margin-right: 12px;
  }
  .student-guidelines-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .student-guidelines-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .student-guidelines-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  .student-guidelines-item i {
    font-size: 1.8rem;
    min-width: 30px;
    margin-top: 4px;
  }
  .icon-red { color: #e53935; }
  .icon-blue { color: #1e88e5; }
  .icon-orange { color: #fb8c00; }
  .icon-green { color: #43a047; }
  .icon-teal { color: #00897b; }
  .icon-pink { color: #d81b60; }
  .icon-brown { color: #6d4c41; }
  .icon-indigo { color: #3949ab; }
  .icon-purple { color: #8e24aa; }
  
  @media (max-width: 768px) {
    .student-guidelines-title {
      font-size: 2.2rem;
    }
    .student-guidelines-heading {
      font-size: 1.5rem;
    }
  }
/*student guidlines end*/

/*student aid fund start*/
.aid-fund-section {
    background: linear-gradient(to right, #e1f5fe, #ede7f6);
    padding: 60px 20px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .aid-fund-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }
  .aid-fund-text {
    flex: 1;
    min-width: 300px;
  }
  .aid-fund-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #6a1b9a;
    display: flex;
    align-items: center;
    font-family: 'Roboto';
    font-weight: bold;
  }
  .aid-fund-text h2 i {
    margin-right: 12px;
    color: #4caf50;
  }
  .aid-fund-text ul {
    list-style: none;
    padding-left: 0;
  }
  .aid-fund-text ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
  }
  .aid-fund-text ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4caf50;
  }
  .aid-fund-image {
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .aid-fund-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
  }
  
  .aid-fund-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  }
  
  .aid-fund-image:hover img {
    transform: scale(1.05);
  }
/*student aid fund end*/