/* Booking Page Styles */

    .booking-container {
        max-width: 800px;
        margin: 40px auto;
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }


.course-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.course-info h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.slot-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.slot-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slot-card.selected {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 8px;
    background: #f0f2f5;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.time-slot:hover {
    background: #e2e6ea;
}

.book-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.book-button:hover {
    background: #2980b9;
}

/* Modal Styles */
.modal {
    display: none;
    position: scroll;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-icon {
    color: #2ecc71;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.submit-button:hover {
    background-color: #555;
}


.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.about-container h2 {
    margin-top: 20px;
}

.about-container p {
    margin: 10px 0;
}


/* Media Queries */
@media (max-width: 900px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 350px;
    }
    .slot-options {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Basic styling */
  body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: scroll;
      /* background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96E6A1); */
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    color: #fff;
    position: relative;
  }

  /* Navbar styling with animation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, #2c3e50, #3498db, #2c3e50);
    background-size: 200% 100%;
    animation: gradientSlide 10s ease infinite;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  }

  .navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    position: relative;
    overflow: hidden;
  }

  .navbar .logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-100%);
    animation: slideLine 3s infinite;
  }

  .navbar .nav-links {
    display: flex;
    gap: 20px;
  }

  .navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
  }

  .navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
  }

  .navbar .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Heading with enhanced animation */
  .heading {
    text-align: center;
    margin: 40px 0;
    font-size: 2.5em;
    color: #161111;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeIn 2s ease-in forwards;
    position: relative;
  }

  .heading::before,
  .heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    animation: expandLine 2s ease-in-out infinite;
  }

  .heading::before {
    right: 100%;
    margin-right: 20px;
  }

  .heading::after {
    left: 100%;
    margin-left: 20px;
  }

  .heading .learn {
    display: inline-block;
    animation: colorChange 3s linear infinite;
    position: relative;
  }

  /* Cards section */
  .cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 1200px;
  }

  .card {
    flex: 0 1 350px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
  }

  .card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .card div {
    color: rgb(0, 0, 0);
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }

  /* Footer with animation */
  .footer {
    margin-top: auto;
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, #2c3e50, #3498db, #2c3e50);
    background-size: 200% 100%;
    animation: gradientSlide 10s ease infinite;
    color: #fff;
    position: sticky;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  }

  .footer::before {
    content: '♦';
    animation: spin 3s linear infinite;
    display: inline-block;
    margin-right: 10px;
  }

  .footer::after {
    content: '♦';
    animation: spin 3s linear infinite;
    display: inline-block;
    margin-left: 10px;
  }

  /* Animations */
  @keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  @keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  @keyframes slideLine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
  }



  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes colorChange {
    0% { color: #FF6B6B; }
    25% { color: #4ECDC4; }
    50% { color: #45B7D1; }
    75% { color: #96E6A1; }
    100% { color: #FF6B6B; }
  }

  /* Media Queries */
  @media (max-width: 900px) {
    .cards {
      flex-direction: column;
      align-items: center;
    }
    .card {
      width: 100%;
      max-width: 350px;
    }
    .heading::before,
    .heading::after {
      width: 30px;
    }
  }

/* Font and Colors */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header with Animation */
.navbar {
    background-color: #4A90E2;
    padding: 15px;
    text-align: center;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.nav-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
    transform: scale(1.1);
}

/* Booking Page Enhancements */
.booking-container {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.payment-container{
    text-align: center;
    background-color: #a85bd2;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px; 
    gap: 20px;
}
.payment-container , button {
    margin-top: 15px; /* Space above the button */
    padding: 10px 20px;
}
.pay-now {
    background-color: #28a745; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 15px 30px; /* Padding */
    font-size: 18px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transition for smooth effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.pay-now:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.pay-now:active {
    transform: translateY(1px); /* Slight depression on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
}

.slot-card {
    background-color: #4A90E2;
    color: #101213;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slot-card.selected {
    background-color: #d16a80;
    transform: scale(1.05);
}

.time-slot {
    background-color: #fff;
    color: #080c08;
    margin: 5px;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
}

.time-slot.selected {
    background-color: #319b66;
    color: #fff;
    transform: scale(1.1);
}



