/* Mobile-first responsive design - prevent horizontal scrolling */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Privacy Policy Popup */
.privacy-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.privacy-popup {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(34, 54, 168, 0.3);
  max-width: 700px;
  max-height: 80vh;
  width: 90vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.privacy-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #f0f4ff;
  background: #f7faff;
}
.privacy-popup-header h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #2236a8;
  margin: 0;
}
.privacy-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #2236a8;
  cursor: pointer;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.privacy-close-btn:hover {
  background: #2236a8;
  color: #fff;
}
.privacy-popup-content {
  padding: 2rem;
  overflow-y: auto;
  color: #2236a8;
  flex: 1;
}
.privacy-popup-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2236a8;
}
.privacy-popup-content p, .privacy-popup-content ul {
  font-size: 1rem;
  color: #2236a8;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.privacy-popup-content ul {
  margin-left: 1.2rem;
}
.privacy-popup-content a {
  color: #667eea;
  text-decoration: none;
}
.privacy-popup-content a:hover {
  text-decoration: underline;
}
.footer-policy-btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 200px;
  margin-top: 0.7rem;
}
.footer-policy-btn {
  background: #2236a8;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.7rem;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 2px 8px #2236a822;
  cursor: not-allowed;
  opacity: 0.6;
  transition: background 0.18s, opacity 0.18s;
}
.footer-policy-btn:enabled {
  cursor: pointer;
  opacity: 1;
  background: #2236a8;
}
.footer-policy-btn:enabled:hover {
  background: #667eea;
}
/* Centered video background for home page */
.home-bg-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000; /* Black background for letterboxing */
}
.home-bg-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 aspect ratio */
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: block;
  margin: 0;
  padding: 0;
}

/* Home video caption bottom left */
.home-video-caption {
  position: absolute;
  left: 2vw;
  bottom: 2vw;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #222;
  background: rgba(255,255,255,0.78);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.38rem 1.1rem 0.38rem 0.7rem;
  border-radius: 0.8rem 0.8rem 0.8rem 0.4rem;
  box-shadow: 0 3px 12px 0 #2236a822;
  z-index: 2;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  opacity: 0.99;
  min-width: 120px;
  max-width: 80vw;
  transition: box-shadow 0.3s;
  border: none;
  backdrop-filter: blur(4px) saturate(1.05);
}
.home-video-caption .caption-icon {
  font-size: 0.98em;
  color: #222;
  margin-right: 0.32em;
  display: inline-flex;
  align-items: center;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.home-video-caption .caption-main-text {
  font-size: 0.98em;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #222;
  display: inline;
}
/* Appbar: logo pinned left, menu pinned right, space between */
.boom-in-appbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px 0 rgba(34, 54, 168, 0.15);
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
}
.boom-in-appbar-logo {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.03em;
  user-select: none;
  /* Less 3D, more blue like options */
  text-shadow: 
    1px 1px 0px #1a2980,
    2px 2px 4px rgba(34, 54, 168, 0.15);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  flex: 0 0 auto;
  text-align: left;
  /* Make it clickable */
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.boom-in-appbar-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* Mobile navigation styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  z-index: 10002;
}

.hamburger-line {
  width: 1.75rem;
  height: 3px;
  background: #2236a8;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.35rem, 0.35rem);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.35rem, -0.35rem);
}

.mobile-dropdown {
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(34, 54, 168, 0.15);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-width: 100vw;
}

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

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  color: #2236a8;
  font-size: 1.1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(34, 54, 168, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-item:hover,
.mobile-nav-item.selected {
  background: rgba(34, 54, 168, 0.1);
}

.mobile-nav-item.selected {
  font-weight: 700;
}

.boom-in-options-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  list-style: none;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
  justify-content: flex-end;
  padding-right: 0;
}


.boom-in-options-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  list-style: none;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
  /* Always pinned right */
}
@media (max-width: 768px) {
  .boom-in-appbar {
    padding: 0.4rem 0.7rem;
  }
  .boom-in-appbar-logo {
    font-size: 1.1rem;
    padding: 0 1rem 0 0.3rem;
  }
  
  /* Hide desktop navigation, show mobile menu */
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide any non-desktop nav lists */
  .boom-in-options-list:not(.desktop-nav) {
    display: none;
  }
}
.contact-form {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  max-width: 900px;
  width: 90vw;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow:
    0 4px 8px rgba(34, 54, 168, 0.15),
    0 8px 16px rgba(34, 54, 168, 0.1),
    0 16px 32px rgba(34, 54, 168, 0.05);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s ease;
  position: relative;
}

/* Slight 3D hover effect */
.contact-form:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(34, 54, 168, 0.2),
    0 16px 32px rgba(34, 54, 168, 0.15),
    0 24px 48px rgba(34, 54, 168, 0.1);
}

/* Floating labels inside the form */
.contact-form .form-group {
  position: relative;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
  background: #f7fafc;
  transition: border 0.2s, box-shadow 0.2s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #2236a8;
  box-shadow: 0 0 0 3px rgba(34, 54, 168, 0.1);
}

.contact-form .form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #718096;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  background: #ffffff;
  padding: 0 0.25rem;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  font-size: 0.85rem;
  color: #2236a8;
}

/* Submit Button */
.contact-submit {
  background: linear-gradient(90deg, #2236a8 60%, #667eea 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(34, 54, 168, 0.15);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-submit:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(34, 54, 168, 0.2);
  background: linear-gradient(90deg, #3346c8 60%, #2236a8 100%);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-form {
    max-width: 90%;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 1.5rem 1rem;
    border-radius: 0.6rem;
  }
}
/* Platform Hero Innovative Section */
.platform-hero-container {
  width: 100vw;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
	box-sizing: border-box;
}

.platform-hero {
  width: 100vw;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.platform-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 340px;
  z-index: 1;
  pointer-events: none;
}

.platform-network-svg {
  width: 100vw;
  height: 340px;
  display: block;
}

.platform-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.platform-hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 12px #2236a822, 0 4px 32px #2236a80d;
}

.platform-hero-subtitle {
  font-size: 1.25rem;
  color: #3e4a6d;
  margin-bottom: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.platform-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2236a8 60%, #667eea 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 2px 12px 0 #2236a822;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 0.2rem;
}
.platform-cta-btn:hover,
.platform-cta-btn:focus {
  background: linear-gradient(90deg, #3346c8 60%, #2236a8 100%);
  box-shadow: 0 4px 18px 0 #2236a833;
  transform: translateY(-2px) scale(1.04);
}

.platform-features-row {
  width: 100vw;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  background: #fff;
  flex-wrap: wrap;
}

.platform-feature-card {
  background: #f7faff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 #2236a81a;
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 160px;
  padding: 1.1rem 0.7rem 1rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.platform-feature-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 #2236a822;
}
.platform-feature-icon {
  font-size: 1.3rem;
  color: #2236a8;
  margin-bottom: 0.6rem;
  background: #eaf0ff;
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 #2236a81a;
}
.platform-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2236a8;
  margin-bottom: 0.4rem;
}
.platform-feature-card p {
  font-size: 0.92rem;
  color: #3e4a6d;
  font-weight: 500;
}

@media (max-width: 900px) {
  .platform-hero-title {
    font-size: 1.3rem;
  }
  .platform-features-row {
    gap: 0.5rem;
    padding: 0.7rem 0.2rem 1.2rem 0.2rem;
  }
  .platform-feature-card {
    min-width: 80px;
    max-width: 120px;
    padding: 0.7rem 0.3rem 0.5rem 0.3rem;
  }
  .platform-feature-icon {
    font-size: 1rem;
    width: 1.3rem;
    height: 1.3rem;
    margin-bottom: 0.3rem;
  }
  .platform-feature-card h3 {
    font-size: 0.85rem;
  }
  .platform-feature-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .platform-hero {
    min-height: 220px;
    padding-top: 2.2rem;
    padding-bottom: 1.2rem;
  }
  .platform-hero-title {
    font-size: 1.2rem;
  }
  .platform-hero-subtitle {
    font-size: 0.95rem;
  }
  .platform-features-row {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0.2rem 1.2rem 0.2rem;
  }
  .platform-feature-card {
    min-width: 0;
    max-width: 100vw;
    padding: 0.9rem 0.3rem 0.7rem 0.3rem;
  }
}
/* Five-screen collage for platform preview */
.screen-feed {
  left: 2%;
  top: 32px;
  width: 340px;
  transform: rotate(-7deg) scale(0.97);
  z-index: 2;
}
.screen-campus {
  left: 18%;
  top: 0;
  width: 320px;
  transform: rotate(4deg) scale(1.01);
  z-index: 3;
}
.screen-hub {
  left: 36%;
  top: 24px;
  width: 300px;
  transform: rotate(-3deg) scale(1.04);
  z-index: 4;
}
.screen-events {
  left: 54%;
  top: 38px;
  width: 260px;
  transform: rotate(6deg) scale(0.98);
  z-index: 3;
}
.screen-chat {
  left: 68%;
  top: 70px;
  width: 200px;
  transform: rotate(-5deg) scale(0.95);
  z-index: 2;
}
/* Platform Collage Preview Styles */
.platform-preview-container {
  width: 100vw;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7faff;
  padding: 4.5rem 0 3.5rem 0;
  box-sizing: border-box;
}

.platform-collage {
  position: relative;
  width: 820px;
  max-width: 98vw;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-screen {
  position: absolute;
  box-shadow: 0 8px 32px 0 #2236a81a, 0 2px 8px 0 #2236a822;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  cursor: pointer;
  background: #fff;
  z-index: 1;
}

.platform-screen img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}


@media (max-width: 900px) {
  .platform-collage {
    width: 98vw;
    height: 180px;
  }
  .screen-feed {
    left: 0%;
    width: 120px;
    top: 18px;
  }
  .screen-campus {
    left: 14%;
    width: 100px;
    top: 0;
  }
  .screen-hub {
    left: 28%;
    width: 90px;
    top: 12px;
  }
  .screen-events {
    left: 42%;
    width: 80px;
    top: 22px;
  }
  .screen-chat {
    left: 54%;
    width: 70px;
    top: 38px;
  }
}

/* Hover effect: scale up and bring to front */
.platform-screen:hover {
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 12px 40px 0 #2236a82a, 0 4px 16px 0 #2236a844;
  z-index: 10;
}

@media (max-width: 900px) {
  .platform-collage {
    width: 98vw;
    height: 220px;
  }
  .screen-dashboard {
    left: 2%;
    width: 220px;
    top: 10px;
  }
  .screen-chat {
    left: 22%;
    width: 180px;
    top: 0;
  }
  .screen-events {
    left: 44%;
    width: 160px;
    top: 22px;
  }
  .screen-profile {
    left: 62%;
    width: 140px;
    top: 50px;
  }
}

@media (max-width: 600px) {
  .platform-preview-container {
    padding: 2.5rem 0 1.5rem 0;
    min-height: 220px;
  }
  .platform-collage {
    width: 100vw;
    height: 160px;
  }
  .platform-screen {
    border-radius: 0.7rem;
  }
  .screen-dashboard {
    left: 0%;
    width: 120px;
    top: 6px;
  }
  .screen-chat {
    left: 18%;
    width: 100px;
    top: 0;
  }
  .screen-events {
    left: 36%;
    width: 90px;
    top: 12px;
  }
  .screen-profile {
    left: 54%;
    width: 80px;
    top: 28px;
  }
}
/* Diagonal Split Contact Page Layout */
.diagonal-contact {
  min-height: calc(100vh - 4rem);
  width: 100vw;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.diagonal-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(34, 54, 168, 0.12);
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.diagonal-left {
  flex: 1 1 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 3rem 2rem;
}

.diagonal-right {
  flex: 1 1 0;
  background: linear-gradient(135deg, #2236a8 0%, #667eea 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 3rem 2rem;
  gap: 1.5rem;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.diagonal-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.diagonal-right .contact-logo-large {
  color: #fff;
  text-shadow: 0 2px 12px #2236a855, 0 4px 32px #2236a80d;
}

.diagonal-right .contact-info-block {
  color: #eaf0ff;
}

.diagonal-right .contact-info-item i {
  color: #fff;
}

.diagonal-right .contact-social a {
  background: #fff2;
  color: #fff;
  box-shadow: 0 2px 8px 0 #2236a822;
}
.diagonal-right .contact-social a:hover {
  background: #fff;
  color: #2236a8;
}

@media (max-width: 900px) {
  .diagonal-container {
    flex-direction: column;
    min-height: 0;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 #2236a81a;
  }
  .diagonal-left, .diagonal-right {
    clip-path: none;
    border-radius: 0;
    width: 100%;
    min-height: 260px;
    padding: 2rem 1.2rem;
  }
  .diagonal-right {
    color: #fff;
  }
}

@media (max-width: 600px) {
  .diagonal-container {
    flex-direction: column;
    max-width: 98vw;
    border-radius: 0.7rem;
    box-shadow: 0 1px 6px 0 #2236a80d;
  }
  .diagonal-left, .diagonal-right {
    padding: 1.2rem 0.5rem;
    min-height: 180px;
  }
  .contact-logo-large {
    font-size: 1.3rem;
  }
}

/* Boom-In Home Title Style */
/* Boom-In Home Title Style (Original) */
.boom-in-title {
  font-size: 12vw;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  /* More blue 3D shadows with blue-focused gradient */
  background: linear-gradient(135deg, #2236a8 0%, #1a2980 80%, #2952cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    2px 2px 0px #1a2980,
    4px 4px 0px #152660,
    6px 6px 0px #0f1d4a,
    8px 8px 12px rgba(34, 54, 168, 0.5),
    12px 12px 20px rgba(34, 54, 168, 0.4),
    16px 16px 30px rgba(34, 54, 168, 0.3);
  line-height: 1.05;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: boomInSubtle 1.2s cubic-bezier(.33,1,.68,1) 0.1s both;
}

.contact-left {
  flex: 1 1 0;
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.contact-right {
  flex: 1 1 0;
  background: linear-gradient(135deg, #eaf0ff 0%, #f7faff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  gap: 2.2rem;
}

.contact-logo-large {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px #2236a822, 0 4px 32px #2236a80d;
  margin-bottom: 0.7rem;
  text-align: center;
  user-select: none;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 1.05rem;
  color: #2236a8;
  margin-bottom: 0.7rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.contact-info-item i {
  color: #667eea;
  font-size: 1.1em;
}

.contact-social {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2236a8;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px 0 #2236a81a;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
}

.contact-social a:hover {
  background: #2236a8;
  color: #fff;
  box-shadow: 0 4px 18px 0 #2236a833;
}

/* Custom X logo styling */
.contact-social .x-logo {
  font-family: 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: normal;
}

/* Floating label form fields */
.floating-label {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-label input,
.floating-label textarea {
  width: 100%;
  padding: 1.1rem 1rem 0.6rem 1rem;
  font-size: 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.6rem;
  background: #f7fafc;
  color: #2236a8;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  font-family: 'Inter', Arial, sans-serif;
  resize: none;
}

.floating-label input:focus,
.floating-label textarea:focus {
  border: 1.5px solid #2236a8;
  box-shadow: 0 0 0 2px #2236a822;
}

.floating-label label {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  color: #718096;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  background: transparent;
  transition: 0.18s cubic-bezier(.4,0,.2,1);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.88rem;
  color: #2236a8;
  background: #fff;
  padding: 0 0.3em;
}

.contact-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
}

.contact-header-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
  justify-content: flex-start;
}

.contact-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2236a8;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.01em;
}

.contact-submit {
  background: linear-gradient(90deg, #2236a8 60%, #667eea 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #2236a822;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.contact-submit:hover,
.contact-submit:focus {
  background: linear-gradient(90deg, #3346c8 60%, #2236a8 100%);
  box-shadow: 0 4px 18px 0 #2236a833;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    min-height: 0;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 #2236a81a;
  }
  .contact-left, .contact-right {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .contact-container {
    flex-direction: column;
    max-width: 98vw;
    border-radius: 0.7rem;
    box-shadow: 0 1px 6px 0 #2236a80d;
  }
  .contact-left, .contact-right {
    padding: 1.2rem 0.5rem;
  }
  .contact-logo-large {
    font-size: 1.3rem;
  }
  .contact-title {
    font-size: 1.1rem;
  }
}
/* Contact page full background color */
.contact-content-centered {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6.5rem;
  box-sizing: border-box;
  background: #f3f6fb;
}
/* Center contact form below appbar, avoid overlap */
.contact-content-centered {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6.5rem;
  box-sizing: border-box;
}

/* Contact form header row: logo left, title right */
.contact-header-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
  justify-content: flex-start;
}

.contact-logo {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px #2236a822, 0 4px 32px #2236a80d;
  user-select: none;
  margin-bottom: 0;
  margin-right: 0.2rem;
  padding: 0.1rem 0.7rem 0.1rem 0;
  border-right: 2px solid #e2e8f0;
}

.contact-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2236a8;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.01em;
}
/* Contact Form Wrapper and Logo */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
}

.contact-logo {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #2236a8;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
  text-align: center;
  text-shadow: 0 2px 12px #2236a822, 0 4px 32px #2236a80d;
  user-select: none;
}
/* Contact Form Styles for Contact Page */
.contact-form {
  background: transparent;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 0;
  box-shadow: none;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2236a8;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 1rem;
  color: #2236a8;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.6rem;
  background: #f7fafc;
  color: #2236a8;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #2236a8;
  box-shadow: 0 0 0 2px #2236a822;
}

.contact-submit {
  background: #2236a8;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #2236a822;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.contact-submit:hover,
.contact-submit:focus {
  background: #3346c8;
  box-shadow: 0 4px 18px 0 #2236a833;
  transform: translateY(-2px) scale(1.03);
}
.boom-in-option-item.selected {
  background: #2236a8;
  color: #fff;
  box-shadow: 0 2px 12px 0 #2236a822;
  border-radius: 0.7rem;
  cursor: default;
}
.boom-in-logo {
  color: #2236a8;
  font-size: 2.1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-right: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  user-select: none;
}
.boom-in-subtitle-fade {
  display: none;
}
.boom-in-appbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10001;
  background: #fff !important;
  box-shadow: 0 2px 12px 0 #2236a822;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  min-width: 0;
  max-width: none;
  transition: background 0.2s, box-shadow 0.2s;
}

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

/* Arrows row at bottom, only arrows clickable */


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

:root {
  --primary-color: #667eea;
  --primary-dark: #5a6fd8;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body, html {
  min-height: 100vh;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #0a174e;
  background: #fff;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}
/* Boom-In Static Landing Styles */
.boom-in-static {
  min-height: 92vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  flex-direction: column;
  padding-top: 4.2rem;
  box-sizing: border-box;
}
/* Footer styles */
.boom-in-footer {
  width: 100vw;
  background: #f7faff;
  color: #2236a8;
  padding: 2.2rem 0 0.7rem 0;
  margin-top: 2.5rem;
  box-shadow: 0 -2px 12px 0 #2236a81a;
  font-size: 1rem;
  position: relative;
  z-index: 10;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-link {
  color: #2236a8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.footer-link:hover {
  color: #667eea;
  text-decoration: underline;
}
.footer-policy {
  flex: 1 1 400px;
  font-size: 0.98rem;
  color: #2236a8;
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px #2236a81a;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}
.footer-policy h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.footer-policy ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
}
.footer-policy li {
  margin-bottom: 0.2rem;
}
.footer-bottom {
  text-align: center;
  color: #3e4a6d;
  font-size: 0.95rem;
  margin-top: 0.7rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .footer-policy {
    padding: 1rem 0.7rem;
  }
}

.boom-in-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 900px;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 2;
}

.boom-in-static {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  background: #fff;
  box-sizing: border-box;
}


@keyframes boomInSubtle {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.boom-in-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 0;
}





.boom-in-options-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.2rem;
  margin: 0 0.8rem 0 0.8rem;
  list-style: none;
  padding: 0;
  background: transparent;
}

.boom-in-option-item {
  color: #2236a8;
  font-size: 0.97rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  user-select: none;
  border-radius: 0.7rem;
}






.boom-in-option-item:hover, .boom-in-option-item:focus {
  color: #fff;
  background: #2236a8;
  outline: none;
  box-shadow: 0 2px 12px 0 #2236a822;
}


.boom-in-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.08rem;
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.18rem 0.7rem;
  border-radius: 1.5rem;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: color 0.18s, text-shadow 0.18s, transform 0.18s;
  user-select: none;
  border: none;
  outline: none;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff 60%, #5ee7ff 100%);
  text-shadow: 0 0 8px #5ee7ff, 0 0 18px #1a2a4f99;
  filter: brightness(1.15);
}

.boom-in-arrow:focus, .boom-in-arrow:hover {
  color: #fff;
  background: none;
  box-shadow: none;
  transform: scale(1.12) translateY(-2px);
}

.arrow-svg {
  display: block;
  width: 44px;
  height: 36px;
  margin: 0 auto;
}

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

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.8rem;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--gradient);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.cta-button::after {
  display: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* About Section */
.about {
  padding: 100px 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  margin: 0;
}

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

.stat {
  text-align: center;
  padding: 2rem;
    max-width: 400px;
    width: 100%;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-light);
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.team-member {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.member-image {
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.member-image i {
  font-size: 3rem;
  color: white;
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.member-social a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

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

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-medium);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-graphic {
    height: 200px;
    font-size: 100px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header,
.service-card,
.team-member {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}

/* Icon Mosaic Banner Styles */
.icon-mosaic-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
  margin-bottom: 0.5rem;
}
.icon-mosaic-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5rem;
  width: 420px;
  max-width: 90vw;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}
.icon-mosaic-bg i {
  font-size: 2.7rem;
  color: #2236a8;
  opacity: 1;
  animation: iconMosaicFade 3.5s infinite alternate;
}
.icon-mosaic-bg i:nth-child(2n) {
  color: #667eea;
  opacity: 0.95;
  animation-delay: 0.7s;
}
.icon-mosaic-bg i:nth-child(3n) {
  color: #2236a8;
  opacity: 0.9;
  animation-delay: 1.2s;
}
.icon-mosaic-bg i:nth-child(4n) {
  color: #667eea;
  opacity: 0.85;
  animation-delay: 1.8s;
}
@keyframes iconMosaicFade {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 0.8; transform: scale(1); }
}

/* Comprehensive Mobile Styles - Prevent Horizontal Scrolling */
@media (max-width: 768px) {
  /* Global mobile fixes */
  .boom-in-static {
    padding-top: 4rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Title responsive sizing */
  .boom-in-title {
    font-size: 15vw;
    padding: 0 1rem;
    word-break: break-word;
  }
  
  /* Video caption mobile */
  .home-video-caption {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 0.9rem;
  }
  
  /* Contact page mobile improvements */
  .diagonal-contact {
    padding: 1rem 0.5rem;
    min-height: calc(100vh - 4rem);
  }
  
  .diagonal-container {
    flex-direction: column;
    min-height: auto;
    max-width: 100%;
    margin: 0;
  }
  
  .diagonal-left, .diagonal-right {
    width: 100%;
    flex: none;
    padding: 2rem 1.5rem;
  }
  
  .diagonal-right {
    clip-path: none;
    background: linear-gradient(135deg, #2236a8 0%, #667eea 100%);
  }
  
  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    margin: 0;
  }
  
  /* Platform page mobile */
  .platform-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
  
  /* Footer mobile */
  .boom-in-footer {
    padding: 1.5rem 0 0.5rem 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  /* Privacy popup mobile */
  .privacy-popup {
    width: 95vw;
    margin: 0 auto;
    max-height: 90vh;
  }
  
  .privacy-popup-content {
    padding: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .boom-in-appbar {
    padding: 0.3rem 0.5rem;
  }
  
  .boom-in-appbar-logo {
    font-size: 1rem;
  }
  
  .boom-in-title {
    font-size: 18vw;
  }
  
  .mobile-nav-item {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .diagonal-left, .diagonal-right {
    padding: 1.5rem 1rem;
  }
}
