
/* Full-page Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Logo Animation */

.preloader-logo {
    width: 80px;
    /* adjust size */
    animation: spin 2s linear infinite;
}


/* Spin Animation */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

html {
    scroll-behavior: smooth;
}
/* Base */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Inter', sans-serif; }

/* Header */
header {
  width:100%;
  padding: 1rem 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  background:#ffffff;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  z-index:1000;
}

/* Logo */
.logo {
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-weight:700;
  font-size:1.2rem;
  color:#0B3D91; /* UCC Blue */
}
.logo img {
  height:40px;
  width:auto;
}

/* Navigation Links */
.nav-links {
  display:flex;
  align-items:center;
  gap:2rem;
}
.nav-links a {
  text-decoration:none;
  color:#1a1a1a;
  font-weight:500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color:#0B3D91;
}

/* 3D Live Map Button */
.live-map-btn {
  padding:0.7rem 1.5rem;
  background: linear-gradient(145deg, #0B3D91, #1a5ac8);
  color:white;
  font-weight:600;
  border:none;
  border-radius:12px;
  cursor:pointer;
  box-shadow: 0 5px 15px rgba(11,61,145,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.live-map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11,61,145,0.4);
}
.live-map-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(11,61,145,0.4);
}

/* Hamburger Menu */
.hamburger {
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}
.hamburger div {
  width:25px;
  height:3px;
  background:#1a1a1a;
  transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #ffffff;
    flex-direction:column;
    padding:2rem 1rem;
    gap:2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right:0;
  }

  .hamburger {
    display:flex;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  text-align: center;
  padding: 2rem;
}

.hero-container {
  max-width: 800px;
}

/* Live Card */
.live-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: #00000010;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.green-dot {
  width: 10px;
  height: 10px;
  background: #00ff7f; /* glowing green */
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff7f;
}

/* Headings */
.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.hero h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #0B3D91; /* UCC Blue */
  margin-bottom: 1rem;
}

/* Text */
.context {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.sub-context {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1.5rem 2.2rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(145deg, #0B3D91, #1a5ac8);
  color: white;
  box-shadow: 0 5px 15px rgba(11,61,145,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11,61,145,0.4);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(11,61,145,0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #0B3D91;
  border: 2px solid #0B3D91;
}
.btn-secondary:hover {
  background: #0B3D91;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1, .hero h2 {
    font-size: 2.2rem;
  }
  .context {
    font-size: 1.2rem;
  }
  .sub-context{
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
  padding: 0.8rem 1.8rem;
  border-radius: 20px;
 
}
  .hero-buttons {
    font-size:1.5rem ;
  }
}

/* Shuttle base */
.shuttle {
  position: absolute;
  width: 60px;
  z-index: 10;
  opacity: 0.8;
}

/* Shuttle images */
.shuttle img {
  width: 100%;
  height: auto;
}


/* Responsive: hide on very small screens */
/* Small screens */
@media (max-width: 480px) {
  .shuttle {
    display: block;      /* show shuttles */
    width: 40px;         /* smaller size */
    opacity: 0.6;        /* less distracting */
  }
}

/* About the System Section */
.about-system {
  width: 100%;
  padding: 6rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Subtitle */
.subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888888;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Main Heading */
.main-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.main-heading .highlight {
  color: #0B3D91;
}

/* Description */
.description {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* About System Button */
.about-button {
  margin-bottom: 4rem;
}
.about-button .btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none; /* remove link style */
  transition: transform 0.2s, box-shadow 0.2s;
  background: linear-gradient(145deg, #0B3D91, #1a5ac8);
  color: white;
  box-shadow: 0 5px 15px rgba(11,61,145,0.4);
}
.about-button .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11,61,145,0.4);
}
.about-button .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(11,61,145,0.4);
}

/* Stats Cards */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  background: #ffffff;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(11,61,145,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11,61,145,0.2);
}
.stat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: #0B3D91;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-text {
  font-size: 1rem;
  color: #333333;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
  .description {
    font-size: 0.7rem;
  }
  .about-button .btn-primary {
    width: 100%;
    text-align: center;
  }
  .stats-container {
    gap: 1rem;
  }
}
/* Scroll animation base */
.fade-section {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* From left */
.fade-left {
  transform: translateX(-60px);
}

/* From right */
.fade-right {
  transform: translateX(60px);
}

/* When visible */
.fade-section.show {
  opacity: 1;
  transform: translateX(0);
}
/* PRICING SECTION */
.pricing-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.pricing-header h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 12px;
}

.pricing-header p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.pricing-note {
  margin-top: 20px;
  padding: 16px;
  background: #eef2ff;
  border-radius: 10px;
  color: #1e40af;
  font-size: 14px;
}

/* CARDS */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card h3 {
  font-size: 22px;
  color: #0f172a;
}

.plan-desc {
  color: #64748b;
  font-size: 14px;
  margin: 8px 0 20px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 10px;
}

/* BUTTONS */
.btn-outline {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid #2563eb;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

.pricing-card .btn-primary {
  margin-top: auto;
  text-align: center;
}

/* POPULAR CARD */
.pricing-card.popular {
  border: 2px solid #2563eb;
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2563eb;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }
}


/* Card header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.emoji {
  font-size: 1.8rem;
}

/* Status badges */
.status {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.status.active {
  background: #e6f9ef;
  color: #1fa463;
}

.status.coming {
  background: #fff4e5;
  color: #e69500;
}

.status.dev {
  background: #e8ecff;
  color: #3a5bff;
}

/* Card content */
.phase-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B3D91;
}

.phase-title {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.phase-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.roadmap-card ul {
  padding-left: 1.2rem;
}

.roadmap-card li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .roadmap-title {
    font-size: 2.1rem;
  }
}
.how-it-works {
  padding: 6rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.how-container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 1rem;
}

.how-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 4rem;
}

/* Cards layout */
.how-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Individual card */
.how-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Card content */
.how-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0B3D91;
}

.step-title {
  font-size: 1.3rem;
  margin: 0.6rem 0;
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Badge colors */
.step-badge.secure {
  background: #e6f9ef;
  color: #1fa463;
}

.step-badge.fast {
  background: #e8ecff;
  color: #3a5bff;
}

.step-badge.open {
  background: #fff4e5;
  color: #e69500;
}

.step-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-title {
    font-size: 2.1rem;
  }
}

.core-capabilities {
  padding: 6rem 2rem;
  background: #ffffff;
  text-align: center;
}

.core-container {
  max-width: 1100px;
  margin: 0 auto;
}

.core-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 1rem;
}

.core-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.core-title span {
  color: #0B3D91;
}

.core-desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 4rem;
}

/* Cards grid */
.core-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Individual card */
.core-card {
  background: #f5f7fa;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.core-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.core-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.core-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .core-title {
    font-size: 2.1rem;
  }

  .core-card {
    padding: 2rem 1.6rem;
  }
}
.reliability-promise {
  padding: 6rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.reliability-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reliability-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 1rem;
}

.reliability-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reliability-desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 4rem;
}

/* Cards */
.reliability-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.reliability-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  text-align: left;
}

.reliability-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.reliability-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.reliability-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Metrics row */
.reliability-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B3D91;
}

/* Responsive */
@media (max-width: 768px) {
  .reliability-title {
    font-size: 2.1rem;
  }

  .reliability-metrics {
    gap: 1.2rem;
  }
}
.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(145deg, #0B3D91, #1a5ac8);
  color: #ffffff;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Pill */
.cta-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Title */
.cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-title span {
  color: #9fd3ff;
}

/* Text */
.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cta-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #0B3D91;
  padding: 0.9rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: #0b3378;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fbfcfe;
  padding: 0.9rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
   box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.3rem;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
.site-footer {
  background: #0b1f3a;
  color: #ffffff;
  padding-top: 4rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.footer-column a:hover {
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin: 0;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .footer-logo {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }
}


.portfolio {
padding: 100px 0;
background: #f9fbfd;
}


.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
}


.portfolio-card {
position: relative;
overflow: hidden;
border-radius: 18px;
background: #fff;
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}


.portfolio-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease, filter 0.5s ease;
}


.portfolio-card:hover img {
transform: scale(1.08);
filter: blur(5px) brightness(0.85);
}


.portfolio-info {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 24px;
background: rgba(255, 255, 255, 0.94);
opacity: 0;
transition: opacity 0.4s ease;
}


.portfolio-card:hover .portfolio-info {
opacity: 1;
}


.portfolio-info h3 {
font-size: 20px;
font-weight: 600;
color: #0f172a;
margin-bottom: 8px;
}


.portfolio-info p {
font-size: 14px;
color: #475569;
margin-bottom: 12px;
}


.portfolio-info span {
font-size: 13px;
font-weight: 500;
color: #2563eb;
}
.contact {
  padding: 100px 20px;
  background: #f9fbfd;
  text-align: center;
}

.contact-center {
  max-width: 500px;
  margin: 0 auto;
}

.contact-center h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.contact-center p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}

/* Contact Info */
.contact-info {
  margin-bottom: 32px;
}

.contact-item {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

.contact-item strong {
  font-weight: 600;
  color: #0f172a;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.form-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-center {
    width: 90%;
  }
}
.contact {
  padding: 80px 20px;
  background: #f9fbfd;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
}

.btn-primary {
  padding: 12px 25px;
  background-color: #ffffff;
  color: #1d4ee2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: white;
}

.form-note {
  font-size: 14px;
  color: #64748b;
  margin-top: 10px;
}

#status {
  margin-top: 15px;
  font-size: 15px;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 28px;
  }
}
