body {
  margin: 0;
  background-color: #fffef6;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 90px;
}

/* Add this to style.css */
header {
  position: fixed; /* This acts as the anchor point */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fffef6; /* Ensures content behind it is hidden */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Adds a shadow */
  z-index: 1001;      /* Ensures the whole header stays on top */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fffef6;
}

.left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 240px;
  height: auto;
}

.brand {
  font-weight: 600;
  font-size: 18px;
  color: #111827;
}

.right a {
  text-decoration: none;
  color: #111827;
  margin-left: 30px;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #111827;
  transition: width 0.3s ease;
}

.right a:not(.active):hover {
  color: #AAB4FF;
}

.right a:not(.active):hover::after {
  width: 100%;
}

.right a.active {
  color: #111827;
  font-weight: 600;
}

.right a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111827;
}

/* ===== layout helpers ===== */
.container {
  width: min(92%, 1100px);
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: linear-gradient(90deg, #2b8f7a, #0e6b57);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 120, 90, 0.08);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(17, 24, 39, 0.06);
  color: #111827;
}

.btn:active { transform: translateY(1px); }

/* ===== Hero ===== */
.hero-container{
  background: linear-gradient(180deg, #f0fdfa 0%, #fffef6 100%);
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.hero-title {
  font-size: 36px;
  margin: 0 0 10px;
  font-weight: 700;
  color: #0f1720;
  letter-spacing: -0.3px;
}

.hero-sub {
  margin: 0 0 16px;
  color: #6b6b6b;
  font-size: 16px;
  max-width: 70ch;
}

/* small card beside hero */
.hero-card {
  background: #ffffff;
  padding: 18px 50px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(2,6,23,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-top {
  font-weight: 700;
  color: #111827;
  font-size: 13px;
}

.quick-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-features li {
  background: #f7f7f7;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #111827;
}

/* ===== Services Section ===== */
.section {
  padding: 48px 0;
}

.section-title {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 700;
}

.section-sub {
  color: #6b6b6b;
  margin: 0 0 18px;
}

/* REPLACE YOUR EXISTING SERVICE CARD STYLES WITH THIS */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* Increased gap to match About page */
  margin-top: 32px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px; /* Increased padding */
  text-align: center; /* Centers text and icon */
  
  /* Matches the Value Card border & shadow style */
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.service-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  
  /* Creates the circular background */
  display: inline-block;
  background: #f0fdfa; /* Light mint green */
  padding: 12px;
  width: 60px;  /* Ensures perfect circle */
  height: 60px; /* Ensures perfect circle */
  line-height: 36px; /* Vertically centers the emoji */
  border-radius: 50%;
}

/* ===== Why choose us / stats / testimonial ===== */
.why-us {
  background: transparent;
  padding-top: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  color: #6b6b6b;
}

.stat {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 10px 26px rgba(2,6,23,0.03);
}

.stat-number {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.stat-label {
  color: #6b6b6b;
  font-size: 13px;
}

/* testimonial */
.testimonial blockquote {
  margin: 10px 0;
  color: #6b6b6b;
  font-style: italic;
}

/* ===== About short ===== */
.about-short .lead {
  color: #6b6b6b;
  max-width: 70ch;
  margin: 10px 0 18px;
}

/* =========================================
   FOOTER STYLES (Replace existing Footer CSS)
   ========================================= */

.site-footer {
  background: #fffef6; /* Matches body background */
  padding: 40px 0 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  color: #555;
  font-size: 14px;
}

/* 1. flexible grid for desktop */
.footer-inner {
  display: grid;
  /* Change: Use 'fr' units so columns stretch to fit content */
  grid-template-columns: 1.5fr 1.5fr 1fr; 
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

/* Left Column */
.footer-left { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.footer-logo { 
  height: 50px; 
  width: auto; 
  display: block; 
}
.footer-tag { 
  margin: 0; 
  color: #666; 
  line-height: 1.5;
  max-width: 300px;
}

/* Middle & Right Columns (Headings) */
.footer-middle h4,
.footer-right h4 { 
  margin: 0 0 16px; 
  font-size: 16px; 
  font-weight: 700; 
  color: #111827; 
}

/* Contact Info Styling */
.footer-line { 
  margin: 8px 0; 
  color: #555; 
  display: flex;
  flex-direction: column; /* Stacks label above value for long emails */
  gap: 2px;
}

.footer-line a { 
  color: #2b8f7a; /* Your Brand Green */
  text-decoration: none; 
  font-weight: 500;
  
  /* CRITICAL FIX: Ensures long emails wrap instead of breaking layout */
  word-break: break-word; 
}

.footer-line a:hover { 
  text-decoration: underline; 
}

/* Quick Links Styling */
.footer-nav { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}
.footer-nav a { 
  color: #555; 
  text-decoration: none; 
  transition: color 0.2s;
}
.footer-nav a:hover { 
  color: #2b8f7a; 
}

/* 2. Bottom Bar (Copyright + Privacy) */
.footer-bottom { 
  border-top: 1px solid rgba(0,0,0,0.05); 
  padding-top: 20px; 
  margin-top: 10px; 
}
.footer-bottom .container { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; /* Pushes Copyright left, Privacy right */
  flex-wrap: wrap;
  gap: 10px;
}

/* 3. MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .footer-inner {
    /* Stack columns vertically on mobile */
    grid-template-columns: 1fr !important; 
    gap: 40px;
    text-align: center; /* Center text for cleaner mobile look */
  }

  .footer-left {
    align-items: center; /* Center the logo */
  }
  
  .footer-tag {
    margin: 0 auto; /* Center the tagline */
  }

  .footer-bottom .container {
    flex-direction: column; /* Stack Copyright & Privacy */
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  
  /* 1. Layout Fixes */
  .container { 
    width: 90%; /* Give content some breathing room */
  }

  /* Force the Hero Grid to become a single column */
  .hero-grid { 
    display: flex !important;    /* Switch from grid to flex for better control */
    flex-direction: column;      /* Stack top-to-bottom */
    gap: 30px;
  }
  
  /* Reset the width of the hero card so it fits the screen */
  .hero-card { 
    width: 100% !important; 
    margin-top: 20px;
  }
  
  /* Fix the About Us page split layout */
  .split-layout {
    grid-template-columns: 1fr !important;
  }

  /* Fix the Values/Services grid */
  .values-grid, 
  .services-grid { 
    grid-template-columns: 1fr !important; 
  }
  
  /* 2. Navbar Fixes */
  .navbar { 
    padding: 15px 20px; /* Smaller padding for mobile header */
  }
  
  .logo { 
    width: 160px; /* Smaller logo */
  }
  
  /* Hide desktop menu links */
  .right { 
    display: none !important; 
  }
  
  /* Show the hamburger button */
  .nav-toggle { 
    display: flex !important; 
  }
  
  /* 3. Contact Page Fixes */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

/* very small: center brand and compress spacing */
@media (max-width:420px) {
  .footer-left { align-items:flex-start; }
  .footer-tag { font-size:13px; }
  .footer-line, .footer-nav a { font-size:14px; }
}


/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity:0; transform:translateY(14px) scale(.997); transition: all 560ms cubic-bezier(.2,.9,.2,1); will-change:transform,opacity; }
.reveal.in-view { opacity:1; transform:translateY(0) scale(1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px) {
  .hero { gap:18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { width:300px; }
}



/* fallback for very small screens */
@media (max-width:420px) {
  .hero-title { font-size:22px; }
  .btn { padding:10px 12px; font-size:14px; }
}

/* =========================================
   ADD THIS TO THE BOTTOM OF STYLE.CSS
   ========================================= */

/* 1. Base styles for the toggle button (hidden on desktop) */
.nav-toggle {
  display: none; /* Hidden by default on large screens */
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

/* Style the hamburger bars */
.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: #111827;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* 2. Base styles for the Mobile Menu Container */
/* Update or Replace these blocks in style.css */

.mobile-nav {
  /* Use fixed so it stays on screen even if you scroll */
  position: fixed; 
  /* Starts right below the header (matches body padding) */
  top: 70px; 
  left: 0;
  width: 100%;
  /* Fills the rest of the screen height */
  height: auto; 
  padding-bottom: 40px; 
  padding-top: 20px;
  
  background-color: #fffef6;
  
  /* Flexbox to center the links vertically and horizontally */
  flex-direction: column;
  align-items: center;     /* Centers horizontally */
  justify-content: center; /* Centers vertically */
  gap: 20px;               /* Space between links */
  box-shadow: 0 10px 15px rgba(0,0,0,0.05); 
  /* Keep hidden by default */
  display: none; 
  z-index: 1000;
}

/* Make the links larger and cleaner */
.mobile-nav a {
  font-size: 18px;  /* Bigger text for mobile */
  font-weight: 600;
  border-bottom: none; /* Remove the separator lines */
  width: auto;         /* Let width fit the text */
  color: #0f1720;
}

/* Ensure the 'open' state uses flex */
.mobile-nav.open {
  display: flex;
}

/* 4. Hamburger Animation (Optional: turns into X) */
.nav-toggle.open .bar1 { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open .bar2 { opacity: 0; }
.nav-toggle.open .bar3 { transform: rotate(-45deg) translate(5px, -6px); }

/* =========================================
   UPDATE MEDIA QUERY
   ========================================= */
@media (max-width: 760px) {
  /* Ensure the toggle is visible on mobile */
  .nav-toggle {
    display: flex; 
  }
  
  /* Ensure desktop right menu is strictly hidden */
  .right {
    display: none !important; 
  }
}

/* =========================================
   ABOUT PAGE STYLES (Add to bottom of style.css)
   ========================================= */

/* A slightly different hero for sub-pages */
.page-hero {
  background: linear-gradient(180deg, #f0fdfa 0%, #fffef6 100%);
  padding: 80px 0 40px;
}

/* Split Layout (Text left, Image right) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Placeholder image styling */
.placeholder-img {
  width: 100%;
  height: 300px;
  background-color: #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Background utility */
.bg-light {
  margin-top: 40px;
  padding-bottom: 60px; /* Extra padding for the grid */
}

/* Centering utilities */
.center-text { text-align: center; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
  background: #f0fdfa;
  padding: 12px;
  border-radius: 50%;
}

/* Call to Action Box */
.cta-section { margin-top: 60px; margin-bottom: 40px; }

.cta-box {
  background: #111827;
  color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  background-image: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.cta-box h2 { color: white; margin-bottom: 10px; }
.cta-box p { color: #9ca3af; margin-bottom: 24px; }

/* Responsive adjustments for About Page */
@media (max-width: 768px) {
  .split-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .placeholder-img { height: 200px; }
}

/* =========================================
   BUTTON HOVER ANIMATIONS
   ========================================= */

/* 1. Update the base transition to smooth out color changes */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Primary Button Hover (The Green One) */
.btn-primary:hover {
  transform: translateY(-3px); /* Moves up slightly */
  box-shadow: 0 15px 30px rgba(43, 143, 122, 0.3); /* Adds a soft green glow */
  filter: brightness(110%); /* Makes it slightly brighter */
}

/* 3. Outline Button Hover (The Transparent One) */
.btn-outline:hover {
  background-color: #111827; /* Fills with dark dark grey */
  color: #ffffff;            /* Text turns white */
  border-color: #111827;     /* Border matches background */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 4. Active State (When clicked) */
.btn:active {
  transform: translateY(-1px); /* Pushes down slightly to feel tactile */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* =========================================
   CONTACT PAGE STYLES (Add to bottom)
   ========================================= */

/* Layout: Two columns (Info Left, Form Right) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Form is slightly wider */
  gap: 60px;
  align-items: start;
}

/* --- Left Column: Info Items --- */
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 24px;
  background: #f0fdfa;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #111827;
}

.info-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.info-item a {
  color: #2b8f7a;
  text-decoration: none;
  font-weight: 500;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background-color: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  margin-top: 20px;
  font-size: 14px;
}

/* --- Right Column: Form Styling --- */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
}

.form-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 22px;
  color: #111827;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

/* Common style for Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-sizing: border-box; /* Prevents padding from breaking width */
}

/* Focus Effect: Green Glow */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2b8f7a;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(43, 143, 122, 0.1);
}

.full-width {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  border: none;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 24px; /* Less padding on mobile */
  }
}

/* =========================================
   MOBILE RESPONSIVENESS (Paste at very bottom)
   ========================================= */

@media screen and (max-width: 900px) {
  
  /* --- 1. Global Container Fixes --- */
  .container { 
    width: 90%; 
  }

  /* --- 2. HERO SECTION FIX (The Squish Fix) --- */
  /* We use flex + column to force stacking */
  .hero-grid {
    display: flex !important;  
    flex-direction: column;
    gap: 30px;
  }
  
  /* Reset the card width so it isn't locked at 360px */
  .hero-card {
    width: 100% !important;
    margin-top: 20px;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  /* --- 3. NAVBAR FIXES --- */
  .navbar { 
    padding: 15px 20px; 
  }
  
  .logo { 
    width: 150px; 
  }
  
  /* Hide Desktop Menu */
  .right { 
    display: none !important; 
  }
  
  /* Show Hamburger Button */
  .nav-toggle { 
    display: flex !important; 
  }

  /* --- 4. GRID LAYOUT FIXES (About, Services, Contact) --- */
  /* Forces all these grids to be 1 column wide */
  .services-grid, 
  .values-grid, 
  .contact-grid, 
  .split-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  /* Fix placeholder images in About Us */
  .placeholder-img {
    height: 200px;
  }

  /* --- 5. FOOTER FIXES --- */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


@media (max-width: 900px) {

  /* 1. The Menu Container (Hidden State) */
  .mobile-nav {
    /* Use Flex so items align, but hide the whole container visually */
    display: flex !important; 
    flex-direction: column;
    
    /* Position it right below the header */
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fffef6;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 999;
    
    /* --- ANIMATION SETTINGS --- */
    opacity: 0;                 /* Fully transparent */
    visibility: hidden;         /* Cannot be clicked */
    transform: translateY(-20px); /* Starts slightly shifted UP */
    
    /* Smooth transition for all these properties */
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 2. The Open State (Visible) */
  .mobile-nav.open {
    opacity: 1;                 /* Fully visible */
    visibility: visible;        /* Clickable */
    transform: translateY(0);   /* Slides down to natural position */
  }

  /* 3. Link Styling (Optional polish) */
  .mobile-nav a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    color: #111827;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
  }
}

/* =========================================
   SUCCESS MODAL STYLES (Professional Popup)
   ========================================= */

/* The dark background overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 2000; /* sits on top of everything */
  
  /* Flexbox to perfectly center the box */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* The visible state (added by JS) */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* The white box itself */
.modal-content {
  background: white;
  width: 90%;
  max-width: 400px; /* Keeps it nice and compact */
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  
  /* Pop-up animation */
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1); /* Bounces to full size */
}

/* The Green Checkmark Circle */
.success-icon {
  width: 70px;
  height: 70px;
  background-color: #f0fdfa; /* Light mint green */
  color: #2b8f7a;           /* Your brand green */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-icon span {
  font-size: 32px;
  font-weight: bold;
}

.modal-content h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
}

.modal-content p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 15px;
}

/* Ensure the button looks good centered */
.modal-content .btn {
  min-width: 120px;
}

/* =========================================
   BUTTON LOADING SPINNER (Add to bottom)
   ========================================= */

/* The Spin Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* The Loading State */
.btn-loading {
  position: relative;
  color: transparent !important; /* Hides the text "Send Message" */
  cursor: not-allowed;
  pointer-events: none; /* Prevents double-clicking */
}

/* The Spinner Circle */
.btn-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  
  /* Center the spinner */
  margin-left: -10px; 
  margin-top: -10px;
  
  /* Create the circle */
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent; /* Makes it look like a spinning arc */
  
  animation: spin 0.8s linear infinite;
}