/* =============================
   RESET & GLOBAL STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =============================
   NAVBAR
============================= */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 64px;
  width: auto;
}

.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002b65;
  letter-spacing: 0.5px;
}

.nav-links a {
  margin-left: 20px;
  font-weight: 500;
  color: #002b65;
  text-decoration: none;
}

.nav-links a:hover {
  color: #0078ff;
}

/* =============================
   HERO SECTION
============================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.75), rgba(0, 43, 101, 0.8)),
              url("../img/clouds-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 43, 101, 0.4);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.cta-group {
  margin-top: 25px;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin: 10px;
  transition: all 0.2s ease;
}

.cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

.cta-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll cue arrow */
.scroll-cue {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================
   RESULTS SECTION
============================= */
.results {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  text-align: center;
  padding: 70px 20px;
}

.results h2 {
  font-size: 2rem;
  color: #002b65;
  margin-bottom: 10px;
}

.results-subtext {
  color: #555;
  margin-bottom: 45px;
  font-size: 1.1rem;
}

.results-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.result-box {
  background: #ffffff;
  border-radius: 12px;
  border-top: 4px solid #0078ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.result-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002b65;
  margin-bottom: 10px;
}

.result-box p {
  color: #444;
  font-size: 1.05rem;
}

/* =============================
   VALUE PROPOSITION
============================= */
.value {
  padding: 80px 20px;
  text-align: center;
}

.value h2 {
  font-size: 2rem;
  color: #002b65;
  margin-bottom: 20px;
}

.value p {
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

/* =============================
   CORE SERVICES (2x2 GRID)
============================= */
.services {
  background: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f7f9fc;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid #0078ff;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #002b65;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: #333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card a {
  font-weight: 600;
  color: #0078ff;
  text-decoration: none;
}

/* =============================
   WHY CAST
============================= */
.why-cast {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  text-align: left;
  padding: 80px 20px;
}

.why-cast h2 {
  color: #002b65;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.proof {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
}

.checklist li {
  margin: 12px 0;
  font-size: 1.1rem;
  padding-left: 8px;
  border-left: 3px solid #0078ff;
}

/* =============================
   TESTIMONIAL
============================= */
.testimonial {
  background: #eef3f8;
  padding: 80px 20px;
  text-align: center;
}

.testimonial blockquote {
  background: #ffffff;
  border-left: 4px solid #0078ff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #333;
}

.testimonial cite {
  display: block;
  margin-top: 15px;
  color: #002b65;
  font-style: normal;
  font-weight: 500;
}

/* =============================
   FOOTER
============================= */
.footer {
  background: #002b65;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.footer-cta {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-button {
  background: #0078ff;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-button:hover {
  background: #005ec3;
}

.footer a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 10px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .brand-name {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .navbar .container {
    flex-direction: column;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .results-grid,
  .service-grid {
    flex-direction: column;
  }

  .result-box {
    width: 100%;
  }
}

/* =============================
   SUBPAGE HERO (smaller hero)
============================= */
.sub-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0,120,255,0.75), rgba(0,43,101,0.85)),
              url("../img/clouds-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}

.sub-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 43, 101, 0.35);
}

.sub-hero .container {
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sub-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* =============================
   PAGE CONTENT
============================= */
.page-content {
  padding: 80px 20px;
  background: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.page-content h2 {
  color: #002b65;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.page-content h3 {
  color: #002b65;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .profile-img {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* =============================
   CTA SECTION (bottom of Services page)
============================= */
.cta-section {
  background: linear-gradient(135deg, #0078ff, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
}

/* Adjust bullet lists in service cards */
.service-card ul {
  margin-top: 15px;
  margin-left: 18px;
  color: #333;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
/* =============================
   SERVICES PAGE ENHANCEMENTS
============================= */

/* Lists inside service cards */
.service-card ul {
  margin-top: 15px;
  margin-left: 20px;
  color: #333;
  line-height: 1.6;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0078ff, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
}
/* =============================
   PROCESS PAGE STYLES
============================= */

/* === Layout container === */
.page-content {
  padding: 80px 20px;
  background: #ffffff;
}

.page-content h2 {
  text-align: center;
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* === Process grid === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* === Individual process cards === */
.process-card {
  background: #f7f9fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 350px; /* Ensures consistent card height */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

/* === Sequential fade animation delay === */
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.4s; }
.process-card:nth-child(4) { animation-delay: 0.6s; }

/* === Hover state === */
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* === Phase number === */
.phase-number {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 120, 255, 0.15);
}

/* === Card content === */
.process-card h3 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding-left: 5px;
}

.process-card p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.process-card ul {
  margin-left: 18px;
  color: #444;
  font-size: 0.95rem;
}

.process-card li {
  margin-bottom: 8px;
}

/* === Fade animation keyframes === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================
   CTA SECTION (bottom banner)
============================= */
.cta-section {
  background: linear-gradient(135deg, #005ec3, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .phase-number {
    font-size: 2rem;
  }

  .process-card {
    min-height: auto;
  }

  .page-content {
    padding: 60px 15px;
  }

  .cta-section {
    padding: 60px 15px;
  }
}
/* WHO WE SERVE PAGE ENHANCEMENTS */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.serve-card {
  background: #f7f9fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.serve-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.serve-card h3 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.serve-card p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.serve-card ul {
  margin-left: 18px;
  color: #444;
  font-size: 0.95rem;
}

.serve-card li {
  margin-bottom: 8px;
}

.cta-section {
  background: linear-gradient(135deg, #005ec3, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .serve-img {
    height: 160px;
  }
}
/* INSIGHTS PAGE FINAL POLISH */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.insight-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: #0078ff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.insight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-body {
  padding: 20px 25px;
  flex-grow: 1;
}

.insight-date {
  display: block;
  font-size: 0.85rem;
  color: #0078ff;
  margin-bottom: 6px;
}

.insight-card h3 {
  color: #002b65;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #0078ff;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .insight-img {
    height: 160px;
  }
}
/* =============================
   CONTACT PAGE STYLES
============================= */

.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form h2,
.contact-info h2 {
  color: #002b65;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #002b65;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d5dce5;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078ff;
  outline: none;
}

.contact-form button {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #0078ff;
  color: white;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #005ec3;
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info a {
  color: #0078ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.linkedin-btn {
  display: inline-block;
  background: #ffffff;          /* White background by default */
  color: #000000;              /* Black text */
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #0077b5;   /* LinkedIn blue border */
  transition: all 0.25s ease;
}

.linkedin-btn:hover {
  background: #0077b5;         /* LinkedIn blue on hover */
  color: #ffffff;              /* White text on hover */
  transform: translateY(-2px);
}

/* Responsive Layout */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-top: 40px;
  }
}
/* =============================
   LEGAL PAGES STYLES
============================= */
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
}

.legal-text h2 {
  color: #002b65;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-text p,
.legal-text ul {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.legal-text ul {
  list-style: disc;
  margin-left: 25px;
}
/* =============================
   THANK YOU PAGE STYLES
============================= */
.thank-you-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-text h2 {
  color: #002b65;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.thank-you-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
}
/* --- Center both buttons on thank-you page --- */
.thank-you-text {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;
  flex-wrap: wrap;           /* handles small screens */
  gap: 12px;                 /* even space between buttons */
  text-align: center;
}

.thank-you-text a {
  display: inline-block;
  text-align: center;
}

/* Secondary button visual style */
.cta-secondary {
  border: 2px solid #0078ff;
  color: #0078ff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: #0078ff;
  color: #ffffff;
}
/* =============================
   INSIGHTS COMING SOON STYLES
============================= */
.insights-coming-soon {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 20px;
}

.insights-coming-soon h2 {
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 20px;
}

.insights-coming-soon p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.insights-coming-soon .cta-primary {
  margin-top: 20px;
  background: #0078ff;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.insights-coming-soon .cta-primary:hover {
  background: #005ec3;
  transform: translateY(-2px);
}
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  text-align: center;
  padding: 80px 20px;
}

.contact-section h1 {
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p {
  color: #333;
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 40px 25px;
}

.contact-card h2 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: #444;
  margin-bottom: 18px;
}

.contact-card a.cta-primary {
  display: inline-block;
  background: #0078ff;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.25s ease;
}

.contact-card a.cta-primary:hover {
  background: #005ec3;
}

@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
  }
}
.contact-section h1 {
  text-align: center;
  color: #002b65;
  margin-bottom: 15px;
}

.contact-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  text-align: center;
  padding: 80px 20px;
}

.contact-section h1 {
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p {
  color: #333;
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 40px 25px;
}

.contact-card h2 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card a {
  display: inline-block;
  margin-bottom: 15px;
  background: #0078ff;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-card a:hover {
  background: #005ec3;
  transform: translateY(-2px);
}

.contact-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT SECTION REFINEMENT ===== */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  text-align: center;
  padding: 80px 20px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 40px 25px;
  text-align: center;        /* ✅ Center all text and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  min-height: 240px;
}

.contact-card h2 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0078ff;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  min-width: 220px;           /* ✅ Consistent button width */
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-card a:hover {
  background: #005ec3;
  transform: translateY(-2px);
}

.contact-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
  }
}
.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002b65;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.brand-name:hover {
  color: #0078ff;
  text-decoration: none;
}
