
/* style.css */
body {
  font-family: 'Poppins', sans-serif;
}

h1, h2 {
  font-weight: bold;
}

.hero {
  height: 100vh;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}

.navbar .nav-link {
  font-weight: 500;
  margin-left: 15px;
   color:#fff;
font-weight: bold;
}

footer {
  font-size: 14px;
}

textarea {
  resize: none;
}
.about-hero {
  background-position: center;
  background-attachment: fixed;
}

h3 {
  color: #003366;
  font-weight: bold;
}

ul li {
  margin-bottom: 10px;
}

.animate__animated {
  animation-duration: 1.2s;
}
/* style.css */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    background: url('hero-about.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

/* About Content */
.about-content img {
    border-radius: 10px;
}

/* Vision & Mission */
.vision-mission .card {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.why-choose-us i {
    color: #007bff;
}

/* Contact Section */
.contact-section {
    background: #003366;
}

.courses-hero {
  background-position: center;
  background-attachment: fixed;
}

.card-title {
  color: #fff;
  font-weight: bold;
}

.card-text {
  min-height: 120px;
}

footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

footer ul li {
  margin-bottom: 8px;
}

.social-links a i {
  font-size: 20px;
}
#hero-section {
  background-image: url('images/Fb-Cover11.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-repeat: no-repeat;
}
.hero-section {
    background: url('images/your-header-image.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0; /* You can adjust height */
    color: white; /* Text color over image */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* Optional: better text readability */
}
/* CSS for About Section with Light Grey Background, Border, and Shadow */

#about {
    background-color: #f5f5f5; /* Light grey background */
    border: 1px solid #000; /* Light border */
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
    padding: 40px 20px;
    margin: 30px auto;
    border-radius: 8px; /* Slightly rounded corners */
    max-width: 1200px;
}

.about-content {
  border: 1px solid #ddd; /* Light grey border */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Softer but more visible shadow */
  border-radius: 8px; /* Smooth rounded corners */
}


#about h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: justify;
}

#about p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #about {
        padding: 30px 15px;
    }

    #about h2 {
        font-size: 1.5rem;
    }

    #about p {
        font-size: 0.95rem;
    }
}
.top-bar {
  min-height: 40px;
  background-color: #000000;  /* Matches .bg-light */
}
.top-bar a {
  color: #000;             /* Ensures text is dark (same as .text-dark) */
  text-decoration: none;
}
.top-bar i {
  font-size: 1.2rem;          /* Medium-sized icons */
}
/* Styling for the whole courses section */
.courses-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  background-color: #f9f9f9;
}

/* Styling for each individual course card */
#course {
  background: #ffffff;
  border: 2px solid #000; /* 1px border */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* subtle shadow */
  border-radius: 8px;
  padding: 20px;
  width: 300px; /* fixed width for desktop */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Hover effect for better interaction */
#course:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #course {
    width: 100%; /* full width on tablets and mobiles */
  }
}
<style>
.why-choose-section {
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background-color: #fff;
  padding: 40px 20px;
}

.why-choose-box {
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.why-choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.why-choose-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #003366; /* Dark blue shade */
}

.why-choose-box p {
  font-size: 15px;
  color: #555;
}
.why-choose-us {
    border: 1px solid #ccc; /* 1px border */
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); /* subtle shadow */
    padding: 10px;
    margin: 20px auto;
    border-radius: 8px; /* optional: for rounded corners */
    max-width: 800px; /* optional: to control width */
    background-color: #fff; /* optional: background */
}
/* Vertical Carousel Styles */
.vertical-carousel .carousel-inner {
  display: flex;
  flex-direction: column;
  height: 250px; /* Adjust as needed */
  overflow: hidden;
}

.vertical-carousel .carousel-item {
  flex: 0 0 100%;
  transition: transform 0.6s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  background-color: #333741;; /* Dark background */
  color: #ffffff;            /* White text for contrast */
  padding: 10px;
border:1px #000;
  border-radius: 5px;
}

  .navbar-custom {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    position: sticky;
    top: 0;
    z-index: 1030;
  }

  .navbar-left {
    background-color: #f8eee8; /* baby pink */
    display: flex;
    align-items: center;
    padding: 10px 20px;
    width: 35%;
    justify-content: space-between;
  }

  .navbar-left img {
    height: 100px;
    width: 165px;
    background-color: #f8eee8;
  }

  .navbar-separator {
    width: 30px;
    background-color: white;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-right {
    background-color: #0d6efd; /* Bootstrap blue */
    width: 70%;
    padding: 10px 20px;
  }

  .navbar-right .nav-link {
    color: white;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
  }

  @media (max-width: 991px) {
    .navbar-custom {
      flex-direction: column;
    }

    .navbar-left, .navbar-right {
      width: 100%;
      justify-content: center;
    }

    .navbar-separator {
      display: none;
    }
  }
 .navbar-left {
    background: linear-gradient(135deg, #fff, #fff); /* Soft gradient pink */
    display: flex;
    align-items: center;
    padding: 12px 25px;
    width: 30%;
    justify-content: flex-start;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .navbar-left img {
    height: 90px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-right: 15px;
    background-color: #fff;
    padding: 5px;
  }

  .navbar-left .brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #c0392b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1.2;
  }

  .navbar-left .brand-sub {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    letter-spacing: 1px;
  }