/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(360deg, transparent 5%, #FFEFD5 80%), url('../IMAGES/background.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
	width: 100%;
	overflow-x: hidden; /* Prevents horizontal scrolling */
}

.navbar {
  position: relative; /* Needed for positioning the pseudo-element */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 1rem 2rem;
  
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;      /* Adjust this value to set the length of the line */
  border-bottom: 1px solid rgb(131 112 112 / 40%);
  max-width: 100%; /* Ensures the underline doesn't extend */
}

.navbar .logo {
  color: #666;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin-left: 1.5rem;
}

.navbar .nav-links a {
  color: #666;
  text-decoration: none;
  font-size: 1.0rem;
  transition: color 0.3s;
}
/* Hide menu items initially */
.dropdown {
  position: relative; /* so .pop-menu is positioned relative to this */
}

.pop-menu {
  position: absolute;
  top: 100%;   /* directly below the "PDFs" link */
  left: 0;     /* align left edge */
  margin-top: 6px; /* small gap under the link */
  z-index: 9999;
}

.pop-menu li {
  transform: scale(0);
  transition: all 0.3s ease;
  margin-top: 8px;
}

.pop-menu li a {
  display: block;
  padding: 10px 16px;
  background: linear-gradient(360deg, #FFDAB9, #FFE4B5);
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.pop-menu li a:hover {
  background: linear-gradient(360deg, #FFDAB9, #FFE4B5);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Active state = items pop out one by one */
.dropdown.active .pop-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown.active .pop-menu li {
  transform: scale(1);
}

.dropdown.active .pop-menu li:nth-child(1) { transition-delay: 0.1s; }
.dropdown.active .pop-menu li:nth-child(2) { transition-delay: 0.2s; }
.dropdown.active .pop-menu li:nth-child(3) { transition-delay: 0.3s; }

.breadcrumb-title {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px;
  margin:0;
}

.breadcrumb-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #333;
  text-decoration: none;
}

.breadcrumb-link.active {
  font-weight: bold;
  color: green;
  pointer-events: none;
  cursor: default;
}

.greater-sign {
  margin: 0 10px;
  color: 
}
.flag {
	height: 60px; /* Adjust height as needed */
	width: auto;
	align-items: center;
	padding:20px;
	margin-left:1.5rem
}
.flag img {
	height: 60px; /* Adjust height as needed */
	width: auto;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
.menu-button {
	font-size: 1.2rem;
    transition: 0.3s;
	color: #666;
}
.sidebar-logo {
    text-align: center;
    margin: 20px 0;
}

.sidebar-logo img {
    max-width: 120px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hidden */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding-top: 20px;
    z-index: 1000;
}

.sidebar.active {
    right: 0; /* Slide in */
}

.sidebar .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 20px; /* Move it inward */
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
    text-align: left;
}

.sidebar ul li a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    display: block;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.overlay.active {
    display: block;
}
.logo img {
  height: 60px; /* Adjust height as needed */
  width: auto;
}
.info-section {
    background: rgba(255, 255, 255, 0.0); /* White with 60% transparency */
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.info-section h2 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
	font-style: italic;
}
.payment-section {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

.payment-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.payment-section h2 {
  margin-bottom: 20px;
}
.payment-section form {
  margin: 40px 0;
}
.payment-section input[type="number"] {
  padding: 10px;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.payment-section input[type="submit"] {
  background-color: #0077cc;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.payment-section input[type="submit"]:hover {
  background-color: #005fa3;
}
.payment-note {
  font-size: 0.9rem;
  color: #555;
}
.payment-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.payment-logo {
  max-height: 60px;
  margin-bottom:10px;
}

hr {
    border: none; /* Removes default border */
    height: 1px; /* Adjust thickness */
    background-color: #CCC; /* Dark gray color */
    width: 95%; /* Controls width */
}

/* Footer Styles */
.footer {
    position: relative; /* Required for absolute positioning of pseudo-element */
    background-color: rgba(255, 255, 255, 0.4);
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
	margin-top: 100px;
    /* Remove the default border */
}

.footer::before {
    content: "";
    position: absolute;
    top: 0; /* Position at the top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Adjust this value to change the length */
    border-top: 1px solid rgb(131 112 112 / 40%);
	color: #666;
}
/* Social Links */
.footer a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #ffcc00; /* Yellow highlight on hover */
}
.Edusite {
    display: flex;
    flex-direction: column;
    align-items: center;
	font-size: 20px;
}
.footer .studystream-info p { 
    font-size: 1.0rem !important; 
}

.studystream-info { 
    font-size: 1.5rem !important; 
}

/* Edusite Section */
.footer .Edusite {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

.footer .Edusite img {
    width: 200px; /* Adjust logo size */
    margin-bottom: 10px;
}

.footer p {
    font-size: 18px;
    color: #666;
    margin: 0;
	margin-bottom: 60px;
}

/* Copyright Text */
.footer p:last-child {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}
/* Hide Mobile Navbar by Default */
.navbar-mobile {
    display: none;
}
@media (max-width: 990px) {
	  body {
    background-image: none;
    /* Optionally, keep the gradient */
    background: linear-gradient(360deg, transparent 20%, #FFEFD5 80%);
	}
	.footer {
    background-color: rgba(255, 255, 255, 1)
	}
}
@media (max-width: 660px) {
	body {
		background-position: center !important;
		}
  .navbar .nav-links a {
    font-size: 0.6rem;
  }
  .navbar-desktop {
        display: none;
    }
    .navbar-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: transparent;
        padding: 1rem 2rem;
    }
.card {
        max-width: 150px;
    }
.card img {
        max-width: 70px;
    }
 .info-section {
    padding: 10px;
}

.info-section p {
    font-size: 0.6rem;
}
.info-section h2 {
    font-size: 1.0rem;
	}
.image-space {
        width: 200px;
        height: 150px;
    }
    .image-space img {
        max-width: 100%;
        max-height: 100%;
    }
  .logo img {
    height: 40px;
    width: auto;
  }
.payment-section {
  max-width: 70%;
  margin: 40px auto;
  padding: 30px;
}
.footer .studystream-info p { 
    font-size: 0.6rem !important; 
}
.footer {
    font-size: 0.6rem;
}
.footer p {
    font-size: 12px;
}
@media (max-width: 460px) {
.navbar-mobile {
        padding: 1rem 1rem;
    }
  .logo img {
    height: 30px;
    width: auto;
}
.flag {
height: 40px; /* Adjust height as needed */
width: auto;
align-items: center;
padding:10px;
margin-left:0.5rem;
}
.flag img {
	height: 30px; /* Adjust height as needed */
}
.info-section {
    margin: 10px auto;
}
.info-section h2 {
    font-size: 0.8rem;
	}
.breadcrumb-title {
  font-size: 7px;
  font-weight: 600;
  padding: 10px 10px;
}
	}
.footer .Edusite img {
    width: 100px; /* Adjust logo size */
}
.footer p {
    font-size: 7px;
	margin-bottom: 20px;
}
/* Copyright Text */
.footer p:last-child {
    font-size: 0.5rem;
}
}