body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  color: #222;
  line-height: 1.7;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  max-width: 1300px;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffb703;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.navbar-logo:hover {
  color: blue;
}
.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  height: 60px;
}
.navbar-menu li a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 3px solid transparent;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: blue;
  border-bottom: 3px solid blue;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle.active .bar {
  background-color: #000; /* or any color you prefer */
}

.navbar-logo-img {
  height: 40px;        /* Adjust as needed */
  width: 40px;         /* Adjust as needed */
  margin-right: 0.7em; /* Space between logo and text */
  border-radius: 50%;  /* Optional: makes the logo round */
  border: 2px solid #023047; /* Optional: subtle border */
  background: #fff;    /* Optional: white background for logo */
  object-fit: contain;
}

.navbar-company-name {
  color: #ffb703;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  vertical-align: middle;
}

.navbar-logo:hover .navbar-company-name {
  color: #ffd166;
}


/* Responsive Navbar */
@media screen and (max-width: 960px) {
  .navbar-menu {
    flex-direction: column;
    width: 100%;
    height: 0;
    position: absolute;
    top: 60px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    background: #023047;
    overflow: hidden;
    z-index: 998;
  }
  .navbar-menu.active {
    height: calc(100vh - 60px);
    opacity: 1;
  }
  .navbar-menu li {
    width: 100%;
  }
  .navbar-menu li a {
    padding: 2rem;
    width: 100%;
    display: table;
    border-bottom: none;
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
  }
}


/* Hero Section */
.testimonials-hero {
  background: linear-gradient(120deg, #2196f3 60%, #ffb703 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(2,48,71,0.12);
}
.testimonials-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.testimonials-hero p {
  font-size: 1.18rem;
  opacity: 0.97;
  font-weight: 500;
}

/* Testimonials Grid */
.testimonials-content {
  max-width: 1200px;
  margin: 3rem auto 2.5rem auto;
  padding: 0 1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(120deg, #f6f8fa 80%, #e0eafc 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(33,150,243,0.11);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 6px solid #2196f3;
  transition: transform 0.22s, box-shadow 0.22s, border-left 0.22s;
  min-height: 220px;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(33,150,243,0.18);
  border-left: 6px solid #ffb703;
  background: linear-gradient(120deg, #fffbe6 80%, #e0eafc 100%);
}
.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2196f3;
  font-size: 2.8rem;
  opacity: 0.16;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #222;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.testimonial-role {
  color: #ffb703;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 1px;
  align-self: flex-end;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .testimonials-hero {
    padding: 2.5rem 1rem 1.2rem 1rem;
  }
  .testimonials-content {
    padding: 0 0.4rem;
  }
  .testimonials-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .testimonials-hero h1 {
    font-size: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    min-width: 0;
  }
}

/* Footer */
footer {
  background: #023047;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .testimonials-hero {
    padding: 2.5rem 1rem 1.2rem 1rem;
  }
  .testimonials-content {
    padding: 0 0.4rem;
  }
  .testimonials-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  .testimonials-hero h1 {
    font-size: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media screen and (max-width: 960px) {
  .navbar-menu li a {
    border-bottom: none !important;
    border-left: 4px solid transparent;
    padding: 1rem 0 1rem 1.5rem;
    transition: color 0.3s, border-left 0.3s, background 0.3s;
    background: none;
  }
  .navbar-menu li a:hover,
  .navbar-menu li a.active {
    border-left: 4px solid #ffb703 !important;
    color: #ffb703;
    background: rgba(255, 183, 3, 0.08);
  }
}