
:root {
  --primary: #1a4b8c;
  --secondary: #e63946;
  --accent: #2a9d8f;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@font-face {
  font-family: "alger";
  src: url("fonts/algerian/ALGER.woff") format("woff");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.remove-anchoar{
  text-decoration: none;
  cursor: pointer;
}
.main-logo-img{
  cursor: pointer;
}

/* Header Styles */
header {
 /*  background-color: rgba(243, 198, 106, 1);*/
 background-color: white;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h2{
  font-size: 1.8rem;
  margin-top: 7px;
  color: black;
  font-family: alger;
}

.top-bar {
  background-color: #153a6e;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links a {
  color: white;
  margin-right: 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

.header-buttons a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.header-buttons a:hover {
  color: var(--accent);
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 59px;
  margin-right: 5px;
}

.logo-text h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.logo-text p {
  font-size: 14px;
  opacity: 0.8;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu>li {
  margin-left: 25px;
}

.nav-menu li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-menu li a:hover {
  color: var(--accent);
}

.nav-menu li a i {
  margin-left: 5px;
  font-size: 12px;
}

/* Dropdown Styles */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  list-style: none;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  margin: 0;
  border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu-custom li:last-child {
  border-bottom: none;
}

.dropdown-menu-custom li a {
  color: var(--dark);
  display: block;
  padding: 10px 20px;
  transition: all 0.3s;
  font-weight: 400;
}

.dropdown-menu-custom li a:hover {
  background-color: var(--light);
  color: var(--primary);
  padding-left: 25px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
  margin-left: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgb(245 245 244 / 90%), rgb(191 173 84 / 85%)), url(https://images.unsplash.com/photo-1523050854055-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #0000b7;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color:#0000b7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-custom {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-custom:hover {
  background-color: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--accent);
}

.hero-stat-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-about {
  text-align: left;
  margin-bottom: 20;
}

.section-about h2 {
  font-size: 1.7rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-about h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.section-title p {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--gray);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features {
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Future Plan Section */
.future-plan {
  background: linear-gradient(rgba(243, 198, 106, 0.9),rgba(26, 75, 140, 0.85) ), url(https://images.unsplash.com/photo-1523050854055-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80);
  color: white;
}

.future-plan .section-title h2 {
  color: white;
}

.future-plan .section-title h2:after {
  background-color: var(--accent);
}

.future-plan-content {

  margin: 0 auto;
}

.future-plan-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Information Section */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Activities Section */
.activities {
  background-color: var(--light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.activity-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.activity-card:hover {
  transform: translateY(-10px);
}

.activity-image {
  height: 200px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.activity-card:hover .activity-image img {
  transform: scale(1.1);
}

.activity-content {
  padding: 20px;
}

.activity-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 4rem;
  color: var(--light-gray);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image i {
  font-size: 24px;
  color: var(--gray);
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 70px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-column p {
  margin-bottom: 20px;
  color: #adb5bd;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #adb5bd;
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #343a40;
  padding: 20px 0;
  text-align: center;
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: none;
    width: 100%;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu>li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu>li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    padding: 12px 0;
    display: block;
  }

      /* Page Banner */
    

  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    display: none;
    width: 100%;
  }

  .dropdown.active .dropdown-menu-custom {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

    .dropdown.active > a {
color: var(--accent) !important;
}

.dropdown.active > a i {
transform: rotate(180deg);
}

.dropdown-menu-custom {
padding-left: 20px;
}
}

@media (max-width: 1400px) {
  header h2{
    font-size: 1.2rem;
  }
  .logo img {
    height: 36px;
    margin-right: 5px;
}
.nav-menu>li {
  margin-left: 20px;
}

.nav-menu li a {
font-size: 13px;
}

.hero h1 {
font-size: 2.8rem;
}

}

@media (max-width: 1202px) {
  header h2{
    font-size: 1rem;
    margin-bottom: 9px;
  }
  .logo img {
    height: 34px;
    margin-right: 5px;
}
.nav-menu>li {
  margin-left: 17px;
}

.nav-menu li a {
font-size: 12px;
}

.hero h1 {
font-size: 2.8rem;
}

}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  header h2{
   
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 1.1rem;
  }

  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .top-bar-content {
 
    gap: 10px;
  }

  .header-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-buttons a {
    margin: 0 5px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }
  #stu-login{
    display: none;
  }
  #off-login{
    display: none;
  }

}

@media (max-width: 576px) {
  .main-header {

    text-align: center;
    gap: 15px;
  }
  .logo img {
    height: 33px;
    margin-right: 7px;
}
header h2{
   
  margin-bottom: 4px;
}

  .logo {
    justify-content: center;
  }

  .header-buttons {
    flex-direction: column;
    align-items: center;
  }

  .header-buttons a {
    margin: 5px 0;
  }
  header h1{
    margin-bottom: 0px !important;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 424px) {
  .logo img {
      height: 27px;
      margin-right: 4px;
  }
 
}

.page-banner {
  background : linear-gradient(rgb(245 245 244 / 90%), rgb(191 173 84 / 85%)), url(https://images.unsplash.com/photo-1523050854055-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80);
  background-size: cover;
  background-position: center;
  color: #0000b7;
  padding: 80px 0;
  text-align: center;
} 

.page-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


