* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24, 0, 173, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1800ad;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1800ad;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .a-cta-button:hover::after {
  width: 0 !important;
}

.a-cta-button {
  color: white !important;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24, 0, 173, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1800ad;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1800ad;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-menu a.active {
  color: #1800ad;
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 100%;
}

.nav-menu .a-cta-button.active::after {
  width: 0 !important;
}

.mobile-nav-menu a.active {
  padding-left: 30px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #4fd3c4;
}

.mobile-nav-menu a.active svg {
  opacity: 1;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1800ad 0%, #38b6ff 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-content {
  padding: 6rem 2rem 2rem;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.mobile-nav-menu a svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
  padding-left: 30px;
  color: #dfdfdf;
}

.mobile-nav-menu a:hover svg {
  opacity: 1;
}

.mobile-cta {
  margin-top: 2rem;
}

.mobile-cta button {
  width: 100%;
  background: #ffffff;
  color: #1800ad;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-cta button:hover {
  background: #1800ad;
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-social {
  margin-top: 1rem;
  padding-top: 2rem;
}

.mobile-social-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
}

.mobile-social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mobile-social-links a:hover {
  background: #ffffff;
  color: #1800ad;
  transform: translateY(-3px);
}

.mobile-social-links svg {
  width: 20px;
  height: 20px;
}

.stat-label-hero {
  color: #0025cc;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.contact-hero {
  margin-top: 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1615914143778-1a1a6e50c5dd?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1468")
    center/cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00218b;
  opacity: 0.85;
  z-index: 1;
}

.contact-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.contact-main-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-main-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: #1800ad;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(24, 0, 173, 0.08);
  border: 1px solid rgba(24, 0, 173, 0.05);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(24, 0, 173, 0.15);
}

.contact-method-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
}

.contact-method-content h4 {
  font-size: 1.1rem;
  color: #1800ad;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-method-content a,
.contact-method-content p {
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method-content a:hover {
  color: #1800ad;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(24, 0, 173, 0.1);
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1800ad;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  color: #ffffff;
  transform: translateY(-5px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.1);
  border: 1px solid rgba(24, 0, 173, 0.05);
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h3 {
  font-size: 1.8rem;
  color: #1800ad;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.contact-form-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #ff4444;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1800ad;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24, 0, 173, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit-btn {
  background: #1800ad;
  color: #ffffff;
  padding: 1.3rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(24, 0, 173, 0.3);
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 0, 173, 0.4);
  background: #0025cc;
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
}

.cta-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.05),
    rgba(56, 182, 255, 0.05)
  );
  border-radius: 25px;
  padding: 3rem 2rem;
  border: 1px solid rgba(24, 0, 173, 0.1);
}

.cta-container h3 {
  font-size: 1.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-popup.active {
  display: flex;
  opacity: 1;
}

.success-popup-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.success-popup.active .success-popup-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4fd3c4, #38b6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
}

.success-icon svg {
  width: 45px;
  height: 45px;
}

.success-popup-content h3 {
  font-size: 2rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.success-popup-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-close-btn {
  background: #1800ad;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: #0025cc;
  transform: translateY(-2px);
}

.footer {
  background: #0a0052;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  width: 100%;
  max-width: 500px;
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #dadada28;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #4fd3c4;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffffff !important;
  transform: none !important;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: 1px underline white;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .contact-hero {
    min-height: 40vh;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-main-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-method {
    padding: 1.2rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 35px;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form-header h3 {
    font-size: 1.5rem;
  }

  .form-submit-btn {
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }

  .success-popup-content {
    padding: 2rem;
  }

  .success-popup-content h3 {
    font-size: 1.6rem;
  }
}
