/* === main.css (2026 Modern Mobile Business Theme — Enhanced) === */

/* ------------------------------------------------------
   1. Global Layout
------------------------------------------------------ */
html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #0b1f2a;
    background-color: #ffffff;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: #009ca6;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover, a:focus {
    color: #40e0d0;
    text-decoration: none;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0b1f2a;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* ------------------------------------------------------
   2. Navbar Styling
------------------------------------------------------ */
.modern-navbar {
    background-color: #0b1f2a !important;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar-logo {
    max-height: 45px;
    margin-right: 10px;
}

.modern-navbar .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #ffffff !important;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-navbar .navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 15px 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.modern-navbar .navbar-nav > li > a:hover,
.modern-navbar .navbar-nav > li.active > a {
    color: #40e0d0 !important;
}

/* Contact Button */
.btn-nav {
    background-color: #009ca6;
    border-radius: 4px;
    color: #ffffff !important;
    padding: 10px 20px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}
.btn-nav:hover {
    background-color: #40e0d0;
    color: #0b1f2a !important;
    box-shadow: 0 0 15px rgba(64,224,208,0.4);
}

/* Mobile Navbar */
.navbar-toggle {
    border: none;
}
.navbar-toggle .icon-bar {
    background-color: #ffffff;
}
.navbar-toggle:hover {
    background-color: transparent;
}
.navbar-scrolled {
    padding: 5px 0;
    background-color: rgba(11,31,42,0.97);
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* ------------------------------------------------------
   3. Hero Section
------------------------------------------------------ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 120px;
    background: linear-gradient(rgba(11,31,42,0.85), rgba(11,31,42,0.85)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.2px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 30px;
    color: #e3e8eb;
    font-weight: 400;
    line-height: 1.6;
}

/* ------------------------------------------------------
   4. Buttons
------------------------------------------------------ */
.btn-primary {
    background-color: #009ca6;
    border-color: #009ca6;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulseGlow 3s infinite;
}
.btn-primary:hover {
    background-color: #25c7c8;
    border-color: #25c7c8;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(64,224,208,0.6);
    transform: translateY(-2px);
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(64,224,208,0.4); }
    50% { box-shadow: 0 0 20px rgba(64,224,208,0.5); }
    100% { box-shadow: 0 0 0 rgba(64,224,208,0.4); }
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #009ca6;
    color: #009ca6;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #009ca6;
    color: #ffffff;
}

/* ------------------------------------------------------
   5. Icon Circles (Pearl Finish)
------------------------------------------------------ */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #009ca6;
    color: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 156, 166, 0.25);
}
.icon-circle .glyphicon {
    color: #f4f6f8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.icon-circle:hover {
    background: #40e0d0;
    color: #ffffff;
    transform: scale(1.05);
}
.icon-circle:hover .glyphicon {
    color: #ffffff;
}
.icon-circle.small {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

/* ------------------------------------------------------
   6. Error Pages (404, 500, 503)
------------------------------------------------------ */
body.error-layout {
    padding-top: 0 !important;
}

.error-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, #0b1f2a 0%, #009ca6 100%);
    color: #ffffff;
    padding: 0 20px;
    overflow: hidden;
}

.error-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: #40e0d0;
    text-shadow: 0 0 10px rgba(64,224,208,0.5);
    margin-bottom: 15px;
}

.error-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: #e3e8eb;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-page .btn-primary {
    font-size: 18px;
    padding: 14px 40px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------
   7. Notary Stamp Background Animation
------------------------------------------------------ */
.notary-stamp-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.12;
    animation: rotateSlow 60s linear infinite;
}
.notary-stamp-svg {
    width: 320px;
    height: 320px;
}
@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ------------------------------------------------------
   8. Responsive Adjustments
------------------------------------------------------ */
@media (max-width: 991px) {
    .hero-section h1 { font-size: 34px; }
}
@media (max-width: 767px) {
    .hero-section h1 { font-size: 28px; }
    .hero-section p { font-size: 16px; }
    .error-code { font-size: 90px; }
    .error-heading { font-size: 26px; }
}

/* ------------------------------------------------------
   15. Legal Center Alignment & Hover Polish
------------------------------------------------------ */
.legal-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.legal-card h4 {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.legal-card p {
    flex-grow: 1;
    color: #0b1f2a;
    font-size: 15px;
    line-height: 1.6;
    min-height: 110px; /* Keeps all descriptions equal */
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-card .btn {
    align-self: center;
    margin-top: 20px;
}

/* Subtle hover lift */
.legal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 156, 166, 0.25);
    transform: translateY(-5px);
    border-radius: 8px;
}

/* Adjust bottom spacing for main Return button */
.legal-center .btn-primary {
    margin-top: 30px; /* adds slight padding above return button */
}

/* ------------------------------------------------------
   16. FAQ Page Styling
------------------------------------------------------ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #009ca6;
    color: #ffffff;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    outline: none;
    text-align: left;
    transition: background 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    background: #40e0d0;
}

.faq-answer {
    display: none;
    background: #f8fafc;
    padding: 20px;
    font-size: 15px;
    color: #0b1f2a;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-icon {
    float: right;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    background: #f8fafc;
    padding: 0 20px;
    font-size: 15px;
    color: #0b1f2a;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 800px;
    padding: 20px;
}



/* ------------------------------------------------------
   17. Trust & Compliance Section
------------------------------------------------------ */
.trust-compliance {
  background-color: #f0f6f7;
}

.trust-compliance .section-title {
  color: #0b1f2a;
  font-weight: 700;
}

.trust-compliance .lead {
  color: #1a2e35;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.trust-compliance .icon-circle {
  background-color: #009ca6;
  color: #fff;
  font-size: 24px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.trust-compliance .btn-outline-primary {
  border: 2px solid #009ca6;
  color: #009ca6;
  transition: all 0.3s ease;
}

.trust-compliance .btn-outline-primary:hover {
  background-color: #009ca6;
  color: #fff;
}


/* ------------------------------------------------------
   18. About Section
------------------------------------------------------ */
.about-hero {
    background: linear-gradient(rgba(11,31,42,0.85), rgba(11,31,42,0.85)),
                url('../images/about-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0 100px;
}

.about-hero h1 {
    font-size: 42px;
    color: #fff;
}

.about-credentials, .about-values {
    text-align: center;
}

.about-values h5 {
    font-weight: 600;
    margin-top: 15px;
}

.about-cta {
    background: linear-gradient(135deg, #009ca6, #40e0d0);
    color: #fff;
}

.about-image {
    max-width: 85%;              /* Shrinks image size nicely */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); /* Stronger, more defined shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect (adds a nice modern polish) */
.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.about-section {
  background-color: #dbe3e6; /* Light gray-blue tone to complement image background */
  padding: 80px 0;
}

.about-section .about-image {
  max-width: 75%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.about-heading {
  font-weight: 700;
  color: #0b1f2a;
  margin-bottom: 1rem;
}

.about-section p {
  color: #1c2e35;
  font-size: 16px;
  line-height: 1.8;
}

/* Reduce gap between image and text on larger screens */
@media (min-width: 992px) {
  .about-section .row {
    gap: 40px; /* brings image and text columns closer together */
  }
}

.about-section .container {
  background-color: #cfd7da;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ------------------------------------------------------
   Mobile Notary Page
------------------------------------------------------ */
.service-hero {
  background: linear-gradient(rgba(11,31,42,0.85), rgba(11,31,42,0.85)),
              url('../images/hero-notary-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 140px 0 100px;
}

.service-hero .lead {
  color: #e3eff1;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.service-details .service-image {
  width: 100%;
  max-width: 420px; /* Controls overall width */
  max-height: 420px; /* Keeps image from being too tall */
  height: auto;
  border-radius: 10px;
  object-fit: cover; /* Keeps it proportional */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  margin-bottom: 20px;
}


.check-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.check-list span {
  color: #009ca6;
  margin-right: 8px;
}

.service-area-list li {
  display: inline-block;
  margin: 8px 12px;
  background: #009ca6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.cta-section {
  background: #21353d;
  color: #fff;
}

.cta-section .btn-primary {
  background-color: #009ca6;
  border: none;
}

.service-area-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 2rem;  /* Add more spacing above */
  margin-bottom: 2rem; /* Add more spacing below */
}

@media (min-width: 992px) {
  .service-details .service-image {
    max-width: 380px;
    max-height: 380px;
  }
}

/* Areas We Serve section */
/* Fix centering and symmetry for Areas We Serve */
.service-areas {
  background-color: #c3c7ca;
  text-align: center;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.service-areas .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-left: 0;  /* remove Bootstrap’s side gutter */
  padding-right: 0; /* ensures perfect center alignment */
}

.service-areas h2 {
  font-weight: 700;
  color: #0b1f2a;
  margin-bottom: 20px;
}

.service-areas p {
  max-width: 750px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0b1f2a;
  text-align: center;
}

/* Centers bubble list perfectly */
.service-area-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 900px;
  width: 100%;
}

.service-area-list li {
  background: #009ca6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.service-area-list li:hover {
  background: #40e0d0;
}

.service-areas small {
  display: block;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  color: #0b1f2a;
  font-size: 0.95rem;
}

/* ------------------------------------------------------
   loan signing
------------------------------------------------------ */
.service-process .section-title {
  margin-bottom: 40px;
}

.service-process h4 {
  font-size: 20px;
  color: #0b1f2a;
  margin-bottom: 10px;
}

.service-process p {
  color: #1c2e35;
  line-height: 1.6;
}

/* ------------------------------------------------------
   Real Estate Notary Closings - Image Alignment Fix
------------------------------------------------------ */
.service-details .service-image {
  width: 100%;
  max-width: 460px;  /* slightly larger image */
  height: auto;
  margin: 0 auto; /* centers inside column */
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* vertically align image and text better */
.service-details .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ensure proper spacing between image and text */
@media (min-width: 992px) {
  .service-details .col-md-5 {
    display: flex;
    justify-content: center;
  }
  .service-details .col-md-6 {
    padding-left: 40px;
  }
}

/* ------------------------------------------------------
   Footer Social Media Links
------------------------------------------------------ */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #009ca6;
  color: #ffffff;
  border-radius: 50%;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.social-links a:hover {
  background-color: #40e0d0;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(64,224,208,0.35);
}

.social-links a i {
  line-height: 1;
}

/* ------------------------------------------------------
   Footer Styling (Dark Modern Version)
------------------------------------------------------ */
.site-footer {
  background-color: #0b1f2a;
  color: #e3eff1;
  padding: 60px 0 40px;
  text-align: center;
  border-top: 4px solid #009ca6; /* Teal accent line */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.site-footer a {
  color: #40e0d0;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

/* Social Media Links */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 28px; /* Space above copyright */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #009ca6;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 156, 166, 0.3);
}

.social-links a:hover {
  background-color: #40e0d0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(64, 224, 208, 0.4);
}

/* Copyright */
.copyright {
  font-size: 0.9rem;
  color: #d8e4e8;
  opacity: 0.9;
  margin-top: 5px;
  margin-bottom: 0;
}

/* Columns */
.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact p {
  color: #cfd7da;
}

/* Responsive footer layout */
@media (max-width: 767px) {
  .site-footer .col-sm-4 {
    margin-bottom: 30px;
  }

  .social-links {
    margin-bottom: 20px;
  }
}

.footer-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -4px; /* closes any rendering gaps */
}

.footer-divider svg {
  display: block;
  width: 100%;
  height: 140px; /* Adjust between 120–160px depending on preference */
}
.trust-compliance {
  background: linear-gradient(to bottom, #c3c7ca 95%, #009ca6 100%);
}

.contact-hero {
  background: linear-gradient(rgba(11,31,42,0.85), rgba(11,31,42,0.85)),
              url('../images/contact-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 120px 0 80px;
}
.contact-hero h1 {
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-hero p {
  font-size: 1.2rem;
  color: #e3eff1;
}

/* =========================================================
   CONTACT PAGE STYLING — Cleaned & Unified
   Consistent with Sign With LS brand colors
========================================================= */

/* -------------------------------
   HERO SECTION
-------------------------------- */
.contact-hero {
  background: linear-gradient(rgba(11, 31, 42, 0.85), rgba(11, 31, 42, 0.85)),
              url('../images/contact-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 120px 0 80px;
}

.contact-hero h1 {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #dce7e9;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   SIGN WITH LS — Contact Page Refined
   Clean, readable, and responsive layout
========================================================= */

/* -------------------------------
   Hero Section
-------------------------------- */
.contact-hero {
  background: linear-gradient(rgba(11, 31, 42, 0.88), rgba(11, 31, 42, 0.88)),
              url('../images/contact-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 110px 0 80px;
}

.contact-hero h1 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #dce7e9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------------------------------
   Contact Form Section
-------------------------------- */
.contact-form-section {
  background: #f8fafc;
  padding: 90px 0 60px;
}

.contact-form-section .section-title {
  font-size: 30px;
  font-weight: 700;
  color: #0b1f2a;
  margin-bottom: 12px;
}

.contact-form-section .section-subtitle {
  color: #5c7075;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 45px;
}

/* Center the form properly */
.contact-form-section .row {
  display: flex;
  justify-content: center;
}

.contact-form-section .col-md-8 {
  max-width: 620px;
  margin: 0 auto;
}

/* Card Layout */
.contact-form-section form {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 45px;
}

/* Form Inputs */
.contact-form-section .form-label {
  font-weight: 600;
  color: #0b1f2a;
  margin-bottom: 8px;
  display: block;
}

.contact-form-section .form-control {
  border: 1px solid #cfd7da;
  border-radius: 6px;
  padding: 14px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: #009ca6;
  box-shadow: 0 0 0 3px rgba(0, 156, 166, 0.15);
  outline: none;
}

/* Submit Button */
.contact-form-section .btn-primary {
  background-color: #009ca6;
  border: none;
  border-radius: 6px;
  padding: 13px 0;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
  background-color: #007e88;
  transform: translateY(-1px);
}

/* Other Ways Section (inside form area) */
.contact-form-section .text-center.mt-5 {
  margin-top: 60px !important;
}

.contact-form-section .text-center.mt-5 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b1f2a;
  margin-bottom: 15px;
}

.contact-form-section .text-center.mt-5 p {
  color: #2e3d42;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-form-section .text-center.mt-5 a {
  color: #009ca6;
  font-weight: 600;
}

/* -------------------------------
   Contact Details Section
-------------------------------- */
.contact-details {
  background-color: #e9eff1;
  padding: 70px 0;
  color: #0b1f2a;
  text-align: center;
}

.contact-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-details a {
  color: #009ca6;
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* -------------------------------
   Google Map Section
-------------------------------- */
.contact-map {
  height: 400px;
  overflow: hidden;
}

.contact-map iframe,
#map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* -------------------------------
   Mobile Optimization
-------------------------------- */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-form-section form {
    padding: 30px 25px;
  }

  .contact-form-section .section-title {
    font-size: 26px;
  }

  .contact-form-section .section-subtitle {
    font-size: 0.95rem;
  }
}

/* -------------------------------
   RESPONSIVE TWEAKS
-------------------------------- */
@media (max-width: 767px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-form-section form {
    padding: 30px 25px;
  }
}

/* -------------------------------
   Certifications Page Styling
-------------------------------- */
.certifications-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.certifications-section .section-title {
  color: #0b1f2a;
  font-weight: 700;
}

.certifications-section .section-subtitle {
  color: #4a5963;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.cert-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px 25px;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 156, 166, 0.2);
}

.cert-icon {
  width: 90px;
  height: auto;
}

.cert-card h4 {
  color: #0b1f2a;
  font-weight: 700;
  margin-bottom: 10px;
}

.cert-card p {
  color: #4a5963;
  font-size: 0.95rem;
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(135deg, #009ca6, #007f8e);
  color: #ffffff;
  padding: 60px 20px;
}

.trust-banner h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.trust-banner p {
  color: #eaf7f9;
  font-size: 1.1rem;
}




