* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation Bar */
.navbar {
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-top: 4px solid #6b4c9a;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-brackets {
  color: #e5b144;
  font-weight: bold;
}

.logo-text {
  color: #6b4c9a;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #6b4c9a;
}

.contact-btn {
  background-color: #e5b144;
  color: #333 !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #d9a637;
  color: #333 !important;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  height: 500px;
  background-image: url("../images/hero-sec.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 700px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.cta-button svg {
  width: 16px;
  height: 16px;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

.about-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-profile {
  text-align: center;
  position: sticky;
  top: 120px;
}

.profile-image {
  margin-bottom: 1.5rem;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.profile-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.profile-info .profile-title {
  color: #888;
  font-size: 0.9rem;
}

/* Challenges Section */
.challenges-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.challenges-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.challenges-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
}

.challenges-intro {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.challenges-cta {
  display: inline-block;
  color: #6b4c9a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.challenges-cta:hover {
  color: #4a3168;
}

.challenges-cta span {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}

.challenge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.challenge-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.challenge-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Services Tabs Section */
.services-tabs-section {
  padding: 5rem 2rem;
  background-color: #f0f0f0;
}

.services-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-tabs-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #6b4c9a;
  margin-bottom: 3rem;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
}

.service-tab {
  background-color: #fff;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  font-weight: 400;
}

.service-tab:hover {
  background-color: #f8f8f8;
  color: #333;
}

.service-tab.active {
  background-color: #fff;
  color: #333;
  font-weight: 600;
  border-left: 4px solid #6b4c9a;
}

.service-tab.active::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  z-index: 1;
}

.services-details {
  background-color: #2c3e50;
  padding: 3rem;
  position: relative;
}

.service-detail {
  display: none;
  color: #fff;
}

.service-detail.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-detail .detail-intro {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-detail p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.learn-more-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: #2c3e50;
}

/* Client Stories Section */
.client-stories-section {
  padding: 3rem 2rem;
  background-color: #fff;
}

.client-stories-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.client-stories-header h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  flex: 1;
}

.talk-expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.talk-expert-btn:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.talk-expert-btn svg {
  width: 16px;
  height: 16px;
}

.client-stories-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.stories-bg-image {
  background-image: url("../images/building.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stories-card {
  background-color: #3e2a6b;
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stories-card h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.stories-card > p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stories-list li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.stories-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 1.5rem;
}

/* Client Logos Section */
.client-logos-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.logos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logos-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 3rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Microsoft EA Section */
.microsoft-ea-section {
  padding: 6rem 2rem;
  background-image: url("../images/tallbuilding.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ea-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.ea-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
  color: #fff;
}

.ea-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.ea-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ea-content .highlight {
  color: #e5b144;
  font-weight: 600;
}

.ea-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
}

.ea-button:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.ea-button svg {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-profile {
    position: static;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .challenges-container h2 {
    font-size: 1.8rem;
  }

  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .services-content {
    grid-template-columns: 1fr;
  }

  .services-list {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .services-tabs-container h2 {
    font-size: 1.8rem;
  }

  .client-stories-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-stories-header h2 {
    font-size: 1.25rem;
  }

  .client-stories-content {
    grid-template-columns: 1fr;
  }

  .stories-bg-image {
    min-height: 300px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .logos-container h2 {
    font-size: 1.8rem;
  }

  .ea-content h2 {
    font-size: 2rem;
  }

  .ea-content p {
    font-size: 1rem;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .testimonial-image img {
    width: 150px;
    height: 150px;
  }

  .testimonial-content h2 {
    font-size: 1.75rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .webinar-card {
    padding: 2.5rem;
    max-width: 100%;
  }

  .webinar-card h2 {
    font-size: 1.5rem;
  }

  .resources-header h2 {
    font-size: 1.25rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .resource-image {
    min-height: 200px;
  }

  .technology-services-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .technology-services-content h2 {
    font-size: 1.8rem;
  }

  .cta-profile-image img {
    width: 120px;
    height: 120px;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .contact-form-header h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-left {
    gap: 1.5rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.testimonial-content .bracket-left,
.testimonial-content .bracket-right {
  color: #e5b144;
  font-weight: bold;
}

.testimonial-quote {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Webinar Section */
.webinar-section {
  padding: 6rem 2rem;
  background-image: url("../images/balance.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.webinar-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.webinar-card {
  background-color: #3e2a6b;
  color: #fff;
  padding: 3.5rem;
  max-width: 600px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.webinar-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.webinar-card h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.webinar-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.webinar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.webinar-btn:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.webinar-btn svg {
  width: 16px;
  height: 16px;
}

/* Resources Section */
.resources-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

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

.resources-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ddd;
}

.resources-header h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #3e2a6b;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.learn-more-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
}

.learn-more-cta:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.learn-more-cta svg {
  width: 16px;
  height: 16px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.resource-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.resource-image {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.resource-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.resource-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.resource-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-link {
  color: #3e2a6b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: #e5b144;
}

/* Technology Services Section */
.technology-services-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.technology-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.technology-services-content {
  flex: 1;
}

.technology-services-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.technology-services-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.technology-services-button {
  flex-shrink: 0;
}

.tech-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tech-services-btn:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.tech-services-btn svg {
  width: 16px;
  height: 16px;
}

/* Call to Action Section */
.cta-section {
  padding: 6rem 2rem;
  background-image: url("../images/building.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-profile-image {
  margin-bottom: 2.5rem;
}

.cta-profile-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.cta-expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
}

.cta-expert-btn:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.cta-expert-btn svg {
  width: 16px;
  height: 16px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.contact-form-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.contact-form {
  background-color: #f8f8f8;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

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

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 1rem 2.5rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
}

.form-submit-btn:hover {
  background-color: #d9a637;
  transform: translateX(5px);
}

.form-submit-btn svg {
  width: 16px;
  height: 16px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.modal-close {
  color: #999;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 3rem 2rem;
  text-align: center;
}

.modal-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.modal-body h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.modal-body p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.modal-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e5b144;
  color: #333;
  padding: 0.75rem 2rem;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.05em;
}

.modal-close-btn:hover {
  background-color: #d9a637;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.footer-logo .logo-brackets {
  color: #e5b144;
  font-weight: bold;
}

.footer-logo .logo-text {
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  width: fit-content;
}

.footer-nav a:hover {
  color: #e5b144;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #445566;
}

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  width: fit-content;
}

.footer-legal a:hover {
  color: #e5b144;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: auto;
}

.footer-right h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-contact strong {
  color: #fff;
  font-weight: 600;
}

.footer-contact a {
  color: #e5b144;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #d9a637;
  text-decoration: underline;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
  margin-top: 80px;
  height: 400px;
  background-image: url("../images/cornfield.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .hero-content {
  text-align: center;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-we-are-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 2rem;
}

.who-we-are-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mission-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 2rem;
}

.mission-statement {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Approach Section */
.approach-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.approach-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 2rem;
}

.approach-intro {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.approach-item {
  text-align: left;
}

.approach-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e5b144;
  margin-bottom: 1rem;
  line-height: 1;
}

.approach-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.approach-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Services Overview Section */
.services-overview-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
}

.services-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-overview-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 2rem;
}

.services-overview-intro {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-overview-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-overview-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-overview-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.service-overview-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.leadership-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3e2a6b;
  margin-bottom: 2rem;
}

.leadership-intro {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.leadership-grid {
  display: flex;
  justify-content: center;
}

.leader-card {
  max-width: 400px;
  background-color: #f8f8f8;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leader-image {
  margin-bottom: 2rem;
}

.leader-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leader-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 1rem;
  color: #e5b144;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.leader-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 2rem;
  background-color: #3e2a6b;
  color: #fff;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-choose-item {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.why-choose-item .bracket-left,
.why-choose-item .bracket-right {
  color: #e5b144;
  font-weight: bold;
}

.why-choose-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .who-we-are-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who-we-are-content h2,
  .mission-container h2,
  .approach-container h2,
  .services-overview-container h2,
  .leadership-container h2,
  .why-choose-container h2 {
    font-size: 1.8rem;
  }

  .mission-values {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* Contact Page Styles */

/* Contact Information Section */
.contact-info-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.contact-info-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3e2a6b;
  margin-bottom: 1rem;
}

.contact-info-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-info-card a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #e5b144;
}
