body {
  font-family: 'Poppins', 'Inter', 'Open Sans', Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  color: #222;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 102, 194, 0.07), 0 1px 0 #eaeaea;
  padding: 0.75rem 2rem;
  border-radius: 0 0 18px 18px;
  transition: box-shadow 0.3s;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A66C2;
  letter-spacing: 1px;
  user-select: none;
}
.navbar__logo span {
  color: #222;
  font-weight: 400;
}

.navbar__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar__links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.navbar__links li a:hover,
.navbar__links li a:focus {
  background: #eaf4fb;
  color: #0A66C2;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.navbar__toggle:focus,
.navbar__toggle:hover {
  background: #eaf4fb;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #0A66C2;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero section styles */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #f5f7fa 60%, #eaf4fb 100%);
  padding: 2rem 0;
  box-sizing: border-box;
  position: relative;
  gap: 2rem;
}

.hero__content {
  max-width: 540px;
  margin-left: 6vw;
  z-index: 2;
}

.hero__content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.hero__content p {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero__cta {
  display: inline-block;
  background: #0A66C2;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(10,102,194,0.08);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
}
.hero__cta:hover,
.hero__cta:focus {
  background: #084b8a;
  box-shadow: 0 6px 24px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.04);
}

.hero__illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  margin-right: 6vw;
  z-index: 1;
}
.hero__illustration svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

/* About section styles */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f7fa;
  padding: 3rem 0;
  gap: 2rem;
  min-height: 50vh;
  box-sizing: border-box;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.about__content {
  max-width: 520px;
  margin-left: 6vw;
}

.about__content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}

.about__content p {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 0;
}

.about__illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin-right: 6vw;
  animation: floatUp 2.5s ease-in-out;
}
.about__illustration img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(10,102,194,0.10);
  transition: transform 0.4s;
  object-fit: cover;
}
.about__illustration img:hover {
  transform: translateY(-6px) scale(1.04);
}

/* Services section styles */
.services {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.services h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
}

.service-card {
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(10,102,194,0.07);
  padding: 2rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10,102,194,0.07);
  transition: background 0.3s;
}
.service-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A66C2;
  margin-bottom: 0.7rem;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: #222;
  text-align: center;
  line-height: 1.5;
}

.service-card:hover,
.service-card:focus {
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  transform: translateY(-4px) scale(1.03);
  background: #eaf4fb;
}
.service-card:hover .service-card__icon,
.service-card:focus .service-card__icon {
  background: #0A66C2;
}
.service-card:hover .service-card__icon img,
.service-card:focus .service-card__icon img {
  filter: brightness(0.85) saturate(1.2);
}

/* Projects section styles */
.projects {
  background: #f5f7fa;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.projects h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}

.projects__list {
  list-style: none;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 2vw;
}
.projects__list li {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(10,102,194,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.projects__list li:last-child {
  margin-bottom: 0;
}
.projects__list h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A66C2;
  margin-bottom: 0.7rem;
}
.projects__list p {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.project-list__btn {
  display: inline-block;
  background: #0A66C2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(10,102,194,0.08);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
}
.project-list__btn:hover,
.project-list__btn:focus {
  background: #084b8a;
  box-shadow: 0 4px 16px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.04);
}
.projects__list li:hover,
.projects__list li:focus {
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* Careers section styles */
.careers {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.careers h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.careers__intro {
  text-align: center;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 2.2rem;
  line-height: 1.6;
  padding-left: 2vw;
  padding-right: 2vw;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.careers__list {
  list-style: none;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 2vw;
}
.careers__list li {
  background: #f5f7fa;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(10,102,194,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.careers__list li:last-child {
  margin-bottom: 0;
}
.careers__list h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A66C2;
  margin-bottom: 0.7rem;
}
.careers__list p {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.career-list__btn {
  display: inline-block;
  background: #0A66C2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(10,102,194,0.08);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
}
.career-list__btn:hover,
.career-list__btn:focus {
  background: #084b8a;
  box-shadow: 0 4px 16px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.04);
}
.careers__list li:hover,
.careers__list li:focus {
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* Why Choose Us section styles */
.whychoose {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.whychoose h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}

.whychoose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
}

.whychoose-card {
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(10,102,194,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.whychoose-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10,102,194,0.07);
  transition: background 0.3s;
}
.whychoose-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s;
}

.whychoose-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A66C2;
  margin-bottom: 0.7rem;
  text-align: center;
}

.whychoose-card p {
  font-size: 1rem;
  color: #222;
  text-align: center;
  line-height: 1.5;
}

.whychoose-card:hover,
.whychoose-card:focus {
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  transform: translateY(-4px) scale(1.03);
  background: #eaf4fb;
}
.whychoose-card:hover .whychoose-card__icon,
.whychoose-card:focus .whychoose-card__icon {
  background: #0A66C2;
}
.whychoose-card:hover .whychoose-card__icon img,
.whychoose-card:focus .whychoose-card__icon img {
  filter: brightness(0.85) saturate(1.2);
}

/* Testimonials section styles */
.testimonials {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
}

.testimonial-card {
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(10,102,194,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf4fb;
  box-shadow: 0 2px 8px rgba(10,102,194,0.07);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0A66C2;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.testimonial-card__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf4fb;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0A66C2;
}

.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #222;
  font-style: italic;
  margin: 0 0 1.2rem 0;
  line-height: 1.6;
  min-height: 60px;
}

.testimonial-card__client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.testimonial-card__name {
  font-weight: 600;
  color: #0A66C2;
  font-size: 1rem;
}
.testimonial-card__title {
  font-size: 0.98rem;
  color: #555;
}

.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  transform: translateY(-4px) scale(1.03);
  background: #eaf4fb;
}

/* Responsive grid for testimonials */
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    min-height: 180px;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 2rem 0 1.2rem 0;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .testimonial-card {
    min-height: 120px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Soft fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes floatUp {
  0% { transform: translateY(24px);}
  100% { transform: translateY(0);}
}

/* Responsive styles */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 0.75rem 1rem;
  }
  .navbar__links {
    gap: 1rem;
  }
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem 0;
    gap: 0;
  }
  .hero__content {
    margin: 0;
    text-align: center;
    max-width: 95vw;
  }
  .hero__illustration {
    margin: 0 0 2rem 0;
    min-width: 180px;
  }
  .about {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem 0;
    gap: 0;
    margin: 0 0 1.5rem 0;
  }
  .about__content {
    margin: 0;
    text-align: center;
    max-width: 95vw;
  }
  .about__illustration {
    margin: 0 0 2rem 0;
    min-width: 120px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    min-height: 220px;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
  }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .project-card {
    min-height: 220px;
    padding: 1.2rem 0.8rem 1.5rem 0.8rem;
  }
  .whychoose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.75rem 0.5rem;
  }
  .navbar__logo {
    font-size: 1.1rem;
  }
  .navbar__links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
    border-radius: 0 0 18px 18px;
    flex-direction: column;
    align-items: flex-end;
    width: 180px;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
  }
  .navbar__links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .navbar__toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    padding: 1rem 0 0.5rem 0;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__content p {
    font-size: 1rem;
  }
  .hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .hero__illustration svg {
    max-width: 180px;
  }
  .about {
    min-height: 30vh;
    padding: 1rem 0 0.5rem 0;
  }
  .about__content h2 {
    font-size: 1.2rem;
  }
  .about__content p {
    font-size: 0.98rem;
  }
  .about__illustration img {
    max-width: 200px;
  }
  .services {
    padding: 2rem 0 1.2rem 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .service-card {
    min-height: 180px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .projects {
    padding: 2rem 0 1.2rem 0;
  }
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .project-card {
    min-height: 140px;
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}

/* General responsive adjustments */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-width: 0;
  width: 100vw;
  overflow-x: hidden;
}

/* Header/navbar responsiveness */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 0.75rem 1rem;
  }
  .navbar__links {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.75rem 0.5rem;
  }
  .navbar__logo {
    font-size: 1.1rem;
  }
  .navbar__links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
    border-radius: 0 0 18px 18px;
    flex-direction: column;
    align-items: flex-end;
    width: 180px;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
  }
  .navbar__links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .navbar__toggle {
    display: flex;
  }
}

/* Hero section responsiveness */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem 0;
    gap: 0;
  }
  .hero__content {
    margin: 0;
    text-align: center;
    max-width: 95vw;
  }
  .hero__illustration {
    margin: 0 0 2rem 0;
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    padding: 1rem 0 0.5rem 0;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__content p {
    font-size: 1rem;
  }
  .hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .hero__illustration svg {
    max-width: 180px;
  }
}

/* About section responsiveness */
@media (max-width: 900px) {
  .about {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem 0;
    gap: 0;
    margin: 0 0 1.5rem 0;
  }
  .about__content {
    margin: 0;
    text-align: center;
    max-width: 95vw;
  }
  .about__illustration {
    margin: 0 0 2rem 0;
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .about {
    min-height: 30vh;
    padding: 1rem 0 0.5rem 0;
  }
  .about__content h2 {
    font-size: 1.2rem;
  }
  .about__content p {
    font-size: 0.98rem;
  }
  .about__illustration img {
    max-width: 200px;
  }
}

/* Services section responsiveness */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .service-card {
    min-height: 160px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Projects section responsiveness */
@media (max-width: 900px) {
  .projects__list {
    max-width: 98vw;
    padding: 0 1vw;
  }
  .projects__list li {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Why Choose Us section responsiveness */
@media (max-width: 1200px) {
  .whychoose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .whychoose__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .whychoose-card {
    min-height: 160px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Careers section responsiveness */
@media (max-width: 900px) {
  .careers__list {
    max-width: 98vw;
    padding: 0 1vw;
  }
  .careers__list li {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Testimonials section responsiveness */
@media (max-width: 1200px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1vw;
  }
  .testimonial-card {
    min-height: 120px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Contact section responsiveness */
@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1vw;
  }
  .contact__form,
  .contact__info {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .contact__form,
  .contact__info {
    padding: 1rem 0.5rem;
  }
}

/* Footer responsiveness */
@media (max-width: 900px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1vw;
  }
  .footer__nav {
    justify-content: center;
    gap: 0.8rem;
  }
  .footer__social {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .footer__container {
    padding: 0 0.5rem;
  }
  .footer__nav {
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .footer__brand {
    font-size: 1rem;
  }
}

/* Utility: make all sections fluid */
section,
header,
footer {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Smooth transitions for navbar elements */
.navbar,
.navbar__links,
.navbar__toggle {
  transition: all 0.3s;
}

/* Footer styles */
.footer {
  background: #fff;
  border-top: 1px solid #eaeaea;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  color: #222;
  box-sizing: border-box;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0A66C2;
  letter-spacing: 1px;
  user-select: none;
}
.footer__logo span {
  color: #222;
  font-weight: 400;
}

.footer__nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer__nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.footer__nav a:hover,
.footer__nav a:focus {
  background: #eaf4fb;
  color: #0A66C2;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}
.footer__social a img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.2s;
}
.footer__social a:hover img,
.footer__social a:focus img {
  transform: scale(1.12);
}

.footer__copyright {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 1.5rem;
  padding: 0 2vw;
}

/* Contact section styles */
.contact {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2rem 0;
  padding: 3rem 0 2.5rem 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.contact h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A66C2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}

.contact__container {
  display: flex;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2vw;
  align-items: flex-start;
}

.contact__form {
  flex: 2;
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,102,194,0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 500;
  color: #0A66C2;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background: #fff;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0A66C2;
  box-shadow: 0 0 0 2px #eaf4fb;
}

.contact__submit {
  background: #0A66C2;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(10,102,194,0.08);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.contact__submit:hover,
.contact__submit:focus {
  background: #084b8a;
  box-shadow: 0 6px 24px rgba(10,102,194,0.13);
  transform: translateY(-2px) scale(1.04);
}

.contact__info {
  flex: 1;
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,102,194,0.07);
  padding: 2rem 1.5rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

.contact__info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A66C2;
  margin-bottom: 0.7rem;
}

.contact__info p {
  font-size: 1rem;
  color: #222;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.contact__info a {
  color: #0A66C2;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.contact__info a:hover,
.contact__info a:focus {
  text-decoration: underline;
}

/* Responsive contact section */
@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1vw;
  }
  .contact__form,
  .contact__info {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .contact__form,
  .contact__info {
    padding: 1rem 0.5rem;
  }
}
