html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Outfit';
}

/* Robot eye pulse animation */
.robot-eye {
  animation: eyePulse 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes eyePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* --- Section Container --- */
.section-content-container {
  font-family: 'Outfit';
  color: #fff;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2; /* Ensure it sits on top of background elements */
}

.last-section{
  margin-bottom: 80px;
  margin-top: 60px;
}

/* --- Header & Toggle --- */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-toggle-wrapper {
  margin-top: 24px;
}

.pricing-toggle {
  background-color: #0F1116; /* Dark background for toggle */
  border-radius: 100px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-option {
  background: transparent;
  border: none;
  color: #9CA3AF;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-option.active {
  background-color: #262930;
  color: #fff;
}

/* --- Cards Container --- */
.pricing-cards-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap; /* Allows stacking on mobile */
  align-items: stretch;
}

/* --- THE CARD (Glassmorphism Style) --- */
.pricing-card {
  /* Dimensions & Layout */
  flex: 1;
  min-width: 300px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  
  /* Visuals (Matches your image) */
  background-color: rgba(19, 21, 26, 0.85); /* Dark semi-transparent */
  backdrop-filter: blur(30px); /* The Blur Effect */
  -webkit-backdrop-filter: blur(30px); /* Safari support */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Header inside Card */
.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255, 0.05);
  padding-bottom: 24px;
}

/* Icons Colors */
.card-icon { margin-bottom: 16px; }
.icon-blue { color: #0FBBFF; }
.icon-purple { color: #9D4CFF; }
.icon-pink { color: #FF258E; }

.pricing-card-title {
  font-family: Outfit;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  text-transform: uppercase;
  margin: 0 0 8px 0;
  color: #fff;
}

.pricing-card-price {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.pricing-card-subprice {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 6px;
  font-weight: 400;
}

/* Features List */
.pricing-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #E5E7EB;
  font-weight: 400;
  line-height: 1.4;
}

.pricing-card-features li.excluded {
  color: #52525b; /* Darker grey for excluded items */
}

/* Checks and Crosses */
.check { font-weight: bold; font-size: 14px; }
.check.blue { color: #0FBBFF; }
.check.purple { color: #9D4CFF; }
.check.pink { color: #FF258E; }
.cross { color: #52525b; font-size: 12px; }

/* --- BUTTONS (Gradient Border Pills) --- */
.pricing-card-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  position: relative; /* Crucial for pseudo-element */
  background: transparent;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.pricing-card-cta:hover {
  background: rgba(255,255,255,0.05);
}

/* The Gradient Border Magic */
.pricing-card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px; 
  padding: 1px; /* Border thickness */
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Button Color Variants */
.btn-blue { background-color: rgba(27, 164, 255, 0.2); border: 1px solid rgba(27, 164, 255, 0.2); }
.btn-purple { background-color: rgba(133, 69, 255, 0.2); border: 1px solid rgba(133, 69, 255, 0.2); }
.btn-pink { background-color: rgba(254, 36, 142, 0.2); border: 1px solid rgba(254, 36, 142, 0.2); }
/* Button Color Variants */
.btn-blue::before { background-color: rgba(27, 164, 255, 0.2); }
.btn-purple::before { background-color: rgba(133, 69, 255, 1); }
.btn-pink::before { background-color: rgba(254, 36, 142, 1); }

/* --- Custom Plan Bottom Section --- */
.custom-plan-section {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
}

.custom-plan-section .pricing-headline {
  font-size: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }
}


.how-it-works-section {
    /* 1. Setup the container for positioning */
    position: relative;
    align-content: center;
    display: flex;
    flex-direction: column;
    
    /* 2. IMPORTANT: Clip the blurry edges that will spill out */
    overflow: hidden;
    
  padding: 80px 20px;
  text-align: center;
  /* Subtle ambient background glow effect similar to image */
  background: radial-gradient(circle at 50% 50%, rgba(56, 109, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}

/* 3. Apply the image and blur to a pseudo-element */
.how-it-works-section::before {
    content: "";
    position: absolute;
    inset: 0; /* Stretches to fill the container */
    z-index: 0; /* Puts it behind the text */
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
}

/* 7. Ensure your text/content sits ON TOP of the blurred background */
.how-it-works-section > * {
    position: relative;
    z-index: 1;
}


.try-it-out-section {
    /* 1. Setup the container for positioning */
    position: relative;
    align-content: center;
    display: flex;
    flex-direction: column;
    
    /* 2. IMPORTANT: Clip the blurry edges that will spill out */
    overflow: hidden;
    
  padding: 80px 20px;
  text-align: center;
  /* Subtle ambient background glow effect similar to image */
  background: radial-gradient(circle at 50% 50%, rgba(56, 109, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}

/* 3. Apply the image and blur to a pseudo-element */
.try-it-out-section::before {
    content: "";
    position: absolute;
    inset: 0; /* Stretches to fill the container */
    z-index: 0; /* Puts it behind the text */
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
}

/* 7. Ensure your text/content sits ON TOP of the blurred background */
.try-it-out-section > * {
    position: relative;
    z-index: 1;
}

.get-started-paragraph {
  color: #d4d4d4;
  text-align: center;
  max-width: 548px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 28px;
  font-family: Outfit;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

.get-started-paragraph .span {
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

/* --- Modal Overlay --- */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

/* --- Modal Content --- */
.modal-content {
  background-color: #0F1116;
  border: 1px solid #1f2229;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  font-family: 'Outfit';
  color: #fff;
}

/* Close "X" */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #fff;
}

/* Header */
.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.modal-header p {
  color: #9CA3AF;
  font-size: 50px;
  margin: 50px;
}

/* --- Form Layout --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group.full-width {
  grid-column: 1 / -1;
}

.input-group label {
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}

.input-group input {
  background-color: #1a1d24;
  border: 1px solid #2d3038;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: 'Outfit';
  transition: border-color 0.2s;
}

.input-group input:focus {
  border-color: #386DFF;
}

.input-group input::placeholder {
  color: #555;
}

/* --- Gradient Button (Matching your image) --- */
.form-footer {
  display: flex;
  justify-content: center;
}

.modal-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 40px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Outfit';
}

.modal-submit-btn:hover {
  background: rgba(255,255,255,0.05);
}

/* Button Gradient Border Mask */
.modal-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px; 
  padding: 1px; 
  background: linear-gradient(90deg, #0FBBFF, #386DFF, #B22DFF, #FF258E); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 25px;
  }
}

/* General Layout & Fonts */
body {
  background-color: #050505; /* Deep dark background */
    font-family: Outfit;
  color: white;
  margin: 0;
}

/* Typography Headers */
.section-title-container {
  max-width: 800px;
  margin: 0 auto 0px auto;
}

.section-title {
  font-family: Outfit;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -1%;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  font-family: Outfit;
  font-weight: 600;
  font-style: SemiBold;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -1%;
  text-align: center;
}

/* The Gradient Text Effect */
.gradient-text {
  background: linear-gradient(90deg, #386DFF 0%, #FF258E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paragraph {
  color: #a1a1aa;
  font-size: 16px;
  line-height: 1.6;
}

/* Cards Grid */
.steps-wrapper {
  margin: 20px auto;
}

.steps-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background-color: #0f0f11; /* Slightly lighter than body */
  border: 1px solid #1f1f23;
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: transform 0.2s ease;
  width: 370px;
height: 124px;
top: 3057px;
left: 210px;
angle: 0 deg;
opacity: 1;
border-radius: 20px;
border-width: 1px;
}

.step-card:hover {
  border-color: #333;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #27272a; /* Dark grey number */
  line-height: 1;
  margin-bottom: 16px;
}

.step-label {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Gradient Border Button "Try it out" */
.cta-container {
  display: flex;
  justify-content: center;
}

.btn-gradient-border {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  background: #050505; /* Matches body bg */
  transition: 0.3s;
}

/* Creating the gradient border using a pseudo-element */
.btn-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px; 
  padding: 1.5px; /* Border width */
  background: linear-gradient(90deg, #386DFF, #FF258E); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-gradient-border:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer Styling */
.site-footer {
  border-top: 1px solid #1f1f23;
  padding: 40px 20px;
  background-color: #000;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-left: -65px;
}

.logo-ai {
  color: #a855f7; /* Purple hint for AI text */
  font-style: italic;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-nav a {
  color: #e2e2e2;
  text-decoration: none;
  font-size: 14px;
}

.btn-login {
  background: linear-gradient(90deg, #1e1e24, #2d1b36); /* Subtle dark gradient */
  border: 1px solid #FF258E;
  padding: 8px 24px;
  border-radius: 20px;
  color: white !important;
}

.footer-description {
  color: #a1a1aa;
  font-size: 14px;
  margin-bottom: 30px;
}

.footer-divider {
  height: 1px;
  background-color: #1f1f23;
  margin-bottom: 30px;
}

.footer-copyright {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  color: #71717a;
  font-size: 13px;
  gap: 4px;
}

.footer-copyright a {
  color: #a1a1aa;
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 32px;
  }

  .section {
    height: auto;
  }

  #how-it-works {
    height: auto !important; /* Override inline style */
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}
/* Container for Success Message */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 100%;
  width: 100%;
  min-height: 400px; /* Ensure modal stays same size */
  animation: fadeIn 0.3s ease-in-out;
}

.success-icon {
  margin-bottom: 24px;
}

.success-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-desc {
  color: #9CA3AF;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 400px;
}

/* The 'Done' Button with Gradient Border */
.btn-done {
  position: relative;
  background: #15171e; /* Should match your modal background color */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 60px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.2s;
}

/* Pseudo-element for the gradient border */
.btn-done::before {
  content: "";
  position: absolute;
  inset: -2px; /* Border width */
  border-radius: 99px; 
  padding: 2px; 
  background: linear-gradient(90deg, #386DFF, #FF258E); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-done:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Test Call Modal Specifics --- */

/* Button Row Layout */
.form-footer-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* Cancel Button */
.btn-cancel {
  background: transparent;
  color: #9CA3AF;
  border: 1px solid #2D3039;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-cancel:hover {
  background: #2D3039;
  color: #fff;
}

/* "Test Call Now" Button (Gradient Border) */
.btn-test-call {
  position: relative;
  background: #15171e;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn-test-call::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 52px; 
  padding: 1px; 
  background: linear-gradient(90deg, #386DFF, #FF258E); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-test-call:hover {
  filter: brightness(1.2);
}

/* Blue Focus on Phone Input (Specific to this modal) */
#tc-phone:focus {
  border-color: #0FBBFF;
  box-shadow: 0 0 0 1px #0FBBFF;
  outline: none;
}

/* --- Loading State Styles --- */

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

/* The Gradient Spinner Animation */
.gradient-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, #0FBBFF 50%, #FF258E 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff 0);
  animation: spin 1s linear infinite;
  position: relative;
}

/* Small dot at the head of the spinner for the glow effect */
.gradient-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF258E;
  box-shadow: 0 0 5px #FF258E;
}

/* "Done" Button Dark Style */
.btn-done-dark {
  background: #23262F;
  color: #6B7280;
  border: none;
  padding: 10px 48px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

.btn-done-dark:hover {
  background: #2D3039;
  color: #9CA3AF;
}

/* --- Mobile Navigation Styling --- */

/* 1. Style the hamburger icon container */
.w-nav-button {
  color: #fff; /* Makes the three lines white */
  margin-right: 0px; /* Aligns it with the edge */
}

/* Optional: Add a background to the button when menu is open */
.w-nav-button.w--open {
  background-color: #27272a; 
  border-radius: 8px;
}

/* 2. Tablet and Mobile Breakpoints (991px is Webflow's default nav break) */
@media screen and (max-width: 991px) {
  
  /* Style the dropdown container background */
  .nav-menu {
    background-color: #171717; /* Matches your body background */
    padding-top: 20px;
    padding-bottom: 40px;
    height: 100vh; /* Optional: Makes menu take full screen height */
    overflow-y: auto; /* Allows scrolling if menu is tall */
    border-top: 1px solid #27272a; /* Subtle separation line */
  }

  /* Style the Links (Pricing, How it works) */
  .nav-link {
    display: block;
    padding: 20px;
    text-align: center; /* Center the text */
    font-size: 18px;    /* Slightly larger for tapping */
    color: #d4d4d4;
    border-bottom: 1px solid #262626; /* Separator lines between links */
  }

  .nav-link:hover {
    background-color: #262626;
    color: #fff;
  }

  /* 3. Fix the Login Button inside mobile nav */
  .nav-menu .hero-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0 !important;
    width: 200px !important;
    max-width: 200px !important;
    height: 44px !important;
  }

  /* Ensure the navbar background itself is solid when open */
  .navbar {
    background-color: #171717;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-container svg {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Carousel Container */
  .carousel {
    position: relative;
    
    /* --- SIZING FIXES START --- */
    width: 100%;
    max-width: 1199px;
    margin: 0 auto;           /* Centers the carousel */
    /* --- SIZING FIXES END --- */

    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .carousel-track-container {
    background: #f4f4f4;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure track fills the aspect ratio container */
  }

  .carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Ensures image fills the 1440x900 box perfectly */
  }

  /* Navigation Buttons */
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }

  .carousel-button:hover {
    background: rgba(255, 255, 255, 1);
  }

  .carousel-button--left { left: 15px; }
  .carousel-button--right { right: 15px; }

  /* Navigation Dots */
  .carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 10;
  }

  .carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .carousel-indicator.current-slide {
    background: #fff;
    transform: scale(1.2);
  }