* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background 0.5s ease;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* HEADER */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: #fff;
  }
  .header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A3C8B;
    text-transform: uppercase;
  }
  .logo {
    width: 80px;
    height: 80px;
  }
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* MAIN WRAPPER */
  .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
  }
  
  /* DECORATIVE ELEMENT */
  .decorative {
    width: 100%;
    height: 40px;
    background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 10px 10px;
    margin: 20px 0;
  }
  
  /* BANNER SECTION */
  .banner {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
  }
  /* Wave lines behind the banner */
  .banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url("wave.png") no-repeat center/contain;
    opacity: 1;
    z-index: -1;
  }
  /* Dotted corner element behind the banner (using dot.png) */
  .banner::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100px;
    height: 100px;
    background: url("dot.png") no-repeat center/contain;
    opacity: 1;
    z-index: -1;
  }
  
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1; /* Content appears above background elements */
  }
  .left-col, .right-col {
    flex: 1;
  }
  /* NEW SEPARATOR: Dot image placed between left & right columns */
  .separator {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .separator img {
    width: 250px; /* Adjust width as needed */
    height: 250px;
    opacity: 2.5;
  }
  
  /* LEFT COLUMN */
  .yellow-banner {
    background-color: #FFEA61;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .yellow-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #FFEA61;
  }
  .dates {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #1A3C8B;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .dates img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .date-lines p {
    margin: 2px 0;
  }
  .admission-container {
    background: #E91E63;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    margin: 0 auto 20px;
  }
  .admission-container span {
    color: #FFEB3B;
    margin-left: 10px;
  }
  /* Courses in one line */
  .courses-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
  }
  .course-box {
    background: #1A3C8B;
    color: #fff;
    /* Square dimensions */
    width: 140px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  .course-box:hover {
    transform: scale(1.05);
  }
  
  /* Enroll Now Button */
  .enroll-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .enroll-btn {
    display: inline-flex;
    align-items: center;
    background-color: #4CAF50;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
  }
  .enroll-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
  }
  .enroll-btn::before {
    content: "";
    position: absolute;
    left: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: -1;
  }
  
  /* RIGHT COLUMN */
  .right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .teacher-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1A3C8B;
    margin-bottom: 0;
  }
  .teacher-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% center;
  }
  .teacher-info {
    margin-top: 5px;
    text-align: center;
    width: 100%;
  }
  .teacher-name {
    background: #b1265f;
    color: #fff;
    padding: 8px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 4px;
    display: block;
    margin: 0 auto 6px;
    text-align: center;
    width: fit-content;
  }
  .teacher-phone {
    background: #d9b863;
    color: #000;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 6px;
  }
  .teacher-phone img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
  }
  
  /* Removed blue dotted wave element */
  
  /* FOOTER */
  footer.footer {
    background: #e0e0e0;
    border-top: 2px solid #ccc;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
  }
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .visit-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visit-icon img {
    width: 25px;
    height: 25px;
  }
  .visit-content {
    text-align: left;
  }
  .visit-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #000;
  }
  .visit-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
  }
  .visit-content ul li {
    margin-bottom: 3px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .teacher-pic {
      width: 200px;
      height: 200px;
    }
    .banner-content {
      flex-direction: column;
    }
    .footer-content {
      flex-direction: column;
    }
    .dates {
      display: block;
      text-align: center;
    }
    .courses-container {
      display: block;
      text-align: center;
    }
    .course-box {
      display: inline-block;
      width: 49%;
      margin-bottom: 10px;
      padding: 12px;
    }
  }


