body {
    background-color: #f0f0f0;
    font-family:sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  
  header {
    background-color: rgb(100, 3, 60);
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  .form-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px 30px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 50px;
  }
  
  .form-box h2 {
    text-align: center;
    color: rgb(124, 14, 78);
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .btn {
    background-color: rgb(100, 3, 60);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
  }
  
  .btn:hover {
    background-color: #990066;
  }
  
  footer {
    margin-top: 30px;
    text-align: center;
    color: #555;
  }

  * Center the main title and paragraph */
h1, p {
    text-align: center;
}

/* Container for all the cards */
.explore-container {
    display: flex;
    flex-wrap: wrap;           /* makes items move to new line if too many */
    justify-content: center;   /* centers them */
    gap: 20px;                 /* space between each card */
    margin-top: 20px;
}

/* Each individual card */
.explore-card {
    width: 200px;              /* fixed width */
    text-align: center;
    border: 1px solid #ccc;    /* light border */
    border-radius: 10px;
    padding: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Card hover effect */
.explore-card:hover {
    transform: translateY(-5px);
}

/* Images inside the cards */
.explore-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 10px;
}

/* Text link styling */
.explore-card p {
    margin-top: 50px;
    color: #007bff;
    font-weight: bold;
}

.explore-card a {
    text-decoration: none;
}

.explore-card a:hover p {
    text-decoration: underline;
}

.image-section {
  width: 90%;
  max-width: 500px;    /* limits width for large screens */
  margin: 0 auto;      /* centers section on page */
  text-align: contain;  /* centers text */
  padding: 20px;
}

.image-section img {
  width: 90%;         /* makes image fit page width */
  height: 355px;        /* keeps aspect ratio */
  border-radius: 10px; /* optional: rounded edges */
  object-fit: cover;
  margin-bottom: 15px; /* space below image */
}

.image-section .text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
@media (max-width: 500px) {
  .image-section img {
    height: 200px;
  }
}
/* Header Background with Blur */
.hero-header {
  position: relative;
  width: 100%;
  height: 350px;
  background: url("{{ url_for('static', filename='IMG_20251101_093834_536.jpg') }}") no-repeat center center/cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Blur + dark overlay */
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* School logo positioning */
.logo {
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 2;
}

.logo img {
  height: 50px;
  max-width: 120px;
  width: 100%
}
@media (min-with: 300px) {
  .logo img {
    max-width: 100px;
  }
}
@media (min-width: 1024px) {
  .logo img {
    max-width: 100px;
  }
}

/* Overlay text styling */
.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color:white;
  padding: 0 50px;
}

.overlay h1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 18px;
  font-weight: 400;
}

/* Responsive design for small screens */
@media (max-width: 600px) {
  .hero-header {
    height: 250px;
  }

  .logo img {
    height: 90px;
  }

  .overlay h1 {
    font-size: 20px;
  }

  .overlay p {
    font-size: 16px;
  }
}

.footer {
  background-color: rgb(100, 3, 60);;    /* dark background */
  color: #fff;               /* white text */
  width: 100%;               /* make it stretch across the full page width */
  padding: 30px 0;           /* add some top and bottom space */
  text-align: center;        /* center everything horizontally */
  position: relative;        /* keep it normal unless you want it fixed */
  left: 0;
  bottom: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 35px;
  height: auto;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.footer-writing {
  position: absolute;
  top: 15px;
  left: 75px;
  z-index: 2;
}

.footer-links a {
  color: #ccc;
  margin: 0 12px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.button-container {
  width: 100%;
}

.big-btn {
  width: 100%;              /* full width across the page */
  padding: 70px;            /* large height */
  font-size: 20px;          /* bigger text */
  border: none;
  background:  rgb(184, 172, 172);      /* button color */
  color: white;
  cursor: pointer;
  display: block;           /* forces each button to be on its own row */
  margin-bottom: 10px;      /* space between buttons */
  border-radius: 8px;       /* rounded edges */
  transition: 0.3s;
}

.big-btn:hover {
  background:  rgb(173, 131, 156);      /* darker on hover */
}
a{
  text-decoration: none;
  
}





.profile-box {
  background: white;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.profile-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.profile-field {
  margin: 5px 0;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background: #a30280;
  color: white;
}

h3 {
  margin-top: 40px;
}

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f4f4f4;
}

.profile-box {
  background: white;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.profile-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.profile-field {
  margin: 5px 0;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background: rgb(100, 3, 60);
  color: white;
}

h3 {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none; /* hide hamburger */
  }
}


  .sidebar li {
color:white;
font-size: 30px;
padding: 30px;
border-bottom: 1px solid gray;
text-align:center ;
  }

  .apply {
    background-color: rgb(148, 141, 141);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 20%;
    margin-top: 15px;
    font-size: 16px;
  }
  .apply:hover {
    background-color: #990066;
  }
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }

  .container {
    position: adsolute;
    width: 250px;
    height:100%;
    background-color: rgb(100, 3, 60);
    z-index: 1;
    transition: 0.5s ease;
    transform: translateX(0);
  }
  .container .head{
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
  
  }
  ul{
    width: 100%;
    list-style: none;
  }
  ul li{
    display: block;
    width: 100%;
  }
  ul li a{
    color: white;
    padding:15px 10px;
    text-decoration: none;
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
  }
  ul li a l{
    width: 70px;
    font-size: 25px;
    text-align: center;
  }
  ul li:hover a{
    background-color: #ec6dd1;
    letter-spacing: 5px;
  }
  .menu-icon {
    position:fixed;
    top:15px;
    left: 15px;
    font-size: 28px;
    text-decoration: none;
    color:#990066;
    z-index: 1000;
  }