body { margin:0; font-family:Arial; background:#fff; color:rgb(0, 0, 0); overflow-x:hidden; }
header { display:flex; justify-content:space-between; padding:20px 50px; background:#07152a; }
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a0f1c; /* Dark premium background */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO SECTION */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* LOGO TEXT */
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .mark {
    color: #00aaff; /* Blue color for MARK */
}

/* NAV LINKS */
nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
    transition: 0.3s;
}

nav a:hover {
    color: #00aaff;
}

.email-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #099bf7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Hover Effect */
.email-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.email-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


:root {
    --p-blue: #007aff;
    --p-black: #0a0a0b;
    --p-gray: #f2f4f7;
    --p-border: #e4e7ec;
    --inner-padding: 60px; /* Controlled equal margin within the card */
}

.premium-form-section {
    padding: 120px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-outer-container {
    width: 100%;
    max-width: 1000px; /* Centered layout with equal outer margins */
    margin: 0 auto;
    padding: 0 20px;
}

.form-header-box {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--p-blue);
    display: block;
    margin-bottom: 15px;
}

.display-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.blue-glow {
    color: var(--p-blue);
    position: relative;
}

/* The Card Styling */
.premium-card {
    background: #ffffff;
    border: 1px solid var(--p-border);
    border-radius: 40px;
    padding: var(--inner-padding); /* Mathematically equal inner margin */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Equal spacing between all inputs */
}

.full-width { grid-column: span 2; }

.field-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--p-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field-wrap input, 
.field-wrap textarea, 
.field-wrap select {
    padding: 18px 20px;
    background: var(--p-gray);
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.field-wrap input:focus, 
.field-wrap textarea:focus, 
.field-wrap select:focus {
    background: #fff;
    border-color: var(--p-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

/* Form Footer */
.form-footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--p-border);
    padding-top: 40px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #667085;
}

/* The Premium Button */
.submit-glow-btn {
    background: var(--p-black);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 100px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.submit-glow-btn:hover {
    background: var(--p-blue);
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.25);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .input-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .form-footer { flex-direction: column; gap: 20px; text-align: center; }
    .premium-card { padding: 30px; }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0f1c;
    flex-direction: column;
    padding: 20px;
    display: none;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Form Container */
  .form-outer-container {
    padding: 0 15px;
  }

  .form-header-box {
    margin-bottom: 40px;
  }

  .display-title {
    font-size: 2rem;
  }

  .form-desc {
    font-size: 14px;
  }

  .premium-card {
    padding: 30px;
    border-radius: 20px;
  }

  .input-grid {
    gap: 25px;
  }

  .field-wrap input,
  .field-wrap textarea,
  .field-wrap select {
    padding: 15px;
  }

  .form-footer {
    flex-direction: column;
    gap: 20px;
  }

  .submit-glow-btn {
    width: 100%;
    justify-content: center;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 55px;
    height: 55px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-col h3 {
    font-size: 22px;
  }

  .footer-col p {
    font-size: 15px;
  }

  .footer-col ul li a {
    font-size: 15px;
  }

  /* Popup */
  .popup-content {
    padding: 25px 30px;
    max-width: 90%;
  }

  .popup-content h2 {
    font-size: 22px;
  }

  .popup-content p {
    font-size: 14px;
  }

  /* Trust cards */
  .trust {
    gap: 100px;
  }

  .trust-card {
    min-width: 180px;
    padding: 15px;
  }

  /* Eyebrow and Title */
  .eyebrow {
    font-size: 0.7rem;
  }

  /* Privacy note */
  .privacy-note {
    font-size: 12px;
  }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 12px 15px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 14px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2.5px;
  }

  /* Form Section */
  .premium-form-section {
    padding: 60px 0;
  }

  .form-outer-container {
    padding: 0 12px;
  }

  .form-header-box {
    margin-bottom: 30px;
  }

  .display-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }

  .form-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  .premium-card {
    padding: 20px;
    border-radius: 16px;
  }

  .input-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .full-width {
    grid-column: span 1;
  }

  .field-wrap label {
    font-size: 0.8rem;
  }

  .field-wrap input,
  .field-wrap textarea,
  .field-wrap select {
    padding: 12px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }

  .field-wrap textarea {
    min-height: 100px;
  }

  .form-footer {
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #e4e7ec;
    padding-top: 20px;
    margin-top: 30px;
  }

  .privacy-note {
    font-size: 11px;
    order: 2;
  }

  .submit-glow-btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    order: 1;
  }

  .btn-icon {
    font-size: 16px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 20px;
  }

  .email-float {
    bottom: 85px;
  }

  .whatsapp-float {
    bottom: 20px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .contact-box {
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px 12px;
    gap: 20px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-col p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-col ul li a {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .socials a {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 8px;
  }

  .footer-bottom {
    padding: 15px;
    font-size: 12px;
  }

  /* Popup */
  .popup {
    padding: 20px;
  }

  .popup-content {
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 95%;
  }

  .popup-content h2 {
    font-size: 20px;
    margin: 0 0 12px 0;
  }

  .popup-content p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
  }

  /* Trust wrapper */
  .trust-wrapper {
    padding: 15px 0;
  }

  .trust {
    gap: 80px;
  }

  .trust-card {
    min-width: 150px;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Eyebrow */
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

/* ===== EXTRA SMALL (under 360px) ===== */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: 12px;
  }

  .display-title {
    font-size: 1.5rem;
  }

  .form-desc {
    font-size: 12px;
  }

  .premium-card {
    padding: 15px;
  }

  .input-grid {
    gap: 15px;
  }

  .field-wrap input,
  .field-wrap textarea {
    padding: 10px 12px;
  }

  .submit-glow-btn {
    padding: 12px;
    font-size: 13px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p {
    font-size: 12px;
  }

  .popup-content {
    padding: 15px 20px;
  }

  .popup-content h2 {
    font-size: 18px;
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dim background */
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3); /* shadow effect */
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.5s ease;
}

.popup-content h2 {
  margin-top: 0;
  color: #0a66c2; /* professional color */
}

.popup-content p {
  color: #333;
  margin-top: 10px;
  font-size: 15px;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

.trust-wrapper {
  overflow: hidden;           /* hide overflow */
  width: 100%;
  background: #f4f6f9;        /* optional background */
  padding: 20px 0;
}

.trust {
  display: flex;
  gap: 150px;                  /* space between cards */
  animation: scroll-left 12s linear infinite;
}

.trust-card {
  flex: 0 0 auto;             /* do not shrink */
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: 600;
  color: #0a66c2;
  min-width: 220px;           /* card width */
}

/* Keyframes for smooth continuous scroll */
@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* MAIN FOOTER */
.footer {
  background: #000; /* PURE BLACK */
  color: #fff;
  font-family: Arial, sans-serif;
  margin-top: 30px;
}

/* TOP CONTACT BAR */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  padding: 20px;
  border-bottom: 1px solid #111;
  background: #050505;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.contact-box .icon {
  font-size: 24px;
  color: #00b4ff;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding: 50px 40px;
}

/* LOGO IMAGE CONTROL */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
  transition: 0.4s ease;
}

/* LOGO HOVER EFFECT */
.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 18px;
  font-size: 30px; /* BIGGER FONT */
}

/* TEXT */
.footer-col p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* ICON COLOR */
.footer-col .icon {
  margin-right: 8px;
  color: #00b4ff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER BLUE EFFECT */
.footer-col ul li a:hover,
.footer-col p:hover {
  color: #00b4ff; /* BRIGHT BLUE */
}

/* SOCIALS */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* SOCIAL HOVER */
.socials a:hover {
  background: #00b4ff;
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #111;
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .contact-box {
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    gap: 12px;
    padding: 14px;
  }

  .contact-box {
    font-size: 14px;
  }

  .footer-logo {
    width: 120px;
  }
}
