/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Verdana', sans-serif;
  line-height: 1.7;
  color: #1a237e;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: #ffffff;
  color: #1a237e;
  padding: 0;
  border-bottom: 2px solid #1a237e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: #000051;
  border-bottom: 2px solid #1a237e;
}

nav ul li a.active {
  color: #000051;
  border-bottom: 2px solid #1a237e;
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a237e;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: #ffffff;
  color: #1a237e;
  padding: 120px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #e9ecef;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000051;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #1a237e;
}

.btn {
  display: inline-block;
  background: #1a237e;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #1a237e;
}

.btn:hover {
  background: #000051;
  border-color: #000051;
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #1a237e;
  color: #1a237e;
  margin-left: 15px;
}

.btn-secondary:hover {
  background: #1a237e;
  color: white;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1a237e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  border-left: 4px solid #1a237e;
}

.feature-card:hover {
  border-left-color: #000051;
  box-shadow: 0 2px 10px rgba(26, 35, 126, 0.1);
}

.feature-card h3 {
  color: #1a237e;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #1a237e;
  line-height: 1.6;
}

/* Intro Section */
.intro {
  padding: 80px 0;
  background: white;
}

.intro h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a237e;
}

.intro p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}

/* Page Content */
.page-content {
  padding: 80px 0;
  min-height: 60vh;
}

.page-content h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #1a237e;
  text-align: center;
}

.page-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #1a237e;
}

.page-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #000051;
}

.page-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1a237e;
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 30px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  border-left: 4px solid #1a237e;
}

.service-card:hover {
  border-left-color: #000051;
  box-shadow: 0 2px 10px rgba(26, 35, 126, 0.1);
}

.service-card h3 {
  color: #1a237e;
  margin-bottom: 15px;
}

.service-card p {
  color: #1a237e;
  margin-bottom: 15px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 30px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 2px 10px rgba(26, 35, 126, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #1a237e;
}

.team-member h3 {
  color: #1a237e;
  margin-bottom: 10px;
}

.team-member p {
  color: #1a237e;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border: 1px solid #e9ecef;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1a237e;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1a237e;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: white;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 2px 10px rgba(26, 35, 126, 0.1);
}

.contact-item h3 {
  color: #1a237e;
  margin-bottom: 15px;
}

.contact-item p {
  color: #1a237e;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #1a237e;
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 2px solid #000051;
}

footer p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-top: 2px solid #1a237e;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    margin: 3px;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .features {
    padding: 50px 0;
  }

  .intro {
    padding: 50px 0;
  }

  .page-content {
    padding: 50px 0;
  }

  .feature-card,
  .service-card,
  .team-member,
  .contact-item {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .team-member img {
    width: 120px;
    height: 120px;
    border: 3px solid #1a237e;
  }

  .contact-form {
    padding: 30px 20px;
    margin: 30px auto;
  }

  .features-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-content h1 {
    font-size: 1.6rem;
  }

  .page-content h2 {
    font-size: 1.4rem;
  }

  .page-content h3 {
    font-size: 1.2rem;
  }

  .page-content p {
    font-size: 0.9rem;
  }

  .features h2 {
    font-size: 1.7rem;
  }

  .intro h2 {
    font-size: 1.7rem;
  }

  .intro p {
    font-size: 0.95rem;
  }

  .feature-card h3,
  .service-card h3,
  .team-member h3,
  .contact-item h3 {
    font-size: 1.1rem;
  }

  .feature-card p,
  .service-card p,
  .team-member p,
  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 30px 0;
    margin-top: 40px;
  }

  footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    height: 30px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    margin: 2px;
  }

  .btn-secondary {
    margin-top: 6px;
  }

  .features,
  .intro,
  .page-content {
    padding: 30px 0;
  }

  .page-content h1 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .page-content h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .page-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .page-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .features h2,
  .intro h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .intro p {
    font-size: 0.85rem;
  }

  .feature-card h3,
  .service-card h3,
  .team-member h3,
  .contact-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .feature-card p,
  .service-card p,
  .team-member p,
  .contact-item p {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .feature-card,
  .service-card,
  .team-member,
  .contact-item {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .team-member img {
    width: 100px;
    height: 100px;
    border: 2px solid #1a237e;
    margin-bottom: 15px;
  }

  .contact-form {
    padding: 25px 15px;
    margin: 25px auto;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 0.9rem;
  }

  footer {
    padding: 25px 0;
    margin-top: 30px;
  }

  footer p {
    font-size: 0.85rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.service-card,
.team-member {
  animation: fadeInUp 0.6s ease-out;
}