/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
header {
  background-color: #1a237e;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  animation: fadeIn 1s ease-in-out;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
  color: #ffca28;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background-color: #e8eaf6;
  text-align: center;
  padding: 80px 20px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero h1 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  margin-bottom: 20px;
}

.btn {
  background-color: #1a237e;
  color: white;
  padding: 12px 24px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #3949ab;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #ffca28;
  color: #1a237e;
}

.btn-secondary:hover {
  background-color: #fdd835;
  transform: scale(1.05);
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-weight: bold;
  color: #1a237e;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* About Section */
.about h2,
.services h2,
.experience h2,
.testimonials h2,
.contact h2 {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-in-out;
}

.team {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.member {
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s;
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Services Section */
.service-category {
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #e8eaf6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #3949ab;
}

.service-content {
  flex-grow: 1;
}

.service-category h3 {
  color: #3949ab;
  margin-bottom: 10px;
}

.service-category ul {
  list-style-type: disc;
  padding-left: 20px;
}
.service-illustration {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Experience Section */
.case-study {
  background: #ffffff;
  border-left: 5px solid #3949ab;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  
}

.case-study:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonial {
  background: #fff8e1;
  padding: 20px;
  margin: 20px 0;
  border-left: 5px solid #ffca28;
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-in-out;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #1a237e;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
  background-color: #3949ab;
  transform: scale(1.05);
}

.contact-info {
  margin-top: 20px;
}

.social-links a {
  margin-right: 10px;
  color: #1a237e;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fdd835;
}

/* Footer */
footer {
  background-color: #1a237e;
  color: white;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 2s ease-in-out;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .highlights {
    flex-direction: column;
    align-items: center;
  }

  .team {
    flex-direction: column;
    align-items: center;
  }

  .service-category {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-icon {
    margin-bottom: 10px;
  }
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
header {
  background-color: #1a237e;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  animation: fadeIn 1s ease-in-out;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
  color: #ffca28;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background-color: #e8eaf6;
  text-align: center;
  padding: 80px 20px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero h1 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  margin-bottom: 20px;
}

.btn {
  background-color: #1a237e;
  color: white;
  padding: 12px 24px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #3949ab;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #ffca28;
  color: #1a237e;
}

.btn-secondary:hover {
  background-color: #fdd835;
  transform: scale(1.05);
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-weight: bold;
  color: #1a237e;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Section Headings */
.about h2,
.services h2,
.experience h2,
.testimonials h2,
.contact h2 {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-in-out;
  position: relative;
}

.about h2::after,
.services h2::after,
.experience h2::after,
.testimonials h2::after,
.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ffca28;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f1f3f6, #ffffff);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease-in-out;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

.mission-vision {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mission,
.vision {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #3949ab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s;
}

.mission:hover,
.vision:hover {
  transform: translateY(-5px);
}

.mission h3,
.vision h3 {
  color: #3949ab;
  margin-bottom: 10px;
}

.team {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
 /* margin-top: 40px;*/
}

.member {
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member h4 {
  color: #1a237e;
  margin-bottom: 5px;
}

.member p {
  color: #666;
  font-size: 14px;
}

/* The rest remains unchanged... */
.services-section {
  background: linear-gradient(135deg, #f1f3f6, #ffffff);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease-in-out;
}
/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Header as Breadcrumb */
header {
  background-color: #1a237e;
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease-in-out;
  font-size: 14px;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px 20px;
  align-items: center;
}

.breadcrumb-nav a {
  color: #ffca28;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: #ffffff;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Hero Section */
.hero {
  background-color: #e8eaf6;
  text-align: center;
  padding: 80px 20px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero h1 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  margin-bottom: 20px;
}

.btn {
  background-color: #1a237e;
  color: white;
  padding: 12px 24px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #3949ab;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #ffca28;
  color: #1a237e;
}

.btn-secondary:hover {
  background-color: #fdd835;
  transform: scale(1.05);
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-weight: bold;
  color: #1a237e;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Section Headings */
.about h2,
.services h2,
.experience h2,
.testimonials h2,
.contact h2 {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-in-out;
  position: relative;
}

.about h2::after,
.services h2::after,
.experience h2::after,
.testimonials h2::after,
.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ffca28;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f1f3f6, #ffffff);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease-in-out;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

.mission-vision {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mission,
.vision {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #3949ab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s;
}

.mission:hover,
.vision:hover {
  transform: translateY(-5px);
}

.mission h3,
.vision h3 {
  color: #3949ab;
  margin-bottom: 10px;
}

.team {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* margin-top: 40px; */
}

.member {
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member h4 {
  color: #1a237e;
  margin-bottom: 5px;
}

.member p {
  color: #666;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .nav-links,
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .breadcrumb-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlights,
  .mission-vision,
  .team {
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* Header container flex */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1a237e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo styling */
.logo a {
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
}

/* Navigation links - desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Navigation links - links styling */
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #3949ab;
}

/* Hamburger menu button - hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive - Mobile styles */
@media (max-width: 768px) {
  /* Show hamburger */
  .menu-toggle {
    display: block;
  }
  
  /* Hide nav links by default */
  .nav-links {
    position: fixed;
    top: 60px; /* height of header */
    right: -250px; /* hidden off screen */
    width: 200px;
    height: calc(100% - 60px);
    background-color: #1a237e;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
  }

  /* When menu open - slide in */
  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 10px;
    font-size: 18px;
    border-bottom: 1px solid #3949ab;
  }
}
