/* Message Container Styles */
.message-container {
    margin: 20px 0;
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 5px;
}

.alert-success {
    font-size: 16px;
    font-weight: bold;
}



/* Animations */
@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Prevent horizontal scroll always */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Discount Banner Styles */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;
  text-align: center;
}

.announcement-banner.active {
  visibility: visible;
  opacity: 1;
}

.announcement-content {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.announcement-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}

.highlight {
  color: #ffc107;
  font-weight: bold;
}

.course-btn {
  background-color: #ffc107;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  color: black;
  cursor: pointer;
  transition: background 0.3s ease;
}

.course-btn:hover {
  background-color: #e0a800;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Box Styling */
.box {
    border: 1px solid white;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    color: #000000;
    font-size: 4vw;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .box {
        font-size: 5vw;
    }
}

@media (max-width: 768px) {
    .box {
        font-size: 6vw;
    }
}

@media (max-width: 480px) {
    .box {
        font-size: 8vw;
    }
}

/* General Body Styles */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Navbar Styling */
.navbar {
    background-color: #000000 !important; /* Set navbar background to black */
}

.navbar-brand {
    color: #ffffff !important;
    font-size: 2rem;
}

.navbar-toggler {
    border-color: #ffffff;
    background-color: #000000;
}

.navbar-nav .nav-link {
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    background-color: #ffffff;
    color: #000 !important;
    border-radius: 6px;
    padding: 5px 5px;
}

/* Primary Button Styling */
.btn-primary {
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #333333;
    transform: scale(1.05);
}

/* Footer Styling */
footer {
    background-color: #000000;
    color: #ffffff;
}

footer a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: #f1c40f;
}

footer ul li {
    margin-right: 15px;
}

.btn-warning:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
}

/* Course Button Styling */
.course-btn {
    width: auto;
    background-color: #fff;
    border: solid #fbfafa;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.course-btn img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.course-btn:hover {
    background-color: #faf8f8;
}

.course-btn:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Styles */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

.hover-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* Key Benefits Section */
.key-benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.key-benefits-column {
    display: flex;
    justify-content: space-around;
    flex-basis: 48%;
    margin: 10px 0;
}

.benefit-item {
    text-align: center;
    width: 45%;
    padding: 15px;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.benefit-item:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
}

.benefit-item::before {
    content: "★";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 22px;
    color: gold;
}

.benefit-image {
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease-in-out;
}

.benefit-image:hover {
    transform: scale(1.1);
}


.early-bird {
    font-size: 1.2rem;
    font-weight: bold;
    color: red;
}

.discount {
    font-size: 1.5rem;
    font-weight: bold;
    color: green;
    animation: fadeIn 1s infinite alternate;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .benefit-item {
        width: 100%;
    }
}
.bg-dark {
    background-color: #111 !important;
}
.btn-outline-light:hover {
    background-color: white;
    color: black;
    transition: all 0.3s ease-in-out;
}
.course-btn-black {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.course-btn-black:hover {
    background-color: #222;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
}
.course-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transform: scale(1);
}

.course-card:hover {
    transform: scale(1.05); /* Slight pop effect */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    z-index: 2;
}
@media (max-width: 576px) {
  #why-us .p-4 {
    padding: 1.2rem 1rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
    .box strong {
        font-size: 1.2rem;
    }
    .display-6 {
        font-size: 1.75rem;
    }
    .lead {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
  }
}
.key-benefit-box {
  background-color: #ffffff;
  color: #000000;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.key-benefit-box:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.thought-box {
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    border-left: 5px solid #007bff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.thought-box:hover {
    transform: translateY(-5px) scale(1.03);
}
.commerce-section img:hover {
    transform: scale(1.05);
}
.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.counter {
    font-family: 'Poppins', sans-serif;
}
 
/* bcom 1,2,3 css */
.subject-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}
.subject-card:hover {
    transform: perspective(800px) translateY(-10px) scale(1.03) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
}
a img:hover {
  transform: scale(1.2);
  transition: 0.3s ease;
}

  .review-box {
    background: linear-gradient(to bottom right, #121212, #1e1e1e);
    border: 1px solid #444;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .review-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  .review-box small {
    color: #cccccc !important;
  }

