/* =============================
   NTS Landing Page Styles
   Corporate Dark Blue Theme
============================= */

:root {
  --primary: #0b2c6b;
  --primary-dark: #081f4a;
  --secondary: #135ce5;
  --accent: #1fa2ff;
  --text-light: #ffffff;
  --text-muted: #cfd8f3;
  --bg-light: #f5f7fb;
  --blue: #3b71fe;
  --navy: #001333;
  --text-gray: #5e626d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #c3e0f3 0%, #479be1 50%, #e85c5c 100%);
  width: 100vw;
  overflow-x: hidden;
}


.btn {
  padding: 1.2vw 2.5vw;
  border-radius: 0.8vw;
  border: none;
  font-weight: 700;
  font-size: 1vw;
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  gap: 0.8vw;
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-blue {
  background: var(--blue);
  color: white;
}



/* SERVICE SECTION */
.services-dark {
  background: radial-gradient(circle at center, #001f54 0%, #000814 100%);
  padding: 100px 5%;
  padding-bottom: 30px;
  color: #ffffff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Badge Styling (The "Seamless Onboarding" pill) */
.top-badge-container {
  margin-bottom: 20px;
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  color: #cbd5e0;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: 0.3s;
}

.glass-badge:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Main Headline */
.services-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  line-height: 1.2;
}

/* Grid Wrapper - Uses flex center to handle the 2 items on the bottom row */
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Individual Card Item */
.service-item {
  flex: 0 1 23%;
  /* Forces 4 per row on desktop */
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

/* The OUTER Square (Darker, translucent blue) */
.icon-square {
  width: 85px;
  height: 85px;
  background: rgba(19, 92, 229, 0.1);
  /* Very subtle blue tint */
  border: 1px solid rgba(19, 92, 229, 0.3);
  /* Soft blue border */
  border-radius: 24px;
  /* Squircle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

/* The INNER Square (The bright blue icon box) */
.icon-square i {
  width: 55px;
  height: 55px;
  background-color: #135ce5;
  /* Solid brand blue */
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(19, 92, 229, 0.4);
  /* The glow effect */
}

/* Typography for Cards */
.service-item h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-item p {
  font-size: 14px;
  color: #94a3b8;
  /* Muted gray-blue */
  line-height: 1.6;
  max-width: 250px;
}

/* Hover Effect */
.service-item:hover {
  transform: translateY(-10px);
}

.service-item:hover .icon-square {
  border-color: rgba(19, 92, 229, 0.8);
  background: rgba(19, 92, 229, 0.2);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .service-item {
    flex: 0 1 45%;
    /* 2 per row */
  }
}

@media (max-width: 650px) {
  .service-item {
    flex: 0 1 100%;
    /* 1 per row */
  }

  .services-title {
    font-size: 32px;
  }
}



.faq-section {
  background-color: #f0f4f9;
  /* Light greyish-blue background */
  padding: 80px 5%;
  font-family: 'Poppins', sans-serif;
}

.faq-section .header-content {
  text-align: center;
  margin-bottom: 50px;
}

/* Badge and Title */
.faq-section .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border: 1px solid #3b82f6;
  border-radius: 50px;
  font-size: 14px;
  color: #3b82f6;
  margin-bottom: 20px;
  background: white;
}

.faq-section .main-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
}

/* Grid Setup */
.faq-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr;  */
  gap: 20px 30px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Card Styling */
.faq-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.faq-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.faq-card p {
  font-size: 14px;
  color: #5e626d;
  line-height: 1.6;
  margin-top: 15px;
  display: none;
  /* Hidden by default */
}

/* Active State (Shown in your image) */
.faq-card.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-card.active p {
  display: block;
  text-align: center;
}

/* Hover Effect */
.faq-card:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* --- TEXT SIZES & HIERARCHY --- */

.main-headline {
  color: var(--text-light);
  font-size: 4rem;
  /* Biggest */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.sub-headline {
  color: var(--accent);
  font-size: 1.8rem;
  /* Medium */
  font-weight: 600;
  margin-bottom: 30px;
}

.btn.primary {
  background: var(--secondary);
  color: #fff;
  text-align: center;
}

.btn.primary:hover {
  background: var(--accent);
}

.btn.secondary {

  background: var(--secondary);
  border: 2px solid var(--secondary);
  color: #fff;

}

.btn.secondary:hover {
  background: transparent;
  color: #fff;
  color: var(--secondary);
}


/* =============================
   SERVICES
============================= */
.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 35px;
  border-radius: 14px;
  color: #fff;
}

/* =============================
   FAQ
============================= */
.faq {
  background: var(--primary-dark);
  color: #fff;
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* =============================
   FINAL CTA
============================= */
.final-cta {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  padding: 100px 0 120px 0;
  padding-bottom: 30px;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* CTA Container */
.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* CTA Form Styles */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 60%;
  width: 100%;
  background: rgba(255, 255, 255);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Row for side-by-side fields */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: black;
  font-weight: 500;
  font-size: 15px;
}

.cta-form input,
.cta-form textarea {
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: black;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  width: 100%;
}

.cta-form textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: black;
  opacity: 0.7;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: black;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(31, 162, 255, 0.1);
}

/* Checkbox Styling */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 20px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: black;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  color: black;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.cta-form button {
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  background: black;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0.5px;
  width: 100%;
}

.cta-form button:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Form validation styles */
.cta-form input:invalid,
.cta-form textarea:invalid {
  border-color: rgba(140, 132, 132, 0.5);
}

.cta-form input:valid,
.cta-form textarea:valid {
  border-color: rgba(255, 255, 255, 0.2);
}

/* =============================
   FOOTER
============================= */
.footer {
  background: #081833;
  color: var(--text-muted);
  padding: 50px 0 30px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
  max-width: 1000px;
}

.footer p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer strong {
  color: var(--text-light);
  font-weight: 600;
}

.footer .copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(207, 216, 243, 0.6);
  font-size: 0.85rem;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {

  .final-cta {
    padding: 80px 0 100px 0;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta p {
    font-size: 1.1rem;
  }

  .cta-form {
    padding: 25px;
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 25px;
  }

  .cta-form input,
  .cta-form textarea,
  .cta-form button {
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  .final-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .cta-form {
    padding: 20px;
  }



}

.faq {
  /* 1. Set the background image (full opacity) */
  background: url('hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  /* Optional: for a parallax-like scroll effect */
  padding: 80px 0;
  position: relative;
  /* Essential: allows pseudo-element to be positioned relative to this block */
  z-index: 1;
  /* Essential: ensures content is layered above the pseudo-element */
  color: var(--nts-text-light);
  /* Ensures text is visible */
}

/* 2. Create the Opacity/Overlay Layer */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* Use an RGBA background color for opacity control */
  /* The first three values (0, 46, 101) are your NTS blue. The last value (0.8) is the opacity. */
  background-color: rgba(1, 2, 20, 0.8);
  /* <--- CONTROL OPACITY HERE (0.0 to 1.0) */

  z-index: -1;
  /* Pushes the overlay layer *behind* the content inside .faq */
}



.faq h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .arrow {
  font-size: 26px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 26px;
}

.faq-answer p {
  color: #e0e6f0;
  padding-bottom: 22px;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
  /* + becomes × */
}



/* =============================
   ENTRANCE ANIMATIONS
============================= */

/* 1. Title: From Top */
.anim-from-top {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 1s ease-out forwards;
  font-size: 30px;
}

/* 2. Left Cards: From Left */
.card-left {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

/* 3. Center Cards: Fixed/Fade-in only */
.card-center {
  opacity: 0;
  animation: fadeInOnly 1s ease-out 0.6s forwards;
}

/* 4. Right Cards: From Right */
.card-right {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

.anim-from-top-benefits {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 1s ease-out forwards;
  font-size: 30px;
}

/* 2. Left Cards: From Left */
.card-left-benefits {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

/* 3. Center Cards: Fixed/Fade-in only */
.card-center-benefits {
  opacity: 0;
  animation: fadeInOnly 1s ease-out 0.6s forwards;
}

/* 4. Right Cards: From Right */
.card-right-benefits {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

.scroll-area .card-left-benefits,
.scroll-area .card-right-benefits,
.scroll-area .card-center-benefits,
.scroll-area .anim-from-top-benefits {
  opacity: 0;
  animation: none;
}

/* =============================
   SCROLL ANIMATION – ACTIVE
============================= */

.scroll-area.active .anim-from-top-benefits {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 1s ease-out forwards;
  font-size: 30px;
}

.scroll-area.active .card-left-benefits {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

.scroll-area.active .card-center-benefits {
  opacity: 0;
  animation: fadeInOnly 1s ease-out 0.6s forwards;
}

.scroll-area.active .card-right-benefits {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease-out 0.3s forwards;
}


/* --- Keyframe Definitions --- */

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translate(0);
    /* Moves to its normal position */
  }
}

@keyframes fadeInOnly {
  to {
    opacity: 1;
  }
}

/* Ensure the grid doesn't cut off the sliding cards */
.services {
  overflow: hidden;
  padding: 100px 0;
}

/* Re-applying the fancy card styles from before to ensure they look great */
.service-card.fancy {
  background: linear-gradient(145deg, #0b2c6b, #135ce5);
  padding: 50px 30px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card.fancy:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* =============================
   BENEFITS SECTION STYLING
============================= */


.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(19, 92, 229, 0.1);
  /* Light blue background for icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* On hover, the icon grows slightly */
.benefit-card.fancy:hover .icon-box i {
  transform: scale(1.1) rotate(5deg);
}

.benefits {
  padding: 80px 0;
  padding-bottom: 40px;
  /* Your chosen Deep corporate blue */
  background: radial-gradient(circle at top right, #0d2b61, #061633);
  overflow: hidden;
}

.benefits .section-title {
  color: #ffffff;
  margin-bottom: 50px;
}

/* Updated Card Style for Dark Background */
.benefit-card.fancy {
  background: rgba(255, 255, 255, 0.05);
  /* Semi-transparent glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle white border */
  backdrop-filter: blur(10px);
  /* Blurs the background behind the card */
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-card.fancy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #135ce5;
  /* Glows blue on hover */
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon Box for Dark Background */
.icon-box {
  width: 70px;
  height: 70px;
  background: #135ce5;
  /* Solid blue icon circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(19, 92, 229, 0.4);
  /* Glow effect */
}

.icon-box i {
  font-size: 2rem;
  color: #ffffff;
  /* White icon for contrast */
}

/* Text Colors */
.benefits .benefit-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefits .benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  /* Slightly dimmed for readability */
  line-height: 1.6;
}

/* --- Background & Title --- */
.immediate-contact.light-theme {
  padding: 100px 0;
  background-color: #f8f9fa;
  /* Elegant Off-White */
  overflow: hidden;
}

.immediate-contact .section-title {
  color: #061633;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.immediate-subtext {
  color: #555;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

/* --- The Box Grid --- */
.contact-box-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid-simple {
  display: flex;
  background: #ffffff;
  border: 2px solid #061633;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
  flex: 1;
  padding: 50px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

/* Vertical line between items */
.contact-item:first-child {
  border-right: 2px solid #061633;
}

.contact-item:hover {
  background-color: #f0f4ff;
}

/* --- Icons & Text --- */
.contact-icon i {
  font-size: 3rem;
}

.phone-color i {
  color: #00AEEF;
}

/* Your Blue Phone Color */
.wa-color i {
  color: #25D366;
}

/* WhatsApp Green */

.contact-item span {
  color: #061633;
  font-weight: 700;
  font-size: 1.2rem;
}

/* --- Footer Number --- */
.display-number {
  margin-top: 40px;
  font-size: 2.2rem;
  color: #061633;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .contact-grid-simple {
    flex-direction: column;
  }

  .contact-item:first-child {
    border-right: none;
    border-bottom: 2px solid #061633;
  }

  .display-number {
    font-size: 1.8rem;
  }
}

/* =============================
   TESTIMONIALS - DARK THEME
============================= */

.testimonials.dark-theme {
  padding: 100px 0;
  padding-bottom: 30px;
  /* Matching your dark radial background */
  background: radial-gradient(circle at top right, #0d2b61, #061633);
  overflow: hidden;
}

.testimonials .section-title {
  color: #ffffff;
  font-weight: 800;
}

.testimonials .divider {
  color: #135ce5;
  margin-bottom: 50px;
  font-weight: bold;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Glassmorphism Testimonial Card */
.testimonial-card.fancy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  /* Better for reading text */
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.fancy:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: #135ce5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stars {
  color: #ffc107;
  /* Bright gold for stars */
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #135ce5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.author-info h4 {
  color: #ffffff;
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  color: #135ce5;
  /* Using your accent blue for the job title */
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Styling the Dropdown for the White Form */
.cta-form select {
  width: 100%;
  padding: 12px 15px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  /* Match your current input borders */
  border-radius: 8px;
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
  outline: none;
  cursor: pointer;

  /* Modern Arrow Styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}

/* Ensure the blue glow on focus matches your other inputs */
.cta-form select:focus {
  border-color: #135ce5;
  box-shadow: 0 0 5px rgba(19, 92, 229, 0.2);
}

/* Style for the internal options list */
.cta-form select option {
  padding: 10px;
  background: #ffffff;
  color: #333;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: linear-gradient(135deg, #1e5eff, #4facfe);
  color: white;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;

  box-shadow:
    0 12px 30px rgba(30, 94, 255, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 999;
}

/* Show state */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: pulse 2s infinite;
}

/* Hover effect */
#scrollTopBtn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(30, 94, 255, 0.55);
}

/* Click effect */
#scrollTopBtn:active {
  transform: scale(0.95);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(79, 172, 254, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
  }
}

.call-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: flex-start;
  justify-content: center;

  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 9999;
}

/* Active state */
.call-slide.active {
  transform: translateY(0);
}

.call-slide-content {
  background: white;
  width: 100%;
  max-width: 600px;
  padding: 40px 30px;
  margin-top: 0;

  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  text-align: center;
  animation: slideContent 0.6s ease;
}

@keyframes slideContent {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.close-slide {
  position: absolute;
  top: 15px;
  right: 20px;

  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.call-slide h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.call-slide p {
  color: #666;
  margin-bottom: 25px;
}

.btn-blue {
  /* Layout & Alignment */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* Colors & Branding */
  background-color: #135ce5;
  /* The bright blue from your previous section */
  color: #ffffff;
  border: none;

  /* Sizing & Shape */
  padding: 14px 30px;
  border-radius: 12px;

  /* Typography */
  text-decoration: none;
  /* Critical for <a> tags */
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  /* Matches the 'GET A QUOTE' style */

  /* Interaction */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(19, 92, 229, 0.3);
}

/* Icon size adjustment */
.btn-blue i {
  font-size: 14px;
}

/* Hover State */
.btn-blue:hover {
  background-color: #0e4bbd;
  /* Slightly darker blue */
  box-shadow: 0 6px 20px rgba(19, 92, 229, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Active/Click State */
.btn-blue:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .service-item {
    flex: 0 1 45%; /* 2 per row */
  }
}

@media (min-width: 400px) and (max-width: 992px) {
  .services-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  /* Change from 100% to 45% for 2 items per row */
  .service-item {
    flex: 0 1 45%; /* 2 per row on mobile */
    min-width: 160px; /* Reduce min-width for better fit */
  }
  
  .services-wrapper {
    gap: 30px 15px; /* Reduce gap for mobile */
  }
  
  /* Adjust icon size for mobile */
  .icon-square {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .icon-square i {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .service-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 13px;
    max-width: 200px;
  }
}