/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #1e1e2f;
  background-color: #ffffff;
}

h1,
h2,
h3 {
  margin: 0 0 15px;
}

p {
  margin: 0 0 20px;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(90deg, #003366, #0066cc);
  color: white;
  background-color: #0a3d62; /* deep blue */
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #00aaff;
}

.navbar .nav-links a.active,
.navbar .nav-links a:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #4c6cdf;
  border-radius: 2px;
}

/* Small screens */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px; /* just under navbar */
    right: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start; /* align links to left inside box */
    width: 220px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    display: none; /* hide menu initially */
    z-index: 1000;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
     background-color: #0a3d62;
  }

  /* Show menu when active */
  .nav-links.active {
    display: flex;
  }
}
.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #fff9f9;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #003366, #0066cc);
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.btn-primary {
  padding: 12px 25px;
  background: white;
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #f0f0f0;
}
.about-hero {
  background: linear-gradient(to right, #003366, #0066cc);
  /* url("assets/about-bg.jpg") center/cover no-repeat;*/
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* About Content */
.about-content {
  padding: 4rem 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  color: #0a3d62;
  margin-bottom: 0.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Values Section */
.values {
  background-color: #eaf4ff;
  padding: 4rem 1rem;
  text-align: center;
}

.values h2 {
  color: #0a3d62;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  color: #00aaff;
  margin-bottom: 0.5rem;
}
.team {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  margin-bottom: 20px;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card .position {
  font-weight: 600;
  color: #0077b6; /* your theme accent color */
}

.team-card .degree {
  font-size: 14px;
  color: #666;
}

/* Services Preview */
.services-preview {
  text-align: center;
  padding: 60px 20px;
}

.services-preview h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #003366;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #f9f9f9;
  transition: 0.3s;
}

.service-card:hover {
  background: #eef6ff;
  border-color: #0066cc;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #0066cc;
  color: white;
}

.btn-secondary {
  padding: 12px 25px;
  background: white;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f0f0f0;
}
/* Logo */
.logo img {
  height: 100px; /* Adjust size */
  width: auto;
  display: block;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #fff9f9;
}
/* --- Services Page Styles --- */
.services-hero {
  background: linear-gradient(to right, #003366, #0066cc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.services-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.detailed-services {
  padding: 80px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-detail {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}
.service-detail.reverse {
  flex-direction: row-reverse;
}
.service-detail-text,
.service-detail-img {
  flex: 1;
}
.service-detail-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-detail h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}
.service-detail li {
  margin-bottom: 10px;
}
.contact-hero {
  background: linear-gradient(to right, #003366, #0066cc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* Contact Information */
.contact-info {
  background: #eef6ff;
  padding: 40px;
  border-radius: 10px;
  height: fit-content;
}

.contact-info h2 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #0066cc;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  background: #0066cc;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  margin: 0;
  color: #555;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #003366;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #0066cc;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-primary {
  padding: 12px 25px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #003366;
}

/* Virtual Meeting Section */
.meeting-section {
  background: #eef6ff;
  padding: 80px 0;
  text-align: center;
}

.meeting-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.meeting-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  width: 250px;
  transition: transform 0.3s ease;
}

.meeting-card:hover {
  transform: translateY(-5px);
}

.meeting-icon {
  font-size: 2.5rem;
  color: #0066cc;
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #0066cc;
  color: white;
}

.btn-secondary {
  padding: 12px 25px;
  background: white;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.btn-secondary:hover {
  background: #f0f0f0;
}
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }

  .meeting-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: right;
  padding: 20px 60px;
  background: linear-gradient(90deg, #003366, #0066cc);
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.navbar .nav-links a.active,
.navbar .nav-links a:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

/* Hero Section */
.portfolio-hero {
  background: linear-gradient(to right, #003366, #0066cc);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.portfolio-hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.portfolio-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Filter Buttons */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: #eef6ff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0066cc;
  color: white;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: white;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.portfolio-info p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.portfolio-tag {
  background: #eef6ff;
  color: #0066cc;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
  font-size: 0.9rem;
}

.portfolio-link:hover {
  text-decoration: underline;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #0066cc;
  color: white;
}

.btn-secondary {
  padding: 12px 25px;
  background: white;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.btn-secondary:hover {
  background: #f0f0f0;
}


