     header#header {
    background-image: url("{% static 'assets/img/hero-bg.jpg' %}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
    /* New CSS for the top bar */
    .top-bar {
      background-color: #1a202c; /* Dark background color */
      color: #fff; /* White text color */
      padding: 10px 0;
      font-size: 14px;
    }

    .top-bar .container-fluid {
      display: flex;
      justify-content: space-between; /* Space out left and right content */
      align-items: center;
      max-width: 1200px; /* Adjust as needed */
      margin: 0 auto;
      padding: 0 15px; /* Add some padding on the sides */
    }

    .top-bar .contact-info {
      display: flex;
      gap: 20px; /* Space between email and time */
    }

    .top-bar .contact-info span {
      display: flex;
      align-items: center;
    }

    .top-bar .contact-info i {
      margin-right: 8px;
      color: #ffd700; /* Gold color for icons */
    }

    .top-bar .social-links a {
      color: #fff;
      margin-left: 15px;
      transition: color 0.3s ease;
      font-size: 16px;
    }

    .top-bar .social-links a:hover {
      color: #ffd700; /* Gold on hover */
    }

  

    /* Existing styles for content sections */
    .courses-section {
      padding: 20px;
      background-color: #f8f9fa; /* Light background */
      border-radius: 8px;
      text-align: center; /* Center align section */
      width: 100%; /* Ensure it takes full width */
      box-sizing: border-box; /* Include padding in width */
    }

    .courses-section h2 {
      color: #2e7d32; /* Green heading */
      margin-bottom: 15px;
    }

    .courses-content-wrapper {
      display: flex; /* Use flexbox for side-by-side layout */
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
      justify-content: center; /* Center items when wrapped */
      align-items: flex-start; /* Align items to the top */
      gap: 20px; /* Space between image and list */
    }

    .courses-image {
      flex: 1; /* Allow image to grow/shrink */
      max-width: 300px; /* Max width for the image container */
      min-width: 200px; /* Minimum width to prevent image from becoming too small */
      text-align: center;
    }

    .courses-image img {
      max-width: 100%; /* Make image responsive */
      height: auto; /* Maintain aspect ratio */
      border-radius: 8px; /* Slightly rounded corners for the image */
      box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
    }

    .courses-list {
      list-style-type: disc; /* Adds bullet points */
      padding-left: 20px; /* Spacing for bullets */
      flex: 2; /* Allow list to take more space */
      text-align: left; /* Keeps items aligned neatly */
      min-width: 300px; /* Minimum width for the list */
    }

    .courses-list li {
      padding: 5px 0;
      font-size: 14px;
    }

    

    /* Styles for the Admission Section */
    .admission-section {
      padding: 20px;
      background-color: #f9f9f9; /* Light background */
      border-radius: 12px;
      text-align: left;
      width: 100%; /* Ensure it takes full width */
      box-sizing: border-box; /* Include padding in width */
      font-family: 'Open Sans', sans-serif; /* Using Open Sans for consistency with template */
    }

    .admission-section h2 {
      color: #272c27; /* Dark heading */
      text-align: left;
      margin-bottom: 15px;
    }

    .admission-section h3, .admission-section h4, .admission-section h5 {
      color: #333;
      margin-top: 20px;
    }

    .admission-section p {
      font-size: 14px;
      line-height: 1.6;
    }

    .admission-section ul {
      list-style-type: disc; /* Bullet points */
      padding-left: 20px;
    }

    .admission-section li {
      font-size: 14px;
      margin-bottom: 5px;
    }


    .info-section {
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      width: 100%; /* Ensure it takes full width */
      box-sizing: border-box; /* Include padding in width */
      font-family: 'Open Sans', sans-serif; /* Using Open Sans for consistency with template */
      line-height: 1.6;
      text-align: center; /* Center headings */
      margin-bottom: 20px;
    }

    .info-section h2 {
      color: #2e7d32; /* Green heading */
      margin-bottom: 20px;
    }

    .info-section ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .info-section li {
      font-size: 14px;
      margin-bottom: 5px;
    }
    .btn-getstarted {
    background-color: #0056b3;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .btn-getstarted:hover {
    background-color: #004494;
    color: #fff;
  }
  .content-box {
  background: #f9f9ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
  border-left: 6px solid #007bff; /* Default orange */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 22px rgba(0,0,0,0.18);
}

.institution-img {
  max-width: 600px;
  border-radius: 15px;
  border: 3px solid #ffffff;
}

.section-heading {
  margin-top: 28px;
  font-size: 1.3rem;
  color: #007bff;
  border-bottom: 2px dashed#007bff;
  padding-bottom: 6px;
}

.sub-heading {
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: bold;
  color: #444;
}

.custom-list li {
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}

.custom-list li::before {
  content: "✔";
  color:#007bff;
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* Theme variants for other institutions if needed */
.theme-blue { border-left: 6px solid #007bff; }
.theme-green { border-left: 6px solid #007bff; }
.theme-purple { border-left: 6px solid #007bff; }
.theme-orange { border-left: 6px solid #007bff; }

  @media (max-width: 768px) {
    .btn-getstarted {
      padding: 10px 20px;
      font-size: 8px;
      width: 35%;
      text-align: center;
      margin-top: 10px;
    }
  }

    /* Responsive adjustments for the top bar */
    @media (max-width: 768px) {
      .top-bar .container-fluid {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
        gap: 10px;
      }
      .top-bar .contact-info {
        flex-direction: column;
        gap: 5px;
      }
      .top-bar .social-links {
        margin-top: 10px;
      }
    }
  .upper-footer {
    background-color: #0056b3; /* Dark green */
    padding: 15px 20px;
    font-size: 13px; /* Smaller footer text */
    color: rgb(255, 255, 255); /* White text for contrast */
    text-align: center;
    border-bottom: 1px solid #1b5e20;
  }

  .upper-footer h4 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
  }

  .upper-footer p {
    margin: 3px 0;
    color: #ffffff; /* Slightly lighter white for secondary text */
  }

.policy-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

  /* ===== Footer Copyright Styling ===== */
.copyright {
    background: linear-gradient(to right, #858484);
    color: #050505;
    font-size: 0.95rem;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    position: relative;
}
.copyright p {
    margin: 0;
    font-weight: 500;
}

.copyright span {
    font-weight: 600;
    color: #000000;  /* highlight year */
}

.copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    
    transform: translateX(-50%);
    border-radius: 2px;
}
 @media (max-width: 768px) {
      .courses-content-wrapper {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center; /* Center items when stacked */
      }
      .courses-image, .courses-list {
        max-width: 100%; /* Take full width when stacked */
        min-width: unset; /* Remove min-width constraint */
      }
    }