/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/* Base styles */
:root {
--background: #ffffff;
  --foreground: #000000;

  --card: #ffffff;
  --card-foreground: #000000;

  --popover: #ffffff;
  --popover-foreground: #000000;

  --primary: #146EF4;
  --primary-foreground: #ffffff;

  --secondary: #080808;
  --secondary-foreground: #ffffff;

  --muted: hsl(0, 0%, 90%);
  --muted-foreground: hsl(0, 0%, 45%);

  --accent: hsl(0, 0%, 96%);
  --accent-foreground: hsl(0, 0%, 9%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: #ffffff;

  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 90%);
  --ring: #146EF4;

  --radius: 0.5rem;
}

.by-kickstartweb {
color: white;
  font-size: 10px;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

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

a {
text-decoration: none;
  color: inherit;
-webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
transition: color 0.3s ease;
}

ul, ol {
list-style: none;
}

h1, h2, h3, h4, h5, h6 {
font-weight: bold;
  line-height: 1.2;
}


.logo svg,
.footer-logo svg {
width: 120px;
  height: auto;
}

.blue-highlight {
color: var(--primary);
}
/* Utility Classes */
.section-wrapper {
max-width: 80rem;
  margin: 0 auto;
  padding: 0 16px;
}

.btn-primary {
background-color: var(--primary);
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  display: inline-block;
-webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
-webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
transition: 0.3s ease;
}

.btn-primary:hover {
background-color: rgba(20, 110, 244, 0.9);
-webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
transition: 0.3s ease;
-webkit-transform: scale(1.05) !important;
  -ms-transform: scale(1.05) !important;
transform: scale(1.05) !important;
}

.section-title {
font-size: 1.875rem;
  margin-bottom: 2rem;
}

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

.dark-section {
background-color: #080808;
  color: white;
}

.light-section {
background-color: white;
  color: black;
}

.mt-12 {
margin-top: 3rem;
}

/* Animation Classes */
.reveal-item {
opacity: 0;
  visibility: hidden;
-webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.reveal-item.active {
opacity: 1;
  visibility: visible;
-webkit-transform: translateY(0);
  -ms-transform: translateY(0);
transform: translateY(0);
}

/* Countdown Banner */
.countdown-banner {
background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.countdown-text {
font-size: 0.875rem;
  font-weight: 500;
  padding: 0 8px;
}

/* Header */
.site-header {
position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 50;
-webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
transition: all 0.3s ease;
  padding: 1.25rem 0;
  background-color: transparent;
}

.site-header.scrolled {
background-color: #080808;
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.header-container {
max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
  -ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
  -ms-flex-align: center;
align-items: center;
}

.main-nav {
display: none;
}

.nav-link {
font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-left: 2rem;
}

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

.header-cta {
display: none;
}

.mobile-menu-toggle {
background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #080808;
  z-index: 100;
  padding: 2rem;
-webkit-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
transition: right 0.3s ease;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu-close {
background: none;
  border: none;
  color: white;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.mobile-nav {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
flex-direction: column;
  margin-top: 3rem;
}

.mobile-nav-link {
font-size: 1.25rem;
  color: white;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.cta {
margin-top: 1rem;
  background-color: var(--primary);
  border-radius: 0.375rem;
  text-align: center;
  padding: 1rem;
  border-bottom: none;
}

/* Hero Section */
.hero-section {
  padding: 196px 16px 96px 16px;
  background-color: #000000;
}

.hero-content {
max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
font-size: 2.25rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: white;
}

.hero-description {
font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-tagline {
font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: white;
}

.hero-cta {
padding: 1rem 2rem;
}

/* Feature Section */
.feature-section {
padding: 48px 16px;
  background-color: white;
}

.feature-grid {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.feature-card {
padding: 1.5rem;
-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
transition: transform 0.3s ease, box-shadow 0.3s ease;
transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.feature-title {
font-size: 26px;
  margin-bottom: 8px;
  color: #000;
}

.feature-description {
color: #666;
}

/* Stats Section */
.stats-section {
padding: 48px 16px;
  background-color: #000000;
  color: white;
}

.stats-container {
max-width: 48rem;
  margin: 0 auto;
}

.stats-list {
margin-bottom: 2rem;
}

.stats-item {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
-webkit-box-align: start;
  -ms-flex-align: start;
align-items: flex-start;
}

.stats-item-icon {
color: var(--primary);
-ms-flex-negative: 0;
flex-shrink: 0;
  margin-top: 0.25rem;
}

.stats-conclusion {
padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}

.stats-conclusion P {
font-size: 18px;
}

/* Testimonial Section */
.testimonial-section {
padding: 80px 16px;
  background-color: #0D0D0D;
  color: white;
}

.testimonial-container {
max-width: inherit;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #2c2c2c;
-webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
transition: transform 0.3s ease, box-shadow 0.3s ease;
transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
height: 100%;
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
  -ms-flex-pack: justify;
justify-content: space-between;
}

.testimonial-content {
font-size: 1rem;
  margin-bottom: 20px;
  color: #ced4da;
-webkit-box-flex: 1;
  -ms-flex-positive: 1;
flex-grow: 1;
}

.testimonial-author {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
  -ms-flex-align: center;
align-items: center;
}

.testimonial-avatar {
width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
-o-object-fit: cover;
object-fit: cover;
  border: 2px solid #146EF4;
}

.testimonial-author-name {
font-weight: 600;
  color: #f8f9fa;
}

.testimonial-author-role {
font-size: 0.9rem;
  color: #adb5bd;
}

/* Splide Slider Styles */
.project-image {
  width: 100%;
  height: auto;
    /* Maintain aspect ratio */
    /* Removed max-height */
      /* Removed object-fit: cover - let image scale naturally */
      border-radius: 4px;
      /* Slight rounding */
    /* Removed margin-bottom */
      display: block;
      /* Ensure it behaves like a block element */
}

.testimonial-splide .splide__slide,
.project-splide .splide__slide {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
  height: auto;
-webkit-box-align: stretch;
  -ms-flex-align: stretch;
align-items: stretch;
  padding: 5px;
}

.testimonial-splide .splide__pagination,
.project-splide .splide__pagination {
bottom: -2.5em;
}

.testimonial-splide .splide__pagination__page,
.project-splide .splide__pagination__page {
background: #495057;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  opacity: 0.7;
}

.testimonial-splide .splide__pagination__page.is-active,
.project-splide .splide__pagination__page.is-active {
background: #146EF4;
-webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
transform: scale(1.2);
  opacity: 1;
}

.testimonial-splide .splide__arrow,
.project-splide .splide__arrow {
background-color: #0D0D0D !important;
  border: 1px solid #146EF4 !important;
  opacity: 1 !important;
  width: 3em;
  height: 3em;
}

.testimonial-splide .splide__arrow svg,
.project-splide .splide__arrow svg {
fill: #146EF4 !important;
  width: 1.2em;
  height: 1.2em;
}

.testimonial-splide .splide__arrow--prev,
.project-splide .splide__arrow--prev {
left: -45px;
}

.testimonial-splide .splide__arrow--next,
.project-splide .splide__arrow--next {
right: -45px;
}

@media (max-width: 768px) {
#testimonials>div>div.text-center.mt-12.reveal-item.active,
  #projects>div>div.text-center.mt-12.reveal-item.active

  /* Add rule for projects section too */
    {
    margin-top: 56px;
  }

.testimonial-splide .splide__arrow,
.project-splide .splide__arrow {
  display: none;
}
.project-splide .splide__slide {
  height: 400px;
}
}

/* Pricing Section */
.pricing-section {
  padding: 48px 16px;
  background-color: white;
}

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

.pricing-note {
font-size: 0.875rem;
  color: #666;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 16px;
}

.pricing-card {
background-color: white;
  color: black;
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid #146EF4;
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
flex-direction: column;
-webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
transition: border-color 0.3s ease;
}

.pricing-card:hover {
border-color: var(--primary);
}

.pricing-header {
margin-bottom: 2rem;
}

.pricing-title {
font-size: 26px;
  margin-bottom: 0.5rem;
}

.pricing-description {
color: #666;
  margin-bottom: 1.5rem;
}

.pricing-features {
-webkit-box-flex: 1;
  -ms-flex-positive: 1;
flex-grow: 1;
  margin-bottom: 2rem;
  font-weight: 600;
}

.google-rating-link {
  margin-left: auto;
  margin-right: auto;
  display: block !important;
}
.pricing-feature {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
  -ms-flex-align: start;
align-items: flex-start;
  margin-bottom: 1rem;
}

.pricing-feature-icon {
color: var(--primary);
  margin-right: 0.75rem;
-ms-flex-negative: 0;
flex-shrink: 0;
}

.pricing-price {
font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.pricing-price-note {
font-size: 1rem;
  font-weight: normal;
  color: #666;
}

.pricing-cta {
width: 100%;
  text-align: center;
}

/* Style for original price (strikethrough) */
.price-original {
text-decoration: line-through;
  color: #888;
    /* Optional: Make it slightly greyed out */
    margin-left: 0.5em;
    /* Optional: Add some space */
}

/* Featured pricing card (e-commerce) */
.pricing-card--featured {
  position: relative;
  border: 2px solid var(--primary);
  background-color: #f8faff;
  overflow: visible;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 2rem;
  background-color: var(--primary);
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
padding: 48px 16px;
  background-color: #000000;
  color: white;
}

.faq-grid {
display: -ms-grid;
display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.25rem;
}

.faq-question {
font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer;
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
  -ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
  -ms-flex-align: center;
align-items: center;
  color: white;
}

.faq-question:after {
content: '+';
  font-size: 1.5rem;
}

.faq-item.faq-active .faq-question:after {
content: '-';
}

.faq-answer {
max-height: 0;
  overflow: hidden;
-webkit-transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease-in-out;
transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease-in-out;
  color: #ccc;
  opacity: 0;
  padding: 0 1em;
}

.faq-item.faq-active .faq-answer {
max-height: 500px;
  opacity: 1;
  padding: 1.25em 1em;
}

.faq-answer p {
margin: 0;
}

/* Contact Section */
.contact-section {
padding: 48px 16px;
  background-color: white;
}

.contact-form {
max-width: 32rem;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-label {
display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-input,
.form-textarea {
width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  background-color: white;
  color: #333;
  border-radius: 0.375rem;
}

.form-textarea {
min-height: 8rem;
  resize: vertical;
}

.form-submit {
width: 100%;
  cursor: pointer;
  border: none;
  padding: 1rem;
}

/* Footer */
.site-footer {
padding: 4rem 0 2rem;
  background-color: #080808;
  color: white;
}

.site-footer .section-wrapper {
padding-bottom: 0;
}
.footer-container {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
margin-bottom: 1rem;
}

.footer-copyright {
font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.footer-nav {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
flex-direction: column;
  gap: 0.75rem;
}

.footer-heading {
font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-link {
color: rgba(255, 255, 255, 0.7);
}

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

.footer-link.no-hover {
color: rgba(255, 255, 255, 0.7);
}

.footer-link.no-hover:hover {
color: rgba(255, 255, 255, 0.7);
}

.social-links {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
  -ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
  -ms-flex-pack: center;
justify-content: center;
-webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
transition: background-color 0.3s ease;
}

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

/* Media Queries */
@media (min-width: 640px) {
.hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
.main-nav {
display: -webkit-box;
  display: -ms-flexbox;
display: flex;
}

.header-cta {
  display: block;
}

.mobile-menu-toggle {
  display: none;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-container {
  max-width: 95%;
}
.footer-container {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1060px) {
.pricing-grid {
  display: flex;
  grid-template-columns: unset;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.pricing-card {
  min-width: 306px;
  flex: 1 0 306px;
  scroll-snap-align: start;
}
}

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

  .feature-grid {
grid-template-columns: repeat(2, 1fr);
}


.footer-container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
}
/* Fixed Footer CTA for Mobile */
.footer-mobile-cta {
  display: none;
  /* Hidden by default */
}

@media (max-width: 450px) {
  .footer-mobile-cta {
    border-radius: 5px;
    display: block;
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    z-index: 100;
    padding: 1rem;
    text-align: center;
    margin: 0;
  }

}
/* New Project Card Styles */
#projects {
  background-color: #080808;
}
.project-card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.testimonial-content {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ced4da;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}