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

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #fbbf24;
  --text-dark: #ffffff;
  --text-light: #b0b0b0;
  --bg-white: #000000;
  --bg-light: #202020;
  --bg-dark: #000000;
  --border-color: #333333;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #fbbf24;
  --text-dark: #ffffff;
  --text-light: #b0b0b0;
  --bg-white: #000000;
  --bg-light: #202020;
  --bg-dark: #000000;
  --border-color: #333333;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-size: 16px;
  cursor: none; /* hide default cursor on desktop; JS guards mobile */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Prevent horizontal overflow on mobile */
* {
  max-width: 100%;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------ */
/* Custom cursor                                                      */
/* ------------------------------------------------------------------ */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: radial-gradient(circle, rgba(148, 163, 184, 0.16), transparent 72%);
  box-shadow: 0 0 20px rgba(129, 140, 248, 0.75);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    left 0.08s ease-out,
    top 0.08s ease-out,
    transform 0.08s ease-out,
    opacity 0.18s ease-out,
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: screen;
}

.custom-cursor::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(248, 250, 252, 0.96), transparent 70%);
  opacity: 1;
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.6);
  border-color: rgba(251, 191, 36, 0.95);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.95);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent 78%);
}

.custom-cursor.explode {
  animation: cursor-ripple 0.35s ease-out forwards;
}

.custom-cursor.link-hover {
  border-color: rgba(96, 165, 250, 0.95);
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.85);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 75%);
}

@keyframes cursor-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}

h1,
h2,
h3,
.section-header h2,
.hero-text h1,
.service-card h3,
.feature-card h3,
.site-header,
.main-nav ul li a,
.btn,
.btn-header {
  font-family: "Space Grotesk", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background-color: rgba(15, 23, 42, 0.6);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
}

.site-header {
  background: linear-gradient(
    45deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  left: 0;
  right: 0;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area .logo-img {
  height: 32px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-area .logo-img:hover {
  transform: scale(1.05);
}

.logo-combo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  font-family: "Space Grotesk", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul li a {
  color: white;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #202020;
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  display: block !important;
  flex-direction: column !important;
  width: 100%;
  text-align: center;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  display: block !important;
  width: 100%;
  flex: none !important;
}

.dropdown-menu li a {
  display: block !important;
  width: 100%;
  padding: 12px 20px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

.dropdown-menu li a:hover {
  background-color: rgba(30, 64, 175, 0.2);
  color: var(--secondary-color);
  padding-left: 25px;
}

.btn-header {
  padding: 9px 22px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.btn-header:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background:
    radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), transparent 55%),
    linear-gradient(to bottom, #111827, #020617);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-menu.active {
  display: block;
}

.mobile-nav-menu ul {
  list-style: none;
  padding: 20px 0;
}

.mobile-nav-menu ul li {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.mobile-nav-menu ul li a {
  display: block;
  padding: 15px 20px;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav-menu ul li a:hover {
  background-color: rgba(15, 23, 42, 0.85);
  color: #ffffff;
}

section {
  padding: 100px 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.hero-section {
  padding: 140px 0 100px;
  background: linear-gradient(
    45deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  margin-top: 70px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f59e0b 100%);
  padding: 20px 30px;
  border-radius: 12px;
  color: white;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.hero-text > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.7;
}

.hero-features {
  margin-bottom: 35px;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.hero-feature-item i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 3px;
}

.hero-feature-item span {
  color: var(--text-light);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-image-overlay {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  z-index: 2;
}

.hero-overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  background: linear-gradient(
    135deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  padding: 90px 0;
}

.services-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card,
.feature-card {
  background-color: #151515;
  padding: 30px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before,
.feature-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border-color: var(--primary-color);
}

.service-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon i,
.feature-icon i {
  font-size: 22px;
  color: #ffffff;
}

.service-card h3,
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p,
.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.about-section {
  background-color: #202020;
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text > p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature i {
  color: var(--primary-color);
  font-size: 18px;
}

.about-feature span {
  color: var(--text-dark);
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-stat .stat-label {
  color: var(--text-light);
  font-size: 14px;
}

.about-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-badge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-section {
  background: linear-gradient(
    135deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  padding: 90px 0;
}

.faq-section {
  background-color: #202020;
  padding: 100px 0;
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.faq-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.faq-header-text {
  text-align: left;
}

.faq-header-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.faq-header-text p {
  font-size: 18px;
  color: var(--text-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-item {
  background-color: #202020;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(30, 64, 175, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 600;
}

.team-section {
  background-color: #202020;
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background-color: #202020;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--secondary-color);
  padding-top: 20px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.team-card-image {
  width: 180px;
  height: 180px;
  margin: 40px auto 20px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
  padding: 5px;
  transition: all 0.3s ease;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.team-card:hover .team-card-image {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-content {
  padding: 20px 30px 30px;
  color: white;
  text-align: center;
}

.team-card-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.team-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-weight: 500;
}

.team-info {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.team-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.team-info-item:last-child {
  margin-bottom: 0;
}

.team-info-item i {
  color: var(--secondary-color);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.team-contact-item i {
  color: var(--secondary-color);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.team-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.team-contact-item a:hover {
  color: var(--secondary-color);
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(30, 64, 175, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  line-height: 1.4;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  min-height: 56px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

.contact-section {
  background: linear-gradient(
    135deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  padding: 90px 0 110px;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-item i {
  width: 46px;
  height: 46px;
  background: radial-gradient(
    circle at top left,
    rgba(251, 191, 36, 0.9),
    rgba(30, 64, 175, 0.95)
  );
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item p {
  color: var(--text-light);
  font-size: 16px;
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-social a {
  width: 45px;
  height: 45px;
  background-color: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background-color: #151515;
  padding: 34px 28px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  margin-top: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 3px;
}

.form-message {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(34, 197, 94, 0.3);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background-color: #1a1a1a;
  color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.site-footer {
  background: linear-gradient(
    135deg,
    #1e40af 0%,
    #020617 35%,
    #020617 65%,
    #1e40af 100%
  );
  color: white;
  padding: 60px 0 30px;
}

/* Make Microsoft Teams icon stand out a bit more */
.footer-social a[title="Microsoft Teams"] i,
.contact-social a[title="Microsoft Teams"] i {
  color: #8b9cf5;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.9);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
  margin-top: 3px;
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .hero-main,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hero-image-overlay {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
  }

  .about-image-badge {
    width: 100px;
    height: 100px;
  }

  .faq-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .faq-header-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .about-text h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    font-size: 22px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-nav-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  .mobile-nav-menu .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding: 8px 0;
    border-radius: 0;
    flex-direction: column !important;
    text-align: center;
  }

  .mobile-nav-menu .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .mobile-nav-menu .dropdown-menu li {
    display: block !important;
    width: 100%;
  }

  .mobile-nav-menu .dropdown-menu li a {
    display: block !important;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .btn-header {
    display: none;
  }

  .container {
    width: 95%;
    padding: 0 15px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .hero-section {
    padding: 120px 0 70px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-text > p {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
  }

  .stat-box {
    width: 100%;
    padding: 18px 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 25px;
  }

  .hero-image-overlay {
    width: 120px;
    height: 120px;
    bottom: -15px;
    right: -15px;
  }

  .services-section,
  .about-section,
  .why-choose-section,
  .faq-section,
  .team-section,
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 16px;
    min-width: 180px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .feature-card {
    padding: 30px 20px;
  }

  .service-card h3,
  .feature-card h3 {
    font-size: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text > p {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-image-badge {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 10px;
  }

  .faq-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .faq-header-text {
    text-align: center;
  }

  .faq-header-text h2 {
    font-size: 32px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-card-image {
    width: 150px;
    height: 150px;
    margin: 30px auto 15px;
  }

  .team-card-content {
    padding: 20px;
  }

  .team-card-content h3 {
    font-size: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-info-item {
    margin-bottom: 25px;
  }

  .contact-info-item i {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 12px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .site-header {
    padding: 12px 0;
  }

  .logo-area .logo-img {
    height: 35px;
  }

  .hero-section {
    padding: 100px 0 50px;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-text > p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-feature-item {
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-feature-item i {
    font-size: 18px;
  }

  .hero-feature-item span {
    font-size: 14px;
  }

  .hero-stats {
    margin: 20px 0;
    gap: 12px;
  }

  .stat-box {
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 15px;
  }

  .services-section,
  .about-section,
  .why-choose-section,
  .faq-section,
  .team-section,
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .btn-cta {
    padding: 12px 28px;
    font-size: 15px;
    min-width: 160px;
    min-height: 48px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .footer-column ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 8px;
    text-align: left;
  }

  .footer-column ul li {
    margin-bottom: 6px;
  }

  /* Contact info (Email / Teams / Phone / Address) 2x2 on small phones */
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
  }

  .contact-info-item {
    margin-bottom: 0;
  }

  .contact-info-item h3 {
    font-size: 15px;
  }

  .contact-info-item a,
  .contact-info-item p {
    font-size: 13px;
  }

  /* Hide social icons row under contact info on very small screens */
  .contact-social {
    display: none;
  }

  .service-card,
  .feature-card {
    padding: 25px 18px;
  }

  .service-card h3,
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-card p,
  .feature-card p {
    font-size: 14px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text > p {
    font-size: 15px;
  }

  .about-feature span {
    font-size: 14px;
  }

  .about-stat .stat-number {
    font-size: 36px;
  }

  .about-stat .stat-label {
    font-size: 13px;
  }

  .faq-header-text h2 {
    font-size: 28px;
  }

  .faq-header-text p {
    font-size: 15px;
  }

  .faq-question {
    padding: 18px 15px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 15px 18px;
    font-size: 14px;
  }

  .team-card-content h3 {
    font-size: 22px;
  }

  .team-title {
    font-size: 14px;
  }

  .team-info-item {
    font-size: 14px;
  }

  .contact-info-item h3 {
    font-size: 16px;
  }

  .contact-info-item a,
  .contact-info-item p {
    font-size: 14px;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column p,
  .footer-column ul li a {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .container {
    width: 98%;
    padding: 0 10px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-stats {
    gap: 15px;
  }

  .about-stat .stat-number {
    font-size: 32px;
  }

  .about-stat .stat-label {
    font-size: 12px;
  }

  .stat-box {
    padding: 12px 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .service-card,
  .feature-card {
    padding: 20px 15px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .btn-header,
  .contact-social a,
  .footer-social a {
    min-height: 44px;
    min-width: 44px;
  }

  .faq-question {
    min-height: 44px;
  }

  .mobile-nav-menu ul li a {
    min-height: 44px;
  }
}
