/* ParentFormFiller.com - Custom Styles */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Light background */
    color: #333;
}

.container {
    max-width: 1200px;
}

/* Custom button styles for a more engaging look */
.btn-primary {
    background-image: linear-gradient(to right, #6366f1, #8b5cf6); /* Purple gradient */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-image: linear-gradient(to right, #8b5cf6, #6366f1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    border: 2px solid #6366f1;
    color: #6366f1;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-heading {
    color: #4a4a4a;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #6366f1;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
    background-color: #6366f1;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}


.inline-icon {
    /* 1. Control the size of the image to fit an icon */
    width: 1.25em; /* Use 'em' for a size relative to the surrounding text */
    height: 1.25em; 
    
    /* 2. CRITICAL: Align the image's middle with the middle of the text line */
    vertical-align: middle; 
    
    /* 3. Optional: Add a small space between the image and the word "Extensions" */
    margin-right: 0.25em;
}

/* ==============================
   ParentFormFiller – Modern Style
   ============================== */
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: #fafafa;
}

/* ==============================
   Gradients
   ============================== */
.gradient-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.gradient-subtle {
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5ff 100%);
}

/* ==============================
   Buttons
   ============================== */
.button.is-primary {
  background-image: linear-gradient(to right, #6366f1, #8b5cf6);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}

/* ==============================
   Cards & Features
   ============================== */
.feature-card {
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ==============================
   Tags
   ============================== */
.tag {
  font-weight: 500;
  border-radius: 9999px;
}

/* ==============================
   Text & Section Spacing
   ============================== */
.title, .subtitle {
  font-family: 'Inter', sans-serif;
}
.section {
  padding: 4rem 1.5rem;
}
.hero.is-medium .hero-body {
  padding: 5rem 1.5rem;
}

/* ==============================
   Footer
   ============================== */
footer.footer {
  border-top: 1px solid #e5e7eb;
  padding: 2rem 1rem;
  background: #fff;
  color: #475569;
}

/* ==============================
   Responsive
   ============================== */
@media screen and (max-width: 768px) {
  .title.is-1 {
    font-size: 2.25rem;
  }
  .title.is-2 {
    font-size: 1.75rem;
  }
}
/* --- Section Visual Separation --- */
.section-alt {
  background-color: #f8fafc;
}

.section-gradient {
  background: linear-gradient(90deg, #f8fafc 0%, #eef2ff 100%);
}

.section-shadow {
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

/* --- Carousel Fix for Hero --- */
.hero .carousel-container {
  margin-top: 3rem;
}

.hero .carousel-button {
  background-color: rgba(255,255,255,0.85);
  color: #4f46e5;
}
.hero .carousel-button:hover {
  background-color: #4f46e5;
  color: #fff;
}

.section-alt {
  background-color: #f8fafc;
}

.section-gradient {
  background: linear-gradient(90deg, #f8fafc 0%, #eef2ff 100%);
}

.section-dark {
  background-color: #1e293b;
  color: #fff;
}

