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

html, body {
  height: auto;
  overflow-y: auto;
}
#header {
  overflow: visible;
}
main{
  overflow: visible;
}

.nav-spacer {
    margin-top: 60px;
}




:root {
  --bg-black-transparent : #0000001c;
  --bg-grey-color: #cfcfcf4f;
  --bg-label-color: #fff1d8;
  --background: #fdfcfa;
  --foreground: #000000;
  --card: #ffffff;
  --card-foreground: #1a1614;
  --primary: #c45a2c;
  --primary-hover: #a84b24;
  --primary-foreground: #ffffff;
  --secondary: #f5f3f0;
  --secondary-foreground: #1a1614;
  --muted: #f0ebe6;
  --muted-foreground: #6b5c52;
  --accent: #d97b4a;
  --accent-foreground: #ffffff;
  --border: #e8e2db;
  --input: #ebe6e0;
  --ring: #c45a2c;
  --radius: 0.625rem;
}





.playfair-display-font {
   font-family: "Ubuntu", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.section1{
    background-color: var(--foreground);
    margin: 0;
    height: 15vh !important;
    overflow: hidden;
}


.section1{
    width: 100%;
    height: 100%;
    display: flex;
}

.section1>div{
    margin-top: 0px;
    height: 100%;
    width: 25%;
    border-left: 1px solid var(--card);
    border-right: 1px solid var(--card);
    background-size: cover;
    background-position: center;
}

.section1>div>div{
    width: 100%;
    height: 100%;
    color: var(--card);; ;
    font-size: 50px;
    background-color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
}

.section1>div>div:hover{
    cursor: default;
    font-size: 50px;
    color:var(--card);
    background-color: #184d4700;
}

#child1{
    border-left: none;
    background-image: url('https://i.pinimg.com/564x/0c/b6/49/0cb649c25a07b7b9922c6752ba583945.jpg');
}

#child2{
    background-image: url('https://i.pinimg.com/564x/a2/c9/12/a2c91222ca8da20a6039324b80bafd62.jpg');
}

#child3{
    background-image: url('https://i.pinimg.com/564x/ac/3c/5c/ac3c5c9499b0ffaecaad8a967a40adf1.jpg');
}

#child4{
    border-right: none;
    background-image: url('https://i.pinimg.com/564x/82/c7/ff/82c7ffcb3e1ad946f0cc441540e81994.jpg');
}


.greenzone{
    width: 50%;
}

.greenzone>h1{
    margin: 15px 0;
    font-size: 30px;
    position: relative;
    left: 0;
    transition: 0.5s ease-in-out;
}



.greenzone>h1:hover{
    padding-left: 30px;
    cursor: pointer;
    color: var(--card);;
}


@media only screen and (max-width: 768px) {

    .section1>div>div{
        font-size: 100px;
    }

    .section1>div>div:hover{
        font-size: 150px;
    }

    

}



@media only screen and (max-width: 450px) {
  
  .section1 {
    background-color: var(--foreground);
    margin: 0;
    height: 9vh !important;
    overflow: hidden;
}

    .section1>div>div{
        font-size: 35px;
    }

    .section1>div>div:hover{
        font-size: 100px;
    }

    
    
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--foreground);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--secondary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 4.5rem;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex; /* Ensures header itself behaves like a flex box */
  align-items: center;
  transition: all 0.3s ease; 
}

/* .nav-spacer {
  height: 3rem;
} */

@supports (backdrop-filter: blur(1px)) {
  .header {
    background-color: #000000;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4.5rem; /* Spans the full 5.5rem of the parent */
  /* max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem; */
  /* position: sticky; */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  z-index: 10;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.logo-vero {
  color: var(--accent-foreground);
}

.logo-bite {
  color: var(--primary);
}

.nav{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-desktop {
  display: none; /* Hidden on mobile */
  flex: 1;
  align-items: center;
  height: 100%;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-links-wrapper {
  display: flex;
  gap: 2.5rem; /* More horizontal breathing room */
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  height: 100%;
  color: var(--card);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  padding: 0 5px;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--primary);
  font-weight: 900;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  z-index: 10;
}


.login-link {
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
    background-color: #fff;
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.login-link:hover {
  color: #fff;
  font-size: 0.9rem;
  background-color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.btn-demo {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn-demo:hover {
  background-color: var(--primary);
}


/* mobile menu css */
/* Mobile Menu Base */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.4s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  min-height: 100vh;
}

/* Active state */
.mobile-menu.active {
  right: 0;
}

/* Inner */
.mobile-menu-inner {
  padding: 20px;
}

/* Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.close-btn {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* CTA */
.mobile-cta {
  margin-top: 15px;
  background: black;
  color: white;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
}



/* --- Product Mega Card (The Hover Card) --- */
.product-label {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}

.product-trigger-area {
  position: relative;
  padding: 20px 0; /* Creates hover bridge so card doesn't close */
}

.product-mega-card {
  display: none;
  position: absolute;
  top: 100%; /* Sits exactly at bottom of header */
  /* left: 50%; */
  transform: translateX(-30%);
  width: 850px;
  background: var(--foreground);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 30px;
  z-index: 9999;
}

.product-trigger-area:hover .product-mega-card {
  display: block;
}

.mega-card-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
}

#features{
  background-color: var(--bg-grey-color);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px; /* Space for the hover background to show */
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.feature-item:hover {
  background-color: #353535; /* Subtle light gray */
  transform: translateY(-2px); /* Slight lift effect */
}



.feature-item:hover h4 {
  color: var(--primary); /* Blue highlight for the title */
}

.f-icon {
  color: var(--primary);
  font-size: 1.25rem;
  /* margin-top: 2px; */
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #ef692f;
}

.feature-item p {
  font-size: 0.8rem;
  color: #fff1d8;
  margin: 0;
  line-height: 1.4;
}

.mega-card-promo {
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.promo-image-mock {
  background-color: #111;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

/* drop down for company tab */

/* --- Positioning --- */
.company-trigger-area {
  position: relative; /* Context for the absolute dropdown */
  display: flex;
  align-items: center;
  height: 100%; /* Ensures it spans the header height */
  flex-shrink: 0;
  cursor: pointer;
}

/* --- The Dropdown Box --- */
.generic-dropdown {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Directly below the link */
  left: 0;
  width: 320px; /* Big width as requested */
  background-color: var(--foreground);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.2s ease-out;
  pointer-events: auto;
}

.generic-dropdown::before {
  content: "";
  position: absolute;
  top: -20px; /* Adjust this to match the gap between link and menu */
  left: 0;
  width: 100%;
  height: 20px; /* Fills the invisible gap */
  background: transparent;
}

/* --- Show on Hover --- */
.company-trigger-area:hover .generic-dropdown {
  display: block;
}

/* --- Individual Item Styling --- */
.dropdown-item {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f5f5f5; /* Subtle gray background */
  color: var(--primary);
  padding-left: 28px; /* Subtle slide effect */
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none; /* Add a hamburger menu logic for mobile */
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.mobile-nav-link:hover {
  background-color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0;
    background: url("../Images/hero-bg.jpg") center/cover no-repeat;
    overflow: hidden;
    background-color: #121212a6;
    background-blend-mode: overlay;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.77);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background-color: rgba(196, 90, 44, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  color: var(--card);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--card);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--card);
}

/* Form Card */
.form-card {
  background-color: var(--bg-black-transparent);
  border-radius: 1rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--card);
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--card);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.875rem;
  background-color: var(--bg-label-color);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(196, 90, 44, 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5c52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  border: 1px solid #c35a2b;
}

.form-note {
  font-size: 0.75rem;
  color: var(--card);
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.active {
  display: block;
}

.form-content.hidden {
  display: none;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #22c55e;
}

/* Success Stories Section */
.success-stories {
  padding: 5rem 0;
  margin: 0;
    /* height: 100vh; */
    background: linear-gradient(135deg, #ffffff 60%, #c35a2b 60%, #c35a2b 70%, #ffffff 70%, #ffffff 80%, #c35a2b 80%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
  text-align: left;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: var(--foreground);
}

.faq .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.faq .section-subtitle {
  font-size: 1.125rem;
  color: var(--bg-label-color);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.stories-carousel {
  position: relative;
  overflow: hidden;
}

.stories-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.stories-track::-webkit-scrollbar {
  display: none;
}



.story-card {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #000;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 76%);
  z-index: 0;
}

.story-card > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .story-card {
    flex: 0 0 calc(50% - 35rem);
  }
}

@media (min-width: 1024px) {
  .story-card {
    flex: 0 0 calc(33.333% - 40rem);
	min-height: 400px;
  }
}

.story-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
  transform: translateY(180px);
  transition:.5s;
}

.story-card:hover .story-content{
	transform: translateY(0px);
}

.story-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.story-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
    color: var(--card);
}

.story-location {
  font-size: 0.875rem;
    color: var(--card);
  margin-bottom: 1rem;
}

.story-stats {
  display: flex;
  gap: 1.5rem;
}

.story-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--card);
}

.story-stat-label {
  font-size: 0.75rem;
    color: var(--card);
  
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background-color: var(--secondary);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.stories-carousel {
  overflow: hidden;
  position: relative;
}

.stories-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

/* pause on hover (optional) */
.stories-carousel:hover .stories-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.story-card {
  min-width: 300px; /* adjust as needed */
  flex-shrink: 0;
  border-radius: 25px;
}


/* Support Section */
.support {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0px 0px 40px 40px;
    z-index: 999;
    position: relative;
}

.support-inner {
  text-align: center;
}

.support-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .support-title {
    font-size: 2.5rem;
  }
}

.support-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  display: grid;
  gap: 2rem;
}

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

.support-item {
  text-align: center;
}

.support-item-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.support-item-icon svg {
  width: 2rem;
  height: 2rem;
}

.support-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-item-desc {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Testimonial Section */
.testimonial {
  padding: 5rem 0;
  position: relative;
  /* background-color: var(--card); */
      background-attachment: fixed;
  background-image: url("../Images/testimonials-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
      margin-top: -45px;
      margin-bottom: -40px;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 77%);
  z-index: 0;
}

.testimonial .container {
  position: relative;
  z-index: 1;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  color: #fff;
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.75rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
}

.testimonial-role {
  font-size: 0.875rem;
  /* color: var(--muted-foreground); */
  color: #fff;
}

/* Blog Section */
.blog {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(196, 90, 44, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
section#faq .container {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    display: grid;
    align-items: center;
}

.faq {
  padding: 5rem 0;
  background-color: var(--primary);
    border-radius: 40px 40px 0 0;
    z-index: 999;
    position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--bg-label-color);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  font-size: 1rem;
  color: var(--bg-label-color);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.social-link:hover {
  background-color: var(--primary);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 1;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  position: relative;
  /* background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%); */
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../Images/testimonials-bg.jpg");
  background-size: cover;
  background-position: center;
  /* filter: blur(8px); */
  transform: scale(1.1);
  z-index: 0;
  background-blend-mode: color;
  background-color: #000000bf;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.cta-btn {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.card-progress {
  margin-top: 14px;
  height: 4px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.card-progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  animation: progressLoop 2.5s linear infinite;
}

.feature-card:hover .card-progress-fill {
  animation-play-state: paused;
}

@keyframes progressLoop {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* --- Pricing Page Styles --- */

body.pricing-page {
   font-family: "Ubuntu", sans-serif;
    background-color: #f8f7f5;
    color: #262422;
    line-height: 1.6;
}

.pricing-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.pricing-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #262422;
}

.pricing-hero-subtitle {
    font-size: 18px;
    color: #726d68;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn-outline {
    border: 1px solid #d16d37;
    color: #d16d37;
    background-color: transparent;
}

.pricing-btn-outline:hover {
    background-color: rgba(209, 109, 55, 0.1);
}

.pricing-btn-primary {
    background-color: #d16d37;
    color: #ffffff;
}

.pricing-btn-primary:hover {
    background-color: #b85a2f;
}

/* 2075 Toggle */
.billing-toggle-section {
    padding: 40px 0;
    text-align: center;
}

.billing-toggle {
    display: inline-flex;
    background-color: #ffffff;
    border: 1px solid #e5e1d8;
    border-radius: 12px;
    padding: 8px;
    gap: 0;
}

.toggle-label {
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #726d68;
    position: relative;
}

.toggle-label input {
    display: none;
}

.toggle-label.active {
    background-color: #d16d37;
    color: #ffffff;
}

.saving-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.toggle-label.active .saving-badge {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e5e1d8;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 10px 40px rgba(209, 109, 55, 0.15);
    transform: translateY(-5px);
}

.plan-card.popular {
    border-color: #d16d37;
    box-shadow: 0 10px 30px rgba(209, 109, 55, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background-color: #d16d37;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #262422;
}

.plan-description {
    font-size: 14px;
    color: #726d68;
    margin-bottom: 25px;
    line-height: 1.5;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #d16d37;
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 16px;
    color: #726d68;
}

.plan-billing-period {
    font-size: 14px;
    color: #726d68;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe5;
    font-size: 14px;
    color: #262422;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "âœ“";
    color: #d16d37;
    font-weight: 700;
    margin-right: 12px;
    font-size: 16px;
}

.plan-cta {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-cta-primary {
    background-color: #d16d37;
    color: #ffffff;
}

.plan-cta-primary:hover {
    background-color: #b85a2f;
}

.plan-cta-outline {
    background-color: transparent;
    color: #d16d37;
    border: 1px solid #d16d37;
}

.plan-cta-outline:hover {
    background-color: rgba(209, 109, 55, 0.1);
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid #e5e1d8;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #262422;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.comparison-table thead tr {
    background-color: #f8f7f5;
    border-bottom: 1px solid #e5e1d8;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #262422;
    font-size: 14px;
}

.comparison-table th:nth-child(n+2) {
    text-align: center;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0ebe5;
    font-size: 14px;
}

.comparison-table tbody tr:hover {
    background-color: #faf9f7;
}

.comparison-table .category-row {
    background-color: #f8f7f5;
    font-weight: 700;
    color: #262422;
}

.comparison-table .category-row td {
    padding: 15px 20px;
}

.comparison-table td:nth-child(n+2) {
    text-align: center;
}

.check-mark {
    color: #d16d37;
    font-size: 18px;
    font-weight: 700;
}

.dash {
    color: #ccc;
    font-size: 18px;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0;
background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
        margin-top: 30px;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #262422;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.input-label {
    font-weight: 600;
    color: #262422;
    font-size: 14px;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #d16d37 0%, #d16d37 var(--value), #e5e1d8 var(--value), #e5e1d8 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--bg);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d16d37;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(209, 109, 55, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d16d37;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(209, 109, 55, 0.3);
}

.input-value {
    min-width: 100px;
    padding: 8px 12px;
    border: 1px solid #e5e1d8;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    background-color: #ffffff;
    color: #d16d37;
}

.calculator-results {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e1d8;
}

.result-item {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ebe5;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-label {
    font-size: 14px;
    color: #726d68;
    font-weight: 600;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #d16d37;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #262422;
}

.faq-subtitle {
    font-size: 16px;
    color: #726d68;
}

.faq-item {
    /* background-color: #ffffff; */
    /* border: 1px solid #e5e1d8; */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f7f5;
}

.faq-question.active {
    background-color: rgba(209, 109, 55, 0.1);
    color: #d16d37;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #d16d37;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #726d68;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 32px;
    }

    .pricing-hero-subtitle {
        font-size: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .calculator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .billing-toggle {
        flex-direction: column;
    }

    .toggle-label {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    .form-card {
      padding: 0;
    }
    .nav-spacer {
    margin-top: 40px;
}
.stories-track {
height: 400px;
}
.stories-track {
  width: auto;
  overflow-x: visible;
  animation: scrollMarquee 15s linear infinite;
}
}

@media (max-width: 480px) {

    .pricing-hero-title {
        font-size: 24px;
    }

    .comparison-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 24px;
    }

    .calculator-title {
        font-size: 24px;
    }
}
/* --- Feature Pages Shared Styles --- */

.feature-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.feature-hero-content {
    flex: 1;
    min-width: 300px;
}

.feature-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.feature-hero p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Feature Page Buttons */
.feature-btn-secondary {
    background: #e5e7eb;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-btn-secondary:hover {
    background: #d1d5db;
}

/* Grids */
.feature-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

/* Feature Lists */
.feature-list-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* from money-features */
}

.feature-list-item {
    display: flex;
    gap: 1rem;
}

.feature-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    /* Adapted to theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.feature-list-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-foreground);
}

.feature-list-text p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Generic Cards */
.feature-card {
    background: #1a1a1a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-content {
    padding: 1.5rem;
}

.feature-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* FAQs */
.feature-faqs-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.feature-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-faq-question {
    padding: 1.25rem;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    user-select: none;
    transition: background 0.3s ease;
}

.feature-faq-question:hover {
    background: #f3f4f6;
}

.feature-faq-toggle {
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-faq-toggle.active {
    transform: rotate(180deg);
}

.feature-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    padding: 0 1.25rem;
}

.feature-faq-answer.active {
    padding: 1.25rem;
    max-height: 500px;
}

.feature-faq-answer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.feature-testimonial-sidebar {
    background: #1a1a1a;
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.feature-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    margin-bottom: 1rem;
}

.feature-testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.feature-testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Stats */
.feature-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Feature Page Specific Sections overrides/utilities */
.bg-gray {
    background-color: #f5f5f5;
}

.bg-dark-gray{
    background-color: #1d1d1d;
}


.bg-dark {
    background-color: #1a1a1a;
    color: white;
}

.text-white {
    color: white;
}

.text-gray {
    color: #d1d5db;
}

@media (max-width: 768px) {

    .feature-hero,
    .feature-grid-2,
    .feature-grid-3,
    .feature-faqs-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .feature-hero {
        flex-direction: column;
        gap: 2rem;
    }
}
/* --- Delivery Page Specifics --- */
.driver-card {
    position: relative;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.driver-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.driver-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

/* --- Online Ordering Specifics --- */
.ordering-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ddd;
    position: absolute;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-1 {
    top: 20px;
    left: 20px;
}

.avatar-2 {
    top: 50px;
    right: 40px;
    background: #e5e7eb;
}

.avatar-3 {
    bottom: 80px;
    left: 60px;
    background: #f0f0f0;
}

.avatar-4 {
    bottom: 40px;
    right: 80px;
    background: #d9d9d9;
}

.avatar-5 {
    top: 150px;
    left: 150px;
    background: #efefef;
}

.ordering-card-overlay {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- Loyalty Page Specifics --- */
.rewards-card {
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    padding: 2rem;
}

.rewards-preview {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.rewards-preview img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #333;
}

.loyalty-hero-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* --- Website Builder Specifics --- */
.design-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.design-card {
    background: #1f2123;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.design-card:hover {
    transform: translateY(-5px);
}

.design-card img {
    border-radius: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

/* --- How It Works Animations & Styles --- */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

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

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

@keyframes flowGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px #2563eb);
    }

    50% {
        filter: drop-shadow(0 0 8px #2563eb);
    }
}

@keyframes flowDraw {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */

.hiw-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out 0.3s both, float 3s ease-in-out infinite 1s;
}

.hiw-features {
    position: relative;
    padding: 4rem 2rem;
}

.flow-connector {
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    width: 100%;
    height: 80%;
    pointer-events: none;
    z-index: 0;
}

.flow-path {
    stroke-dasharray: 1000;
    animation: flowDraw 2.5s ease-out forwards, flowGlow 3s ease-in-out infinite 0.5s;
}

.hiw-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
    opacity: 1;
    /* JS triggers visible */
}

.hiw-feature-item.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hiw-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hiw-feature-item:nth-child(even) {
    direction: rtl;
    /* Flip grid order visually */
}

.hiw-feature-item:nth-child(even)>* {
    direction: ltr;
    /* Reset text direction */
}

.hiw-feature-number {
    font-size: 32px;
    font-weight: 700;
    color: #d1d5db;
    margin-right: 12px;
}

.hiw-feature-text h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.hiw-feature-image img {
    border-radius: 16px;
    transition: transform 0.3s ease;
    width: 100%;
}

.hiw-feature-image img:hover {
    transform: scale(1.03);
}

.hiw-cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    background-size: 200% 200%;
    color: white;
    padding: 4rem 2rem;
    animation: gradientFlow 6s ease infinite;
    border-radius: 1rem;
    margin-top: 4rem;
}
/* --- Company Pages Shared Styles --- */
.company-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Hero */
.company-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.company-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-hero p {
    color: #6b7280;
    max-width: 720px;
    font-size: 1.1rem;
}

.company-hero-media {
    width: 100%;
    max-width: 900px;
    height: 420px;
    border-radius: 20px;
    background: #e5e7eb;
    margin-top: 2rem;
    overflow: hidden;
}

.company-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Section */
.company-dark-section {
    background: #0f1715;
    color: white;
    padding: 80px 40px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.company-dark-section h2 {
    font-size: 2rem;
    font-weight: 600;
}

.company-dark-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Grids */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.company-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

/* Cards & Members */
.company-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    min-height: 180px;
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.company-card p {
    color: #6b7280;
}

.company-member-card {
    background: white;
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-avatar {
    height: 180px;
    background: #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-member-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.company-member-card span {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
}

/* Splits */
.company-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.company-media {
    height: 300px;
    background: #334155;
    border-radius: 16px;
    overflow: hidden;
}

.company-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA */
.company-cta {
    background: #e7d7c9;
    border-radius: 28px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.company-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111;
}

/* Quotes */
.company-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    text-align: center;
}

.company-quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #111;
}

/* Logos */
.company-logos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 2rem;
}

.company-logo-item {
    width: 100px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 8px;
}

/* Press Specifics */
.press-article {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.press-thumb {
    height: 180px;
    background: #e5e7eb;
}

.press-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.press-content h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.press-content span {
    font-size: 0.8rem;
    color: #6b7280;
}

.press-content a {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

/* --- Mobile App Page Specifics --- */
.mobile-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 500px;
    padding: 80px 0;
}

.mobile-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.mobile-stat-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mobile-testimonial {
    background: #1d1c1c;
    border-radius: 32px;
    padding: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.mobile-testimonial-img {
   width: 340px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.mobile-faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.mobile-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 24px 0;
}

@media (max-width: 900px) {

    .company-split,
    .company-cta,
    .mobile-hero,
    .mobile-feature-grid,
    .mobile-testimonial {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
/* --- Resource Pages Shared Styles --- */
.resource-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Resource Hero */
.resource-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resource-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    font-weight: 600;
}

.resource-hero p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Feature & Cards */
.resource-feature {
    background: white;
    border-radius: 28px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.resource-feature .media {
    height: 220px;
    background: #e5e7eb;
    border-radius: 18px;
}

.resource-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.resource-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.resource-thumb {
    height: 160px;
    background: #e5e7eb;
}

.resource-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Blog Specifics */
.blog-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.blog-subscribe {
    background: white;
    border-radius: 20px;
    padding: 24px;
    height: fit-content;
}

.blog-topics {
    background: #f1f0ee;
    border-radius: 28px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.blog-topic-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-topic-header a {
    color: #2563eb;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

/* Case Studies Specifics */
.case-study-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-item {
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.case-study-media {
    height: 140px;
    background: #e5e7eb;
    border-radius: 16px;
    position: relative;
}

.case-study-media::after {
    content: "â–¶";
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-stats {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: #6b7280;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.case-study-read {
    color: #2563eb;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

/* Reviews Specifics */
.reviews-section-dark {
    background: #0f1715;
    color: white;
    border-radius: 32px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.reviews-section-dark p {
    color: #cbd5e1;
}

.review-card {
    background: white;
    color: #111;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars {
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #fbbf24;
    /* Added star color */
}

.review-card span {
    font-size: 0.8rem;
    color: #6b7280;
}

.review-card a {
    color: #2563eb;
    font-size: 0.9rem;
    text-decoration: none;
}

.review-image-break {
    height: 360px;
    background: #1f2937;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-highlight-card {
    background: white;
    color: #111;
    border-radius: 16px;
    padding: 20px;
    max-width: 420px;
    text-align: center;
}

/* Common CTA for resources */
.resource-cta {
    background: #e7d7c9;
    border-radius: 32px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.resource-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.resource-cta .media {
    height: 320px;
    background: #c4b5a5;
    border-radius: 20px;
}

@media (max-width: 900px) {

    .resource-feature,
    .blog-split,
    .case-study-item,
    .resource-cta {
        grid-template-columns: 1fr;
    }
}
/* --- Action/Misc Pages Shared & Specific Styles --- */

/* Demo & Generic Main */
.action-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.demo-hero {
    margin-bottom: 3rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.demo-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 600px;
}

.demo-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
}

.demo-stars {
    color: #ffa500;
    font-size: 1.25rem;
}

/* Demo Cards */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.demo-card {
    background-color: #d4d4d4;
    padding: 2rem;
    border-radius: 12px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.demo-badge-card {
    background-color: #f0f0f0;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-testimonial {
    background-color: #d4d4d4;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.demo-testimonial-img {
    width: 80px;
    height: 80px;
    background-color: #888;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Login/Auth Styles */
.auth-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.auth-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    max-width: 600px;
}

.auth-brand {
    flex: 1;
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed #e0e0e0;
}

.auth-form-group {
    margin-bottom: 24px;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: #c45a2c;
}

.auth-btn {
    width: 100%;
    background-color: #c45a2c;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 32px;
}

.auth-btn:hover {
    opacity: 0.9;
}

/* Support & Help Center */
.support-main {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    min-height: 100vh;
}

.support-hero {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-search {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.support-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
}

.support-most-viewed {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.support-categories {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.support-category-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e5e7eb;
}

.support-contact-grid {
    background: #f1f0ee;
    border-radius: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    /* Aligns with support-main max-width usually */
}

.support-contact-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-split {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Partner Styles */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.partner-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-detail {
    background: white;
    border-radius: 24px;
    padding: 32px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* Product Release Styles */
.release-video-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.release-video {
    height: 420px;
    background: #000;
    border-radius: 20px;
}

.release-video.small {
    height: 300px;
}

.release-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.release-feature-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    min-height: 120px;
}

.release-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
  .hero-stats {
    gap: 1rem;
}

    .demo-grid,
    .demo-testimonial,
    .partner-grid,
    .support-split,
    .release-split {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .auth-brand {
        display: none;
    }

    .auth-main {
        padding: 40px;
        max-width: 100%;
    }

    .success-stories {
    padding: 1rem 0;
    }
    .tab-btn {
    padding: 0.75rem 0.5rem;
    }
    .testimonial {
    background-size: 100% 85%;
}
.cta-section::before {
    background-size: 100% 85%;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;

}
.footer-brand {
    max-width: 100%;
    width: 100% !important;
}
.footer-grid>div{
  width: 46%;
    text-align: left;
}
/* website builder */
.design-showcase {
    grid-template-columns: 1fr;

}
/* automated  */
.feature-section{
  padding: 2rem;
}
.feature-section>div{
  flex-wrap: wrap;
}
.fe-video>div{
  width: 100% !important;
  height: auto !important;
}
.mobile-hero {
    padding: 0px 0;
}
.hiw-feature-item{
  grid-template-columns: 1fr;
}
.hiw-cta .container{
      grid-template-columns: 1fr !important;
      width: 100% !important;
}
}



/* ── Cards grid ── */
.cards-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:5px;
  width:100%;
  max-width:100%;
}

/* ── Flip card ── */
.flip-card{
  height:295px;perspective:1200px;cursor:pointer;
  transition: .65s;
}
.flip-card:hover{
  transform: scale(1.1);
  box-shadow: 13px 20px 10px #efefef;
  transition: .5s;
  z-index: 99999;
  position: relative;
}
.flip-inner{
  width:100%;height:100%;position:relative;
  transform-style:preserve-3d;
  transition:transform .65s cubic-bezier(.4,0,.2,1);
}


.flip-front,.flip-back{
  position:absolute;inset:0;
  border-radius:0px;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  overflow:hidden;
}

/* ── Front face ── */
.flip-front{
  background:#fff;
  border:1px solid #f0ece6;
  box-shadow:0 2px 20px rgba(0,0,0,.06);
  display:flex;flex-direction:column;
}
.card-img{
  flex:1;position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  font-size:80px;
}
.card-img-bg{
  position:absolute;inset:0;
  transition:transform .65s;
}
.flip-card:hover .card-img-bg{transform:scale(1.05)}
.card-emoji{position:relative;z-index:1;filter:drop-shadow(0 8px 24px rgba(0,0,0,.15));color: #c35a2b;font-size: 45px;
    background: var(--bg-grey-color);
    border-radius: 50px;
    padding: 10px 20px;
      width: 100px;
    height: 100px;
  text-align:center;
box-shadow: inset 3px -5px 8px 5px #ccc;
    background: #fff;}
.card-badge{
  position:absolute;top:14px;right:14px;z-index:2;
  font-size:11px;font-weight:600;letter-spacing:1px;
  padding:4px 10px;border-radius:20px;
  text-transform:uppercase;
}
.badge-new{background:#111;color:#fff}
.badge-sale{background:#ef4444;color:#fff}
.badge-hot{background:#f97316;color:#fff}

.card-info{
  padding:18px 20px;
  border-top:1px solid #f5f1eb;
}
.card-category{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:#9ca3af;margin-bottom:4px}
.card-name{font-family:'Fraunces',serif;font-size:18px;font-weight:600;margin-bottom:8px}

/* ── Back face ── */
.flip-back{
  background:var(--card-color,#111);
  transform:rotateY(180deg);
  display:flex;flex-direction:column;
  padding:28px;
  color:#fff;
}
.back-tag{
  font-size:10px;letter-spacing:2px;text-transform:uppercase;
  opacity:.5;margin-bottom:16px;
}
.back-name{
  font-family:'Fraunces',serif;font-size:22px;font-weight:600;
  margin-bottom:12px;line-height:1.2;
}
.back-desc{font-size:13px;opacity:.65;line-height:1.6;margin-bottom:20px;flex:1}
.back-features{list-style:none;margin-bottom:24px;display:flex;flex-direction:column;gap:8px}
.back-features li{display:flex;align-items:center;gap:8px;font-size:13px;opacity:.75}
.back-features li::before{content:'✓';color:var(--card-accent,#fff);font-weight:700;opacity:1}
.back-price{
  display:flex;align-items:baseline;gap:6px;margin-bottom:18px;
}
.back-price-main{font-family:'Fraunces',serif;font-size:34px;font-weight:600}
.back-price-period{font-size:13px;opacity:.45}
.back-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--card-accent,rgba(255,255,255,.15));
  border:none;border-radius:12px;padding:13px;
  color:var(--cta-text,#111);font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:600;cursor:pointer;
  transition:all .2s;
}
.back-cta:hover{filter:brightness(1.1);transform:scale(1.02)}

/* Card color themes */
/* .card-a .card-img-bg{background:linear-gradient(139deg, #a5a19f, #000000)} */

/* ── Hint text ── */
.hint{font-size:12px;color:#d1d5db;letter-spacing:1px;display:flex;align-items:center;gap:6px}

/* ── BRANDED FOOTER ── */
.am-credit{
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;
  padding:14px 24px;background:#fff;border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);border:1px solid #f0ece6;
  font-size:13px;color:#6b7280;max-width:920px;width:100%;
}
.am-credit a{color:#111;text-decoration:none;font-weight:600;transition:opacity .2s}
.am-credit a:hover{opacity:.6}
.am-credit a.fiverr{color:#059669}
.am-credit .dot{color:#e5e7eb}


/* ===== SECTION ===== */
.top-service{
  padding: 70px 0px;
}
.srv-section h2{
  font-size: 60px;
    font-weight: 600;
    line-height: 66px;
    color: var(--accent-foreground);
}
.srv-section {
    background: #000;
}

.srv-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.srv-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srv-left p {
    font-size: 18px;
    line-height: 28px;
    color: #a3a6ad;
}

/* ===== LIST ===== */
.srv-list-item {
    border-bottom: 1px solid #26282e;
    transition: 0.3s;
}

.srv-list-item:first-child {
    border-top: 1px solid #26282e;
}

.srv-list-item:last-child {
    border-bottom: none;
}

.srv-list-item:hover {
    background: #c45a2c26;
}

/* ===== CARD ===== */
.srv-card {
    position: relative;
    display: block;
    /* padding: 84px 0px 80px; */
     padding: 10px 0px 10px;
    color: #fff;
    transition: 0.5s ease;
}

.srv-list-item:hover .srv-card {
    padding: 108px 0px 88px;
}
.srv-list-item:hover .srv-card .srv-desc {
    transition: .5s;
    display: block;
}
/* ===== CONTENT ===== */
.srv-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 70%;
}

.srv-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    /* flex: 0 0 250px; */
}

.srv-desc {
    display: none;
    font-size: 16px;
    line-height: 26px;
    color: #a3a6ad;
}

.srv-count {
    /* position: absolute; */
    /* top: 40px; */
    color: var(--accent);
    font-weight: 600;
    font-size: 35px;
}

/* ===== TAGS ===== */
.srv-tags {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.srv-tags ul {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.srv-tags a {
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid #fff;
    color: #fff;
    display: block;
}

/* ===== THUMBNAIL ===== */
.srv-thumb {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    height: 225px;
    display: none;
    z-index: 15;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




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

/*Grid Wrapper*/
 
#home
{
  color:#aaaaaf;
  width:100%;
  height:100%;
  position:relative;
  padding:0px 100px;
  display:block;
  transition:transform 0.5s ease-in-out;
}
#home>section
{
  position:relative;
}
#home>.header>div
{
  position:relative;
  display:inline-block;
  margin-right:25px;
  vertical-align:middle;
  text-shadow:0px 5px 10px rgba(0,0,0,1);
}
#home>.pagetag
{
  position:absolute;
  top:10px;
  left:10px;
  padding:10px 15px;
  font-size:0.8em;
  color:rgba(96,78,177,1);
  background:rgba(0,0,0,0.1);
}

#home h2
{
  font-weight:300;
  letter-spacing:0.07em;
  margin-left:-20px;
}
#home h5
{
  margin-top:-20px;
  font-weight:400;
  letter-spacing:1.9em;
}
#home h2>span:first-child
{
  font-size:3em;
}
#home h2>span:nth-child(2)
{
  font-size:2em;
  margin-left:-0.2em;
  font-weight:400;
}
#service_wrapper
{
  width:100%;
  display:inline-block;
  box-sizing:border-box;
  padding:0px 20px;
  position:relative;
}
#service_wrapper.init>card
{
  transform:scale(0);
}
#service_wrapper>card
{
  display:block;
  width:25%;
  height:200px;
  float:left;
  transition:transform 0.3s cubic-bezier(0,0,0,1);
  padding:20px;
  box-sizing:border-box;
}
#service_wrapper>card>div,#content_wrapper>.clone
{
  color:#aaaaaf;
  cursor:pointer;
  width:100%;
  height:100%;
  position:relative;
  transition:box-shadow 0.3s;
  overflow:hidden;
  border:1px solid rgba(66,76,119,0.1);
  box-shadow:0px 20px 50px 0px rgba(0,0,0,0.2);
}
#service_wrapper>card>div.active
{
  opacity:0;
}
#service_wrapper>card>div:hover
{
  box-shadow:0px 30px 60px 0px rgba(0,0,0,0.25);
}
#service_wrapper>card>div:before,#content_wrapper>.clone:before
{
  width:100%;
  height:100%;
  content:"";
  position:absolute;
  top:0;
  left:0;
  background-size:100%;
  background-position:50% 50%;
  background-blend-mode:overlay;
  background-image:url("");
  background-color:rgba(43,26,119,0.25);
  transition:all 0.2s;
  -webkit-filter:blur(3px);
  -moz-filter:blur(3px);
  filter:blur(3px);
  -ms-filter:blur(3px);
}
#service_wrapper>card>div>span,#content_wrapper>.clone>span
{
  width:100%;
  height:50px;
  margin-top:-25px;
  top:50%;
  position:absolute;
  line-height:50px;
  display:block;
  text-align:center;
  font-size:1.5em;
  opacity:1;
}
/*End of Section*/


/*Ripple Styling*/
.ripple
{
  position:fixed;
  animation:ripple 1s 1 ease-out;
  background:rgba(0,0,0,0.5);
  margin:-250px;
  width:500px;
  height:500px;
  transform:scale(10);
  position:absolute;
  border-radius:50%;
  opacity:0;
}
  
/*One for the BIIIIG ONE!*/

.mega.ripple
{
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  opacity:1;
}
@keyframes ripple
{
  0%{
    opacity:1;
    transform:scale(0);
  }
}
/*End of Section*/

/* AI SERVICES */
:root{
  --o:#FF5500;
  --o2:#FF7A00;
  --o3:#FF3A00;
  --bg:#080808;
  --bg2:#0E0E0E;
  --bg3:#141414;
  --line:rgba(255,255,255,0.06);
  --txt:#FFFFFF;
  --txt2:rgba(255,255,255,0.45);
  --txt3:rgba(255,255,255,0.18);
}

html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--txt);font-family:'DM Sans',sans-serif;overflow-x:hidden;-webkit-font-smoothing:antialiased}

/* ─── CANVAS BACKGROUND ─── */
#bg-canvas{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:0;opacity:.35}

/* ─── SECTION ─── */
.ais{
  position:relative;
  z-index:1;
  padding:clamp(80px,12vw,160px) clamp(20px,5vw,80px);
  max-width:1440px;
  margin:0 auto;
}

/* ─── EYEBROW ─── */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;font-weight:500;letter-spacing:3px;text-transform:uppercase;
  color:var(--o);margin-bottom:28px;
}
.eyebrow-dot{
  width:6px;height:6px;border-radius:50%;background:var(--o);
  box-shadow:0 0 10px var(--o);
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.7)}}

/* ─── HERO HEADLINE ─── */
.hero-row{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:clamp(60px,10vw,120px);
}
.hero-left{flex:1;min-width:280px}
.h1{
  font-family:'Syne',sans-serif;
  font-size:clamp(40px,7vw,96px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-2px;
  color:var(--txt);
}
.h1 .outline{
  -webkit-text-stroke:1px rgba(255,255,255,0.25);
  color:transparent;
}
.h1 .accent{
  background:linear-gradient(90deg,var(--o),var(--o2));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-right{
  max-width:360px;
  flex:0 0 auto;
}
.hero-desc{
  font-size:clamp(14px,1.5vw,16px);
  font-weight:300;
  line-height:1.8;
  color:var(--txt2);
  margin-bottom:32px;
}
.hero-stat-row{display:flex;gap:32px;flex-wrap:wrap}
.stat-item{}
.stat-num{
  font-family:'Syne',sans-serif;
  font-size:clamp(26px,4vw,38px);
  font-weight:800;
  color:var(--txt);
  line-height:1;
}
.stat-num span{color:var(--o)}
.stat-label{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--background);margin-top:4px}

/* ─── BENTO GRID ─── */
.bento{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:auto;
  gap:clamp(10px,1.5vw,16px);
}

/* card base */
.bc{
  position:relative;overflow:hidden;
  border-radius:20px;
  background:var(--bg2);
  border:1px solid var(--line);
  padding:clamp(24px,3vw,40px);
  cursor:pointer;
  transition:border-color .4s ease,transform .4s ease;
  will-change:transform;
}
.bc::before{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:radial-gradient(600px circle at var(--mx,50%) var(--my,50%),rgba(255,85,0,.06),transparent 60%);
  opacity:0;transition:opacity .4s ease;pointer-events:none;z-index:0;
}
.bc:hover{border-color:rgba(255,85,0,.35);transform:translateY(-3px)}
.bc:hover::before{opacity:1}

/* orange shimmer top edge */
.bc-shine{
  position:absolute;top:0;left:-100%;width:100%;height:1px;
  background:linear-gradient(90deg,transparent,var(--o),transparent);
  transition:left .6s ease;
}
.bc:hover .bc-shine{left:100%}

/* card sizes */
.bc-1{grid-column:span 5}
.bc-2{grid-column:span 7}
.bc-3{grid-column:span 4}
.bc-4{grid-column:span 4}
.bc-5{grid-column:span 4}

/* large card special */
.bc-1,.bc-2{min-height:340px}
.bc-3,.bc-4,.bc-5{min-height:260px}

/* ─── CARD INNER ─── */
.bc-content{position:relative;z-index:1;height:100%;display:flex;flex-direction:column}

/* icon blob */
.ic-wrap{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,85,0,.1);border:1px solid rgba(255,85,0,.2);
  margin-bottom:24px;flex-shrink:0;
  transition:background .3s,border-color .3s;
}
.bc:hover .ic-wrap{background:rgba(255,85,0,.18);border-color:rgba(255,85,0,.5)}
.ic-wrap svg{width:24px;height:24px;stroke:var(--o);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* badge */
.badge{
  display:inline-block;
  font-size:10px;font-weight:500;letter-spacing:2px;text-transform:uppercase;
  color:var(--o);background:rgba(255,85,0,.1);border:1px solid rgba(255,85,0,.2);
  padding:4px 12px;border-radius:40px;margin-bottom:14px;width:fit-content;
}

/* card title */
.ct{
  font-family:'Syne',sans-serif;
  font-size:clamp(20px,2.5vw,28px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.5px;
  color:var(--txt);
  margin-bottom:12px;
}

/* card body */
.cb{
  font-size:clamp(13px,1.3vw,15px);
  font-weight:300;line-height:1.75;
  color:var(--txt2);flex:1;
}

/* tags */
.tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:24px}
.tg{
  font-size:10px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--txt3);background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  padding:5px 12px;border-radius:40px;
  transition:color .3s,border-color .3s,background .3s;
}
.bc:hover .tg{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.12)}

/* arrow */
.card-arrow{
  display:inline-flex;align-items:center;gap:8px;margin-top:28px;
  font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;
  color:var(--o);transition:gap .3s;
}
.card-arrow svg{width:16px;height:16px;stroke:var(--o);fill:none;stroke-width:2;transition:transform .3s}
.bc:hover .card-arrow{gap:14px}
.bc:hover .card-arrow svg{transform:translateX(4px)}

/* ─── LARGE CARD 1 (AI Calling) BIG VISUAL ─── */
.bc-1 .visual-ring{
  position:absolute;
  right:-60px;bottom:-60px;
  width:280px;height:280px;
  border-radius:50%;
  border:1px solid rgba(255,85,0,.12);
  display:flex;align-items:center;justify-content:center;
  transition:transform .6s ease;
}
.bc-1:hover .visual-ring{transform:scale(1.08) rotate(15deg)}
.visual-ring::before{
  content:'';position:absolute;
  inset:20px;border-radius:50%;
  border:1px solid rgba(255,85,0,.18);
}
.visual-ring::after{
  content:'';position:absolute;
  inset:45px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,85,0,.12),transparent 70%);
}
.vr-icon{
  width:56px;height:56px;border-radius:50%;
     background: rgba(255, 85, 0, .15);
    border: 1px solid rgb(0 0 0 / 40%);
  display:flex;align-items:center;justify-content:center;
  z-index:1;
}
.vr-icon svg{width:24px;height:24px;stroke:var(--bg);fill:none;stroke-width:2}

/* ─── LARGE CARD 2 (AI SEO) GRAPH VISUAL ─── */
.bc-2 .graph-visual{
  position:absolute;
  right:0;bottom:0;
  width:55%;height:65%;
  display:flex;align-items:flex-end;
  gap:6px;padding:0 24px 0 0;
}
.bar-wrap{flex:1;display:flex;flex-direction:column;justify-content:flex-end;height:100%;padding-bottom:20px}
.bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #150e0a, rgb(131 55 18 / 30%));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .8s cubic-bezier(.34, 1.56, .64, 1);
    opacity: .7;
}
.bc-2:hover .bar,.bc-2.in-view .bar{transform:scaleY(1)}
.bc-2:hover .bar{opacity:1}

/* ─── SMALL CARD DECORATIVE ─── */
.bc-3 .deco-grid,.bc-4 .deco-grid,.bc-5 .deco-grid{
  position:absolute;right:-10px;top:-10px;
  width:120px;height:120px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:5px;
  opacity:.25;
  transform:rotate(12deg);
  transition:opacity .4s,transform .4s;
}
.bc-3:hover .deco-grid,.bc-4:hover .deco-grid,.bc-5:hover .deco-grid{opacity:.45;transform:rotate(6deg) scale(1.05)}
.deco-dot{
  width:100%;aspect-ratio:1;border-radius:50%;
  background:var(--o);
}

/* ─── BOTTOM CTA ROW ─── */
.cta-row{
  display:flex;flex-wrap:wrap;align-items:center;
  justify-content:space-between;gap:24px;
  margin-top:clamp(50px,8vw,100px);
  padding-top:clamp(30px,4vw,60px);
  border-top:1px solid var(--line);
}
.cta-left h3{
  font-family:'Syne',sans-serif;
  font-size:clamp(22px,3vw,36px);
  font-weight:800;letter-spacing:-0.5px;margin-bottom:8px;
}
.cta-left p{font-size:14px;color:var(--txt2);font-weight:300}
.cta-btns{display:flex;gap:12px;flex-wrap:wrap}

.btn-main{
  font-family:'Syne',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:.5px;
  padding:14px 36px;border-radius:50px;
  background:var(--o);color:#000;
  border:none;cursor:pointer;
  position:relative;overflow:hidden;
  transition:transform .2s,box-shadow .3s;
}
.btn-main::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.25),transparent);
  border-radius:inherit;pointer-events:none;
}
.btn-main:hover{transform:scale(1.04);box-shadow:0 0 40px rgba(255,85,0,.4)}

.btn-out{
  font-family:'Syne',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:.5px;
  padding:13px 36px;border-radius:50px;
  background:transparent;color:var(--txt);
  border:1px solid var(--line);cursor:pointer;
  transition:border-color .3s,color .3s;
}
.btn-out:hover{border-color:rgba(255,85,0,.5);color:var(--o)}

/* ─── SCROLL FADE IN ─── */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.fade-up.vis{opacity:1;transform:translateY(0)}






@media ((max-width: 1249px)) {
  .top-service {
    padding: 40px 0px;
}
.srv-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 49px;
    color: var(--accent-foreground);
}
.srv-content {
    display: block;
    align-items: center;
    max-width: 100%;
}

.srv-tags {
    position: absolute;
    right: 10px;
    bottom: 0px;
    top: unset;
    transform: translateY(-50%);
}
section#faq .container {
display: block;
}

.faq {
    padding: 1rem 0;
}

#home {
    padding: 0px 20px;
}
#service_wrapper{
  padding: 0px;
}
#service_wrapper>card {
    width: 50%;
    height: 150px;
    padding: 5px;
}
#service_wrapper>card>div>span, #content_wrapper>.clone>span {
          font-size: 1.1rem;
    height: auto;
     margin-top: 0px; 
     top: auto; 
     line-height: inherit; 
}
#service_wrapper>card>div, #content_wrapper>.clone {
    display: flex;
    align-items: center;
}
.srv-title {
    font-size: 1.5rem;
}
.srv-count {
    font-size: 1.5rem;
}
.demo-hero{
  flex-wrap: wrap;
}
.demo-hero h1 {
    font-size: 2.5rem;
}
}

