:root {
    --primary-color: #1a3a52;
    --primary-dark: #0f2438;
    --accent-color: #0084d4;
    --accent-light: #e8f4ff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Intro Overlay */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.intro-content {
  text-align: center;
  position: relative;
}

.intro-logo-container {
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.5);
}

.intro-logo {
  width: 120px;
  height: auto;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0;
  transform: translateY(20px);
  margin: 0;
}

.intro-line {
  width: 0;
  height: 4px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
}

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

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--accent-light);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 1rem;
  vertical-align: middle;
  background-color: transparent;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-items a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-items a:hover {
  color: var(--primary-color);
}

.nav-extras {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.nav-cta-button:hover {
  background-color: #0066a8;
  transform: translateY(-1px);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.25rem;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 3px;
  transition: var(--transition);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  background-color: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  padding: 8rem 0;
  text-align: center;
  border-bottom: 4px solid var(--accent-color);
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
}

.cta-button:hover {
  background-color: #0066a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 132, 212, 0.4);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 1rem 2.5rem;
  border: 2px solid #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}

.services h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.services-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.service-header {
  padding: 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transition: var(--transition);
}

.service-card:hover .service-header {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f8f9fa 100%);
}

.service-header h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.service-toggle {
  width: 32px;
  height: 32px;
  border: none;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
  position: relative;
}

.service-toggle::before {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.service-toggle[aria-expanded="true"] {
  background-color: #0066a8;
}

.service-toggle[aria-expanded="true"]::before {
  content: '−';
  font-size: 1.5rem;
  font-weight: 300;
}

.service-toggle:hover {
  background-color: #0066a8;
  transform: scale(1.1);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 1px solid var(--border-color);
}

.service-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.service-card.expanded .service-content {
  max-height: 500px;
}

.service-card.expanded .service-content {
  padding: 1.75rem;
}

.services-expertise {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.services-expertise h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.expertise-item {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  transition: var(--transition);
}

.expertise-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.expertise-item h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expertise-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.service-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--accent-light);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  border-top: 5px solid var(--accent-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}


.service-item {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.service-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--light-gray);
  text-align: center;
}

.contact h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.contact p {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact > .container > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form textarea::placeholder {
  color: #999;
  opacity: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form input::placeholder {
  color: #999;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #e74c3c;
  background-color: #fef5f5;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form input.error:focus,
.contact-form textarea.error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group {
  position: relative;
}

.field-error {
  display: block;
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

.contact-form button {
  width: 100%;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--light-gray);
  scroll-margin-top: 100px;
}

.about h2 {
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1rem;
}

.about-toggle {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.about-toggle:hover {
  background-color: #0066a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 132, 212, 0.4);
}

.about-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 132, 212, 0.3);
}

.about-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.about-details.expanded {
  max-height: 1000px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 1000px;
    overflow: visible;
  }
}

.about-details p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
}

.about-map-container {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
}

/* Process Section */
.process {
  padding: 6rem 0;
  background-color: #fff;
}

.process h2 {
  color: var(--primary-color);
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.process-step {
  background: var(--accent-light);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--accent-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: visible;
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

.process-step p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Expertise Section */
.contact {
  padding: 6rem 0;
  background-color: var(--light-gray);
  scroll-margin-top: 100px;
}

.expertise h2 {
  color: var(--primary-color);
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.expertise-item {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.expertise-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.expertise-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.expertise-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background-color: var(--light-gray);
}

.pricing h2 {
  color: var(--primary-color);
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.pricing-item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--accent-color);
  transition: var(--transition);
}

.pricing-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-item .price {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.pricing-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Security Section */
.security {
  padding: 6rem 0;
  background-color: #fff;
}

.security h2 {
  color: var(--primary-color);
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.security-item {
  padding: 2.5rem;
  background-color: var(--accent-light);
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
  transition: var(--transition);
}

.security-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}

.security-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.security-item p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Experience Section */
.experience {
  padding: 6rem 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}

.experience h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.experience-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Experience Section */
.experience {
  padding: 6rem 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}

.experience h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.experience-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.logos-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 12px;
  padding: 3rem 0;
}

.logos-scroll {
  display: flex;
  gap: 4rem;
  animation: infinite-scroll 20s linear infinite;
  will-change: transform;
}

.logos-scroll:hover {
  animation-play-state: paused;
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 3 - 4rem * 3));
  }
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 280px;
  height: 140px;
  background: transparent;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.company-logo img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 3rem 0 2rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 4px solid var(--accent-color);
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-company-info {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

.footer-legal {
  font-size: 0.8rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-legal a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

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

  .nav-items {
    position: fixed;
    top: 100px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    /* Ensure menu is attached to top */
    margin-top: 0;
  }

  .nav-items.active {
    transform: translateY(0);
  }

  .nav-items ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .nav-extras {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-content {
    justify-content: space-between;
  }

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

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

  .features h2,
  .services h2,
  .contact h2 {
    font-size: 2rem;
  }

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

  /* Hamburger Animation */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Intro Overlay Mobile Adjustments */
  .intro-title {
    font-size: 2rem; /* Smaller font for mobile */
  }

  .intro-logo {
    width: 80px; /* Smaller logo for mobile */
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.25rem;
  }

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

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
