* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* === HEADER & NAV === */
.main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 80px;
  background-color: #ffffff;
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.logo img {
  height: 50px;
  content: url('../img/logo.png');
  /* Adjusted path for CSS in subfolder */
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
}

.main-nav ul li {
  margin: 0 20px;
  position: relative;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
  color: #000000;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  transform: none;
  background-color: #6d28d9;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav ul li a:hover {
  color: #c211da;
  /* Light purple */
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.programslist .programslist1 {
  display: none;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  color: #000000;
  visibility: hidden;
  transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.programslist:hover .programslist1 {
  display: block;
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.programslist1 ul {
  flex-direction: column;
}

.programslist1 ul li {
  margin: 0;
  width: 100%;
}

.programslist1 ul li a {
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  white-space: nowrap;
}

.programslist1 ul li a:hover {
  background-color: #f3e8ff;
  /* Light purple */
  color: #4c0563;
}

.programslist1 ul li a i {
  margin-left: 8px;
}

.others .other-main {
  display: none;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: rgb(6, 6, 6);
  min-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.others:hover .other-main {
  display: block;
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.other-main ul {
  display: flex;
  flex-direction: column;
}

.other-main ul li {
  margin: 0;
  width: 100%;
}

.other-main ul li a {
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  white-space: nowrap;
}

.other-main ul li a:hover {
  background-color: #f3e8ff;
  /* Light purple */
  color: #4c0563;
}

.other-main ul li a i {
  margin-left: 8px;
}

/* Mobile Hamburger & Side Menu */
.menu-toggle {
  display: none;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.4s ease-in-out;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: #6d28d9;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  padding-top: 100px;
  overflow-y: auto;
}

.side-menu nav ul {
  display: flex;
  flex-direction: column;
}

.side-menu nav a {
  display: block;
  padding: 15px 30px;
  font-size: 1.2em;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Interaction */
#menu-toggle:checked~.side-menu {
  transform: translateX(0);
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive Nav Breakpoint */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}

.page-header {
  background: url(../img/annie-spratt-goholCAVTRs-unsplash.jpg) center center/cover no-repeat;
  height: 80vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .overlay {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: #fff;
}

.hero-content h1 {
  font-size: 5em;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: -2px;
  line-height: 1;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.service-item.highlight {
  background: #6d28d9;
  border-color: #6d28d9;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.service-item.highlight:hover {
  background: #5b21b6;
  transform: translateY(-5px);
}

.service-item i {
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .page-header {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 3em;
    margin-bottom: 30px;
  }

  .service-item {
    font-size: 1em;
    padding: 15px 25px;
  }
}

.contact-info {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #f7f7f7;
  flex-wrap: wrap;
  gap: 30px;
}

.info-box {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box img {
  height: 40px;
  margin-bottom: 15px;
}

.info-box h3 {
  color: #2c2c91;
  margin-bottom: 10px;
}

.info-box p {
  color: #444;
  font-size: 15px;
}

.contact-form {
  background-color: #8800ffab;
  padding: 60px 20px;
}

.form-container {
  max-width: 550px;
  margin: auto;
  padding: 40px 30px;
  border-radius: 10px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: rgb(74, 74, 247);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #1313cc;
}

.map-section {
  width: 100%;
  margin-bottom: -20px;
  margin-top: -20px;
}

/* === FOOTER === */
/* === FOOTER === */
.footer {
  padding: 5vh 0 10vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
}

.footer1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
  width: 86%;
}

.logo1 {
  display: flex;
  align-items: flex-start;
}

.logo1 img {
  height: 80px;
  width: auto;
}

.logo1 h4 {
  font-size: 6.5em;
  font-weight: 700;
  margin-left: 20px;
  line-height: 1;
}

.contact-bthn {
  width: 80%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px 0 80px 0;
}

.btn33,
.btn34 {
  height: 80px;
  width: 100%;
  max-width: 260px;
  background: transparent;
  color: white;
  border: 1px solid white;
  font-weight: 500;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn33 a,
.btn34 a {
  color: white;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn33:hover,
.btn34:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.btn33:hover a,
.btn34:hover a {
  color: black;
}

.credentials {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.credentials p {
  font-size: 1em;
  font-weight: 400;
}

.links2 ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.links2 .wow {
  border-right: 1px solid blueviolet;
  padding-right: 20px;
}

.wow a {
  color: blueviolet;
}

.links2 ul li a {
  font-size: 1.1em;
  font-weight: 500;
  transition: .3s;
  color: white;
}

.links2 ul li a:hover {
  color: blueviolet;
}

@media (max-width: 992px) {
  .logo1 h4 {
    font-size: 4em;
  }

  .contact-bthn {
    flex-direction: column;
    width: 90%;
    padding: 40px 0;
  }

  .btn33,
  .btn34 {
    font-size: 1em;
    height: 70px;
    max-width: 100%;
  }

  .credentials {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .links2 ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .logo1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo1 h4 {
    font-size: 3em;
    margin-left: 0;
    margin-top: 10px;
  }

  .footer1 {
    width: 90%;
    padding-bottom: 20px;
    justify-content: center;
  }

  .links2 .wow {
    display: list-item;
    border-right: 1px solid blueviolet;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .credentials {
    flex-direction: row;
    justify-content: space-between;
  }
}