:root {
  --bg: #f5f6f8;
  --card: #ffffff;
  --accent: #5b6cff;
  --text: #222;
  --muted: #666;
  --radius: 14px;
  --container-width: 1100px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* { box-sizing: border-box; }

html, body { height: 100%; }


body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

#logo { width: 50px; height: auto; }

#services {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--muted);
  text-align: center;
}

.service-card .btn,
.service-card .cart-btn {
  width: 100%;
  margin-bottom: 10px;
}

.service-card .btn:hover { background: #0056b3; }

header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
  background: rgba(91,108,255,0.06);
}

/* Mobile menu toggle */
/* Hero */
.hero {
  position: relative; /* important for layering */
  padding: 64px 0 40px;
  overflow: hidden; /* ensures GIF stays within hero */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures GIF covers entire hero */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* makes text readable */
  z-index: 1;
}

.hero-inner {
  position: relative; /* stack above GIF & overlay */
  z-index: 2;
}

.hero-text h1,
.hero-text p {
  color: white !important; /* force white text */
}

/* About */
.about { padding: 56px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.skills li {
  background: rgba(0,0,0,0.05);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.about-text p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
}

/* Projects */
.projects { padding: 56px 0; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project {
  background: var(--card);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(12,12,20,0.04);
}

.project img { width: 100%; border-radius: 8px; }

.project h4 { margin: 10px 0 6px; }

.project-links a {
  margin-right: 12px;
  text-decoration: none;
  color: var(--accent);
}

/* Contact */
.contact { padding: 56px 0; }

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.contact-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
}

/* Contact form send button */
.contact-form button {
    background-color: #007bff; /* default blue */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease; /* only background changes smoothly */
}

/* Hover effect: just darken the color */
.contact-form button:hover {
    background-color: #0056b3; /* darker blue */
    transform: none; /* no scaling */
}

/* Footer */
.site-footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 68px;
    right: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: none;
  }
  .nav.open { display: block; padding: 12px; }
  .nav ul { flex-direction: column; }
}

@media (max-width:520px) {
  .project-grid { grid-template-columns: 1fr; }
  .hero-image img { max-width: 280px; margin: 0 auto; }
}

.btn {
  background: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
  background: #0056b3;
}

/* Cart button */
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 15px;
  background-color: #ff9800;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  height: 40px;
  transition: background 0.3s;
  font-size: 14px;
}

.cart-count {
    display: none;
}

.cart-btn:hover { background-color: #e68900; }

.cart-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.cart-btn.loading .spinner {
  display: inline-block;
  margin-left: 5px;
}

.cart-btn.loading span { opacity: 0.6; }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: opacity 0.1s, transform 0.1s;
  transform: translateY(-20px);
}

#cart-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}

html { scroll-behavior: smooth; }


/* ======================
   TEAM SECTION
   ====================== */

.team-card {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 10px 0 5px;
}

.team-card p {
    color: #555;
}

.team-swiper {
  width: 90%;
  padding: 40px 0;
  margin: auto;
}

.team-swiper .swiper-slide {
  text-align: center;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-swiper img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.see-details {
  display: inline-block;
  margin-top: 8px;
  color: #0984e3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.see-details:hover {
  color: #74b9ff;
  text-decoration: underline;
}


/* ===== About Page Styles ===== */

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/ict-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.mission, .our-story, .why-us, .vision {
  padding: 80px 20px;
}

.mission p, .vision p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 260px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 5px;
  color: #333;
}

.team-card p {
  color: #555;
}

.why-list {
  list-style: none;
  max-width: 700px;
  margin: 20px auto;
  padding: 0;
}

.why-list li {
  background: #f5f5f5;
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #333;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------
  About.html
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------
  Header / Navbar
----------------------------- */
/* Header */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

/* Logo + Text */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
  height: auto;
}

.logo-text {
  font-size: 0.95em; /* smaller text */
  color: #000;
  font-weight: 600;
}

/* Navigation aligned to right */
.main-nav {
  margin-left: auto; /* pushes nav to the right */
  margin-right: 20px; /* small space before cart */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff6600;
}

/* Cart Button */
.cart-button a {
  text-decoration: none;
  font-size: 1em;
  color: #fff;
  background: #ff9900;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s;
}

.cart-button a:hover {
  background: #e68a00;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    margin: 0;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
  }

  .nav-links.show {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .cart-button {
    position: absolute;
    top: 15px;
    right: 60px;
  }
}


/* ----------------------------
  About Section
----------------------------- */
.about {
  padding: 80px 20px 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.about h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ff6600;
}

.about p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #555;
}

/* ----------------------------
  Why Choose Us
----------------------------- */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  max-width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

/* ----------------------------
  Mission & Vision
----------------------------- */
.mission-vision-grid {
  display: flex;
  gap: 50px; /* space between mission and vision */
  flex-wrap: wrap; /* makes it responsive on smaller screens */
}

.mission, .vision {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1; /* equal width */
}

.mission-vision h2 {
  color: #ff6600; /* black */
}

.mission img, .vision img {
  width: 200px; /* adjust as needed */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mission .text, .vision .text {
  flex: 1; /* text takes remaining space */
}


/* ----------------------------
  Achievements / Stats
----------------------------- */
.achievements {
  background: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.achievements h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat {
  max-width: 180px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat h3 {
  font-size: 2em;
  color: #ff6600;
  margin-bottom: 5px;
}

.stat p {
  color: #555;
}

/* ----------------------------
  Team Section
----------------------------- */
.team {
  padding: 60px 20px;
  text-align: center;
}

.team h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.team-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-list li {
  max-width: 200px;
  text-align: center;
}

.team-list img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-list img:hover {
  transform: scale(1.05);
}

.team-list h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}

.team-list p {
  color: #555;
}

/* ----------------------------
  Branches Section
----------------------------- */
.branches {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.branches h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.branch-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.branch {
  max-width: 220px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.branch:hover {
  transform: translateY(-5px);
}

.branch h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

/* ----------------------------
  Testimonials Section
----------------------------- */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff6600;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  max-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  font-style: italic;
}

.testimonial h4 {
  margin-top: 15px;
  color: #333;
  font-weight: 600;
}

/* ----------------------------
  Responsive
----------------------------- */
@media (max-width: 768px) {
  .mission-vision, .features, .stats, .branch-list, .testimonial-list {
    flex-direction: column;
    align-items: center;
  }
}

/* Header styling */
header {
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1245px;
  margin: 0 auto;
  height: 55px; /* matches your screenshot’s proportions */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.site-title {
  font-size: 1rem; /* smaller text */
  font-weight: 700;
  color: #000; /* black text */
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff6600;
}

/* Cart Button */
.cart-section .cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  background: #ffa500;
  padding: 7px 15px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.cart-section .cart-btn:hover {
  background: #e58e00;
}

/* Responsive nav */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100vh;
    background: #fff;
    transition: right 0.3s;
  }

  nav ul.show {
    right: 0;
  }
}


/* ===== Courses Section ===== */
.courses-section {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.courses-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
}

.course-card {
  background: white;
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.course-card h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
}

.course-card p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
}

.course-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.course-buttons .btn {
  background-color: #0077ff;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.course-buttons .btn:hover {
  background-color: #005fcc;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .course-card {
    padding: 25px 15px;
  }

  .course-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/* === TEAM SECTION (matches Home Page exactly) === */
.team-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

/* Swiper container */
.team-swiper {
  width: 100%;
  padding: 40px 0;
}

/* Team Card */
.team-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Circular Photos */
.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 15px;
  border: 3px solid #f05c2c; /* optional accent ring */
}

/* Member Info */
.team-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Swiper Pagination + Arrows */
.swiper-pagination-bullet {
  background-color: #222 !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background-color: #f05c2c !important;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #222;
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #f05c2c;
}

/* === Team Section Fix (Match Home Page Style) === */
.team-section .swiper-slide {
  text-align: center;
}

.team-section .member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-section .member-photo:hover {
  transform: scale(1.05);
}

.team-section .member-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.team-section .member-info p {
  color: #777;
  font-size: 0.95rem;
}

/* === Header Layout Fix (Align Nav to Right) === */
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header .nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.site-header .nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header .nav a:hover,
.site-header .nav a.active {
  color: #f05c2c; /* highlight color */
}

