/* =========================================
   GLOBALS
========================================= */
:root {
  /* Colorful & Vibrant Theme */
  --primary-color: #2e1065;
  /* Deep Indigo / Purple */
  --secondary-color: #8b5cf6;
  /* Vibrant Violet */
  --accent-color: #ec4899;
  /* Bright Pink */
  --accent-hover: #d946ef;
  /* Fuchsia */

  --background-color: #f8fafc;
  --surface-color: #ffffff;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #fdf4ff;

  --border-color: #e2e8f0;

  /* Layout */
  --max-width: 1400px;
  --header-height: 110px;

  /* Fonts */
  --font-primary: 'Inter', sans-serif;

  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.02);
  --shadow-xl: 0 20px 25px -5px rgb(139 92 246 / 0.15), 0 8px 10px -6px rgb(139 92 246 / 0.05);
  --shadow-glow: 0 0 25px rgba(236, 72, 153, 0.4);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #060b14;
    /* Extremely Dark Navy */
    --surface-color: #0b1121;
    /* Slightly lighter navy for cards */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #1e293b;
  }
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--text-primary);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--secondary-color);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  /* Pill shape for modern look */
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-hover));
  color: white;
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  color: white;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  font-weight: 800;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

/* =========================================
   NAVBAR
========================================= */
.topBar {
  background-color: var(--primary-color);
  color: #cbd5e1;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.topBarContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBarInfo {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .topBarInfo {
    gap: 1.5rem;
  }
}

.topBarLink {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.topBarLink:hover {
  color: white;
}

@media (max-width: 768px) {
  .topBarLink[href^="mailto:"] {
    display: none;
  }
}

.addressLine {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 992px) {
  .addressLine {
    display: flex;
  }
}

.topBarSocial {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topBarSocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.topBarSocial a:hover {
  color: var(--secondary-color);
}

.header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background-color: #ffffff;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-md);
}

.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logoIcon {
  height: 85px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logoIcon:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .logoIcon {
    height: 55px;
  }
}

.desktopNav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .desktopNav {
    display: flex;
  }
}

.navLink {
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  transition: color var(--transition-fast);
}

.navLink:hover {
  color: var(--secondary-color);
}

.mobileToggle {
  display: block;
  color: var(--text-primary);
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .mobileToggle {
    display: none;
  }
}

.mobileNav {
  display: none;
  /* hidden by default via JS */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobileNav.open {
  display: flex;
}

.mobileNavLink {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.mobileNavLink:hover {
  color: var(--secondary-color);
}

/* =========================================
   HERO SLIDER
========================================= */
.sliderContainer {
  position: relative;
  width: 100%;
  height: 310px;
  min-height: 310px;
  max-height: 340px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slidesWrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-color: #0f172a;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 17, 33, 0.9) 0%, rgba(11, 17, 33, 0.6) 50%, rgba(11, 17, 33, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.slideContent {
  position: relative;
  z-index: 2;
  max-width: 850px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  pointer-events: auto;
}

.slide.active .slideContent {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Why Choose Us CCTV camera floating animation */
@keyframes whyFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent-color);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.badgeDot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: white;
}

.subtitle {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 650px;
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.slideContent .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}

.navBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  display: none;
  /* Hide on mobile by default */
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.navBtn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.prevBtn {
  left: 1rem;
}

.nextBtn {
  right: 1rem;
}

.dotsContainer {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.activeDot {
  background: var(--secondary-color);
  width: 32px;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .overlay {
    background: rgba(11, 17, 33, 0.75);
    /* Darker overlay on mobile to keep text legible */
  }
}

@media (min-width: 480px) {
  .sliderContainer {
    height: 380px;
    min-height: 360px;
    max-height: 400px;
  }

  .title {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .actions {
    flex-direction: row;
    gap: 1rem;
  }

  .slideContent .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .sliderContainer {
    min-height: 420px;
    height: 440px;
    max-height: 480px;
  }

  .title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
  }

  .actions {
    flex-direction: row;
    gap: 1.25rem;
  }

  .slideContent .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .navBtn {
    display: none;
  }

  /* keep hidden on tablet to prevent overlaps */
}

@media (min-width: 1024px) {
  .title {
    font-size: 4rem;
  }

  .sliderContainer {
    height: 650px;
    min-height: 600px;
    max-height: 750px;
  }

  .navBtn {
    display: flex;
    width: 50px;
    height: 50px;
  }
}

/* =========================================
   HOME PAGE SECTIONS
========================================= */
.trustBar {
  background-color: var(--background-color);
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trustGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.trustItem {
  background-color: var(--surface-color);
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trustItem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trustItem:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.trustItem:hover::after {
  opacity: 1;
}

.trustIcon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  transition: transform 0.4s ease;
  display: inline-block;
}

.trustItem:hover .trustIcon {
  transform: scale(1.15) rotate(-5deg);
}

.trustItem h3 {
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
  transition: transform 0.4s ease;
  display: inline-block;
  font-weight: 800;
}

.trustItem:hover h3 {
  transform: scale(1.05);
}

.trustItem p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0;
}

.productsSection {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.productsHeader {
  text-align: center;
  margin-bottom: 4rem;
}

.productsDesc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.productGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .productGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .productGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.productCard {
  background: var(--surface-color);
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.productCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.productCard:hover::before {
  opacity: 1;
}

.productCard:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, var(--primary-color), #1e293b);
  box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.25);
  border-color: transparent;
}

.productImageWrapper {
  width: 100%;
  height: 150px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  background-color: var(--primary-color);
}

.productCardImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.productCard:hover .productImageWrapper {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.productCard:hover .productCardImage {
  transform: scale(1.08);
}

.productCard h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.productCard:hover h4 {
  color: white;
}

.productCard p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.4s ease;
}

.productCard:hover p {
  color: #cbd5e1;
}

.whyChooseUsSection {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.whyGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .whyGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.whyTitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.whyDesc {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.whyList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.whyList li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.checkWrapper {
  width: 40px;
  height: 40px;
  background-color: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.whyList h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.aestheticGraphic {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-color), #1e293b);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphicElement1 {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.2) 0%, transparent 60%);
  top: -25%;
  right: -25%;
}

.graphicElement2 {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
  height: 80%;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.graphicText {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
}

.graphicText h3 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  opacity: 0.9;
}

.ctaSection {
  position: relative;
  padding: 6rem 0;
  background-color: #020617;
  background-image: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  color: white;
  text-align: center;
  border-top: 1px solid #1e293b;
}

.ctaContent {
  position: relative;
  z-index: 2;
}

.ctaContent h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ctaContent p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ctaActions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding-top: 5rem;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footerGrid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer .description {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.socialLinks {
  display: flex;
  gap: 1rem;
}

.socialLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.socialLinks a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.columnTitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.linkList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.linkList a {
  color: #94a3b8;
  display: inline-block;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.linkList a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.contactList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contactList li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94a3b8;
}

.contactIcon {
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.bottomBar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Testimonials Carousel */
.carouselContainer {
  position: relative;
  padding: 0px;
}

.carouselTrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carouselTrack::-webkit-scrollbar {
  display: none;
}

.testimonialCard {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all var(--transition-normal);
  min-width: 300px;
  width: calc(100% - 2rem);
  flex: 0 0 auto;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .testimonialCard {
    width: calc(33.333% - 1.33rem);
  }

  .carouselContainer {
    padding: 0 3rem;
  }
}

.testimonialCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonialCard h4 {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.carouselBtn {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.carouselBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carouselBtn.prevBtn {
  left: -10px;
}

.carouselBtn.nextBtn {
  right: -10px;
}

@media (min-width: 768px) {
  .carouselBtn {
    display: flex;
  }

  .carouselBtn.prevBtn {
    left: 0;
  }

  .carouselBtn.nextBtn {
    right: 0;
  }
}

/* FAQ */
.faqGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faqGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faqCard {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.faqCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.faqCard h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faqCard p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Blog */
.blogGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .blogGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blogCard {
  background-color: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.blogCard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blogImage {
  height: 200px;
  background-color: var(--primary-color);
  overflow: hidden;
  position: relative;
}

.blogCardImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.blogCard:hover .blogCardImage {
  transform: scale(1.08);
}

.blogContent {
  padding: 2rem;
  position: relative;
  z-index: 2;
  background-color: var(--surface-color);
}

.blogDate {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.blogContent h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.blogContent p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blogLink {
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.blogLink:hover {
  color: var(--accent-hover);
}

/* Consolidated Mobile Viewport Overrides (< 768px) */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.65rem;
    margin-bottom: 2rem;
  }

  .whyTitle {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .whyDesc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .whyList {
    gap: 1.25rem;
  }

  .whyList h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .whyList p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .ctaContent h2 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
  }

  /* FAQ Accordion Sizing & Collapse for Mobile */
  .faqCard {
    cursor: pointer;
    padding: 1.25rem;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
  }

  .faqCard h3 {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: margin-bottom var(--transition-normal);
  }

  .faqCard h3::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--secondary-color);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
  }

  .faqCard p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.35s ease;
  }

  .faqCard.faq-open h3 {
    margin-bottom: 0.75rem;
  }

  .faqCard.faq-open h3::after {
    transform: rotate(180deg);
  }

  .faqCard.faq-open p {
    max-height: 250px;
    opacity: 1;
    margin-top: 0.75rem;
  }

  /* Blog Grid Carousel for Mobile Viewport */
  .blogGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0.5rem 1.5rem 2rem 1.5rem;
    margin: 0 -1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .blogGrid::-webkit-scrollbar {
    display: none;
  }

  .blogCard {
    flex: 0 0 400px;
    width: 290px;
    scroll-snap-align: center;
    box-sizing: border-box;
    margin: 0;
  }
}