 /* Enhanced Page Background */
    body {
      margin: 0;
      padding-left: 15%;
      padding-right: 15%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-image: url("background1.jpg");
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
    }

    img {
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    img:hover {
      opacity: 1;
    }

    /* Modern Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 30, 40, 0.95), rgba(50, 50, 60, 0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(100, 181, 246, 0.3);
  color: white;
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: nowrap;
  min-width: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}


    .navbar .logo {
      text-decoration: none;
      color: white;
      font-weight: 800;
      font-size: 1.3rem;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
      background: linear-gradient(135deg, #ffffff, #64b5f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .navbar .logo:hover {
      filter: brightness(1.2);
      transform: scale(1.05);
    }

.navbar .menu {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

    .navbar .menu li a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      padding: 0.5rem 0.7rem;
      transition: all 0.3s ease;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.85rem;
      position: relative;
      white-space: nowrap;
      border: 1px solid transparent;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .navbar .menu li a:hover {
      background: linear-gradient(135deg, rgba(100, 181, 246, 0.2), rgba(100, 181, 246, 0.3));
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(100, 181, 246, 0.4);
      border-color: rgba(100, 181, 246, 0.5);
    }

    /* Compact Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.3rem;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
  height: 2px;
  width: 18px;
  background: white;
  margin: 1.5px 0;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.flag {
  vertical-align: middle;
}

  .title {
    margin: 1rem 0;
    text-align: center;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(100, 181, 246, 0.3);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
  }

  @keyframes titleGlow {
    from { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(100, 181, 246, 0.3); }
    to { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(100, 181, 246, 0.6); }
  }

  .subtitle {
    text-align: center;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(100, 181, 246, 0.2);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

   .article {
    text-align: justify;
    color: white;

    font-size: 1.1rem;
    line-height: 1.8;

    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
   }

/* Professional Transparent Cards */
.content-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(100, 181, 246, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.card-content {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
}

.card-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1rem;
}

.section-heading {
  color: #90caf9;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.2rem 0 0.8rem 0;
  text-shadow: 0 2px 8px rgba(100, 181, 246, 0.4);
  border-left: 3px solid #64b5f6;
  padding-left: 0.8rem;
}

/* Service Items */
.service-item {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1rem 0;
  border: 1px solid rgba(100, 181, 246, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(100, 181, 246, 0.25);
  transform: translateX(8px);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.team-member {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.3rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(100, 181, 246, 0.15);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(100, 181, 246, 0.25);
  border-color: rgba(100, 181, 246, 0.4);
  background: rgba(0, 0, 0, 0.3);
}

.team-member h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.team-role {
  color: #90caf9;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Contact Info */
.contact-info {
  display: grid;
  gap: 1.2rem;
}

.contact-item {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(100, 181, 246, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(100, 181, 246, 0.25);
}

/* Office Hours */
.office-hours {
  margin-top: 0.8rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
  margin: 0.3rem 0;
  background: rgba(100, 181, 246, 0.08);
  border-radius: 6px;
  border-left: 2px solid #64b5f6;
  transition: all 0.3s ease;
}

.hours-row:hover {
  background: rgba(100, 181, 246, 0.15);
  transform: translateX(3px);
}

.hours-row.closed {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(255, 255, 255, 0.25);
  opacity: 0.7;
}

.hours-row .day {
  font-weight: 600;
  color: #90caf9;
  font-size: 0.95rem;
}

.hours-row .time {
  color: white;
  font-size: 0.95rem;
} 


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

/* Enhanced Info Cards */
.infodiv {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.infodiv:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(100, 181, 246, 0.3);
}

.infodiv h2 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 1.2rem;
  background: rgba(100, 181, 246, 0.1);
  border-radius: 10px;
  border-left: 4px solid #64b5f6;
  transition: all 0.3s ease;
}

.infodiv h2:hover {
  background: rgba(100, 181, 246, 0.2);
  transform: translateX(5px);
}

.info {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.info:hover {
  color: #90caf9;
  text-shadow: 0 0 8px rgba(100, 181, 246, 0.5);
}

.info::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #64b5f6, #90caf9);
  transition: width 0.3s ease;
}

.info:hover::after {
  width: 100%;
}

.email {
  font-size: 1.4rem;
  color: #64b5f6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.email:hover {
  color: #90caf9;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.6);
  transform: scale(1.05);
}

.email::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #64b5f6, #90caf9);
  transition: width 0.3s ease;
}

.email:hover::after {
  width: 100%;
}


/* Enhanced HR Dividers */
hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.6), transparent);
  margin: 0;
  border-radius: 2px;
  position: relative;
}

hr::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #64b5f6, #90caf9);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.5);
}

/* Enhanced Lists */
ul {
  padding-left: 1.8rem;
  margin: 0.8rem 0;
}

li {
  margin-bottom: 0.5rem;
  position: relative;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  list-style-type: disc;
}

li::marker {
  color: #64b5f6;
}

/* Remove custom bullet for navbar items */
.navbar li {
  list-style-type: none;
}

.navbar li::before {
  content: none;
}

/* Enhanced Bold Text */
b, strong {
  color: #90caf9;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(144, 202, 249, 0.3);
}

/* Mobile Hamburger Menu */
@media (max-width: 1200px) {
  .navbar .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.98), rgba(50, 50, 60, 0.98));
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 16px 16px;
    border: 2px solid rgba(100, 181, 246, 0.3);
    border-top: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    width: auto;
    min-width: 180px;
    max-width: 250px;
  }

  .navbar .menu.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar .menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
  }

  .navbar .menu li:last-child {
    border-bottom: none;
  }

  .navbar .menu li a {
    padding: 0.9rem 1.2rem;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 0;
  }

  .navbar .menu li a:hover {
    background: linear-gradient(90deg, rgba(100, 181, 246, 0.3), rgba(100, 181, 246, 0.1));
    color: #ffffff;
    padding-left: 1.5rem;
    box-shadow: inset 4px 0 0 #64b5f6;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin: 0;
  }

  .article {
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem;
  }

  .content-card {
    padding: 1.3rem;
    margin: 1.3rem 0;
  }

  .intro-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .service-item {
    padding: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .hours-row {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }

  .infodiv {
    padding: 2rem;
    margin: 2rem 0;
  }

  .infodiv h2 {
    font-size: 1.1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-left: 3%;
    padding-right: 3%;
  }

  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .navbar .logo {
    font-size: 1.1rem;
  }

  .title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .subtitle {
    font-size: 1rem;
  }

  .article {
    font-size: 0.95rem;
  }

  .content-card {
    padding: 1rem;
    margin: 1rem 0;
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .section-heading {
    font-size: 1.1rem;
  }

  .service-item {
    padding: 0.9rem;
  }

  .team-member {
    padding: 1rem;
  }

  .contact-item {
    padding: 0.9rem;
  }

  .hours-row {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    padding: 0.5rem;
  }

  .infodiv h2 {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
