
/* Global Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
header {
    text-align: center;
    padding: 50px;
    background: url('../Assests/footer-background.png') center no-repeat;
    background-size: cover;
    color: white;
}
.buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.buttons button {
    background-color: #001f54;
    color: white;
    padding: 15px 30px;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
}
.buttons button:hover {
    background-color: #002f75;
}


/*---------------------Tuition feee Section UG PG DBA CARDS--------------------------*/
.tuition-fee-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
  }
  
  .vmh-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Added transform for hover effect */
    position: relative;
    overflow: hidden;
  }
  
  .vmh-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px); /* Hover animation to move the card up */
  }
  
  .vmh-header {
    background-color: #000238;
    color: white;
    font-weight: bold;
    padding: 10px;
    margin: -20px -20px 15px -20px; /* Cover to the top, extending outside the card */
    display: inline-block;
    text-align: left;
    position: relative;
    animation: slideInRight 0.6s ease-in-out; /* Animation for header */
  }
  p, .vmh-header p {
    text-align: left !important;
  }
  .vmh-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .vmh-underline {
    height: 3px;
    width: 50px;
    animation: fadeInUp 1s ease; /* Underline animation */
  }
  
  .green-underline {
    background-color: #890019; /* Green color */
  }
  
  .orange-underline {
    background-color: #ff7b00; /* Orange color */
  }
  
  .special-card {
    background: linear-gradient(135deg, #030889, #000238);
    color: white;
  }
  
  .special-card .vmh-header,
  .special-card p {
    color: white;
  }
  
  /* Animations */
  @keyframes slideInRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* ------------------- Responsive Media Queries ------------------- */

/* For tablet devices (768px and below) */
@media (max-width: 768px) {
    .tuition-fee-section {
        flex-direction: column; /* Stack cards vertically */
        gap: 15px; /* Adjust spacing between cards */
    }

    .vmh-card {
        width: 100%; /* Full-width cards */
    }
}

/* For mobile devices (480px and below) */
@media (max-width: 480px) {
    .vmh-header {
        font-size: 12px; /* Smaller header text */
        padding: 8px; /* Reduce padding */
    }

    .vmh-card {
        padding: 15px; /* Reduce card padding */
        font-size: 14px; /* Reduce text size */
    }

    .vmh-underline {
        width: 40px; /* Smaller underline */
    }

    .tuition-fee-section {
        padding: 10px; /* Reduce overall padding */
    }
}

  /*----------------------------------Payment method, bank details, note section ---------------------*/

  
/* Unique Section Styling */
.info-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 1.5s forwards; /* Fade-in animation for the entire section */
}

/* Section Header */
.info-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    animation: slideInDown 1s forwards 0.5s; /* Slide-in from the top with delay */
}

.info-section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000238e0;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

/* 50% Width Underline for Heading */
.info-section-header h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #000238; /* Blue underline */
    margin: 10px auto 0; /* Center underline with space from heading */
}

/* Cards Section */
.info-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between cards */
    margin-top: 20px;
       flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Individual Cards */
.info-card {
     flex: 1 1 calc(33.33% - 20px); /* Equal width cards with spacing */
    width: 30%;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px); /* Initial state before animation */
    animation: slideInUp 1s forwards 0.7s; /* Slide-in from bottom with delay */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
    border-radius: 0; /* Remove border radius */
}

/* Hover effect on cards */
.info-card:hover {
    transform: translateY(-10px); /* Lift the card slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Specific Gradient Backgrounds */
.info-card1 {
    background: linear-gradient(135deg, #000238, #0074d9); /* Updated Blue Gradient */
}

.info-card2 {
    background-color: #ffffff; /* White Background */
    color: #333; /* Dark text for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional for white card */
}

.info-card3 {
    background: linear-gradient(135deg, #ff7b00, #ff9800); /* Updated Orange Gradient */
}

/* Icon and Heading Styling */
.info-card-header {
    display: flex;
    align-items: center; /* Align icon and heading side by side */
    margin-bottom: 15px;
}

.info-card-icon {
    font-size: 30px; /* Adjust icon size */
    margin-right: 10px; /* Space between icon and heading */
    color: #fff; /* Icon color for blue and orange cards */
}

.info-card2 .info-card-icon {
    color: #333; /* Dark color for icon on the white card */
}

.info-card-heading {
    font-size: 24px;
    font-weight: 600;
}

/* Card Content */
.info-card-content {
    font-size: 16px;
    line-height: 1.5;
}

/* Animations */

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide-in from the top */
@keyframes slideInDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide-in from the bottom */
@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .info-card {
        flex: 1 1 calc(50% - 20px); /* Two cards per row */
    }

    .info-section-header h2 {
        font-size: 28px; /* Adjust font size */
    }

    .info-card-content {
        font-size: 14px; /* Smaller font size for content */
    }
}

/* Small Screens (Mobile Phones) */
@media (max-width: 480px) {
    .info-card {
        flex: 1 1 100%; /* Full-width cards */
        margin-bottom: 20px; /* Space between cards */
    }

    .info-section-header h2 {
        font-size: 24px; /* Smaller font size */
    }

    .info-card-header {
        flex-direction: column; /* Stack icon and heading */
        align-items: center;
    }

    .info-card-icon {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 10px; /* Add space below icon */
    }

    .info-card-heading {
        text-align: center; /* Center align heading */
    }
}