/* Intro Section */
.intro {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 2rem 0;
}
.intro-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #002147;
}
.intro-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Expertise Section */
.expertise {
  background: #f4f6fb;
  padding: 2rem 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.expertise-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.expertise-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px) scale(1.03);
}
.icon-effect {
  display: inline-block;
  font-size: 2.2rem;
  color: #FFD600;
  margin-bottom: 1rem;
  animation: iconPulse 2s infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Workflow Section */
.workflow {
  background: #fff;
  padding: 2rem 0;
}
.workflow-list {
  margin-top: 1rem;
  padding-left: 1.5rem;
  color: #002147;
  font-size: 1rem;
}
.workflow-list li {
  margin-bottom: 0.7rem;
}

/* FAQ Section */
.faq {
  background: #f4f6fb;
  padding: 2rem 0;
}
.faq-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
}
.faq-item h4 {
  color: #002147;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: #444;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
  background: #fff;
  padding: 2rem 0;
}
.testimonial-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: #f4f6fb;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
  text-align: center;
}
.testimonial-card .icon-effect {
  font-size: 2rem;
  color: #002147;
  margin-bottom: 1rem;
  animation: iconPulse 2s infinite;
}
.testimonial-card p {
  font-style: italic;
  color: #222;
  margin-bottom: 0.5rem;
}
.testimonial-card span {
  color: #FFD600;
  font-weight: 600;
}
/* Main style file. You can split into more files if needed. */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f4f6fb;
  color: #222;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #002147;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.nav-brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFD600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-menu li a:hover {
  background: #FFD600;
  color: #002147;
}

.hero {
  background: linear-gradient(120deg, #002147 60%, #FFD600 100%);
  color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content .tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.button {
  background: #FFD600;
  color: #002147;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.button:hover {
  background: #002147;
  color: #FFD600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px) scale(1.03);
}
.service-item i {
  color: #FFD600;
  margin-bottom: 1rem;
}
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-item p {
  color: #444;
  font-size: 1rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-us-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
}
.why-us-item i {
  color: #002147;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-us-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-us-item p {
  color: #444;
  font-size: 1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: scale(1.03);
}
.project-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,33,71,0.85);
  color: #FFD600;
  padding: 1rem;
  text-align: left;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

footer {
  background: #002147;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 3rem;
}
.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-links a {
  color: #FFD600;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .container {
    padding: 1rem 0.5rem;
  }
  .service-grid, .why-us-grid, .project-grid {
    grid-template-columns: 1fr;
  }
}
